<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>chemical &amp;mdash; Paul Sutton</title>
    <link>https://personaljournal.ca/paulsutton/tag:chemical</link>
    <description>Personal Blog</description>
    <pubDate>Tue, 05 May 2026 18:20:48 +0000</pubDate>
    <item>
      <title>Solute calculator</title>
      <link>https://personaljournal.ca/paulsutton/solute-calculator-c98y</link>
      <description>&lt;![CDATA[Solute calculator&#xA;&#xA;This is a basic Python program to calculate how much solute is needed to make a particular concentration of a chemical for a given solution.&#xA;&#xA;Enter mass of chemical, volume and concentration required.  Program will calculate required solute needed.&#xA;&#xA;Chemical solute calculator&#xA;print(&#34;Chemical solute calculator&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;This program will ask you for some basic data and will then calculate how much solute is needed for a given volume and concentration&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;1 mol solution is formula weight in 1 liter of water&#34;)&#xA;print(&#34;&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Mass is the molecular mass of the chemical solution you&#39;re making e.,g Copper Sulfate is 249g&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Volume the total solution volume in litres,  100ml is written as 0.100&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Concentration required in Mols&#34;)&#xA;print(&#34; &#34;)&#xA;mass = input (&#34;Mass in g: &#34;) &#xA;print(&#34;Solute requred&#34;)&#xA;volume = input(&#34;Volume in l: &#34;)&#xA;print((volume) + &#34; l&#34;)&#xA;conc = input (&#34;Required Concentration in M: &#34;) &#xA;&#xA;solute = float(mass)  float(volume)  float(conc)&#xA;print(&#34;Solute required: &#34;)&#xA;print(str(solute) + &#34; g&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Note:  This program is a guide, and you should double check calculations&#34;)&#xA;There is a better online solution to this here&#xA;&#xA;Program 2&#xA;&#xA;This is a related ruby program to calculate different molar masses&#xA;&#xA;molar weight calculator&#xA;puts &#34;molecular weight calculator&#34;&#xA;puts&#xA;print &#34;Enter Weight: &#34;&#xA;weight = gets&#xA;print (&#34;Weight :&#34;); &#xA;print (weight)&#xA;puts &#xA;print (&#34;0.5 Mol: &#34;)&#xA;print weight.tof / 2&#xA;puts&#xA;print (&#34;2 Mol: &#34;)&#xA;print weight.toi  2&#xA;puts &#xA;print (&#34;4 Mol: &#34;)&#xA;print weight.toi  4&#xA;puts&#xA;puts &#xA;print (&#34;End&#34;)&#xA;&#xA;Enter a molecular weight, and it will calculate 1/2, 2 and 4 moles accordingly.   It is not perfect,  just works.&#xA;&#xA;Tags&#xA;&#xA;#Science,#Chemistry,#Calculator,#Mole,#Solution,#Solute&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Solute calculator</p>

<p>This is a basic Python program to calculate how much solute is needed to make a particular concentration of a chemical for a given solution.</p>

<p>Enter mass of chemical, volume and concentration required.  Program will calculate required solute needed.</p>

<pre><code>#Chemical solute calculator
print(&#34;Chemical solute calculator&#34;)
print(&#34; &#34;)
print(&#34;This program will ask you for some basic data and will then calculate how much solute is needed for a given volume and concentration&#34;)
print(&#34; &#34;)
print(&#34;1 mol solution is formula weight in 1 liter of water&#34;)
print(&#34;&#34;)
print(&#34; &#34;)
print(&#34;Mass is the molecular mass of the chemical solution you&#39;re making e.,g Copper Sulfate is 249g&#34;)
print(&#34; &#34;)
print(&#34;Volume the total solution volume in litres,  100ml is written as 0.100&#34;)
print(&#34; &#34;)
print(&#34;Concentration required in Mols&#34;)
print(&#34; &#34;)
mass = input (&#34;Mass in g: &#34;) 
#print(&#34;Solute requred&#34;)
volume = input(&#34;Volume in l: &#34;)
print((volume) + &#34; l&#34;)
conc = input (&#34;Required Concentration in M: &#34;) 

solute = float(mass) * float(volume) * float(conc)
print(&#34;Solute required: &#34;)
print(str(solute) + &#34; g&#34;)
print(&#34; &#34;)
print(&#34;Note:  This program is a guide, and you should double check calculations&#34;)
</code></pre>

<p>There is a better online solution to this <a href="https://www.physiologyweb.com/calculators/molar_solution_concentration_calculator.html" rel="nofollow">here</a></p>

<p>Program 2</p>

<p>This is a related ruby program to calculate different molar masses</p>

<pre><code># molar weight calculator
puts &#34;molecular weight calculator&#34;
puts
print &#34;Enter Weight: &#34;
weight = gets
print (&#34;Weight :&#34;); 
print (weight)
puts 
print (&#34;0.5 Mol: &#34;)
print weight.to_f / 2
puts
print (&#34;2 Mol: &#34;)
print weight.to_i * 2
puts 
print (&#34;4 Mol: &#34;)
print weight.to_i * 4
puts
puts 
print (&#34;End&#34;)

</code></pre>

<p>Enter a molecular weight, and it will calculate ½, 2 and 4 moles accordingly.   It is not perfect,  just works.</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Science" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Science</span></a>,<a href="/paulsutton/tag:Chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemistry</span></a>,<a href="/paulsutton/tag:Calculator" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Calculator</span></a>,<a href="/paulsutton/tag:Mole" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Mole</span></a>,<a href="/paulsutton/tag:Solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solution</span></a>,<a href="/paulsutton/tag:Solute" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solute</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/solute-calculator-c98y</guid>
      <pubDate>Sat, 07 Dec 2024 09:05:54 +0000</pubDate>
    </item>
    <item>
      <title>Code Club Electronics 14</title>
      <link>https://personaljournal.ca/paulsutton/code-club-electronics-14</link>
      <description>&lt;![CDATA[Code Club Electronics 14&#xA;&#xA;I want to build something for the science kit to make it easier to stir liquids.   I have found a project for a DC motor controlled by a potentiometer. that also uses an Arduino microcontroller.   This should be easy enough to build and attach a stirrer to.   This can be soldered up, battery attached, power switch may also be needed.&#xA;&#xA;Should then be easier to stir liquids for science experiments. &#xA;&#xA;Tags&#xA;&#xA;#Arduino,#Electronics,#Science,#Chemical,#Stirrer,#DC,#Motor,&#xA;Control&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Code Club Electronics 14</p>

<p>I want to build something for the science kit to make it easier to stir liquids.   I have found a project for a <a href="https://circuitdigest.com/microcontroller-projects/dc-motor-speed-control-using-arduino-and-potentiometer" rel="nofollow">DC motor controlled by a potentiometer.</a> that also uses an Arduino microcontroller.   This should be easy enough to build and attach a stirrer to.   This can be soldered up, battery attached, power switch may also be needed.</p>

<p>Should then be easier to stir liquids for science experiments.</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Arduino" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Arduino</span></a>,<a href="/paulsutton/tag:Electronics" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Electronics</span></a>,<a href="/paulsutton/tag:Science" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Science</span></a>,<a href="/paulsutton/tag:Chemical" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemical</span></a>,<a href="/paulsutton/tag:Stirrer" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Stirrer</span></a>,<a href="/paulsutton/tag:DC" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">DC</span></a>,<a href="/paulsutton/tag:Motor" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Motor</span></a>,
<a href="/paulsutton/tag:Control" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Control</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/code-club-electronics-14</guid>
      <pubDate>Fri, 29 Dec 2023 19:15:37 +0000</pubDate>
    </item>
    <item>
      <title>Solute calculator</title>
      <link>https://personaljournal.ca/paulsutton/solute-calculator</link>
      <description>&lt;![CDATA[Solute calculator&#xA;&#xA;There is website tool for calculating the amount of solute needed for a given volume and concentration.   This can be found here&#xA;&#xA;I just put this together in python3&#xA;&#xA;V2.0&#xA;&#xA;Chemical solute calculator&#xA;print(&#34;Chemical solute calculator&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;This program will ask you for some basic data and will then calculate how much solute is needed for a given volume and concentration&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;1 mol solution is formula weight in 1 liter of water&#34;)&#xA;print(&#34;&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Mass is the molecular mass of the chemical solution you&#39;re making e.,g Copper Sulfate is 249g&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Volume the total solution volume in litres,  100ml is written as 0.100&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Concentration required in Mols&#34;)&#xA;print(&#34; &#34;)&#xA;mass = input (&#34;Mass in g: &#34;) &#xA;print(&#34;Solute requred&#34;)&#xA;volume = input(&#34;Volume in l: &#34;)&#xA;print((volume) + &#34; l&#34;)&#xA;conc = input (&#34;Required Concentration in M: &#34;) &#xA;&#xA;solute = float(mass)  float(volume)  float(conc)&#xA;print(&#34;Solute required: &#34;)&#xA;print(str(solute) + &#34; g&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Note:  This program is a guide, and you should double check calculations&#34;)&#xA;&#xA;Chemical solute calculator&#xA;print(&#34;Chemical solute calculator&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;This program will ask you for some basic data and then calculate how much solute is needed for a given volume and concentration&#34;)&#xA;print(&#34; &#34;)&#xA;mass = input (&#34;Mass in g: &#34;) &#xA;print(&#34;Solute requred&#34;)&#xA;volume = input(&#34;Volume in l: &#34;)&#xA;print((volume) + &#34; l&#34;)&#xA;conc = input (&#34;Required Concentration in M: &#34;) &#xA;&#xA;solute = float(mass)  float(volume)  float(conc)&#xA;print(solute)&#xA;&#xA;Note: This is just meant to work and perform a single function.  I have not added error checking, so values are numerical. &#xA;&#xA;Tags&#xA;&#xA;#Calculator,#Solute,#Chemistry,#Solution,#Volume,#Mols&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Solute calculator</p>

<p>There is website tool for calculating the amount of solute needed for a given volume and concentration.   This can be <a href="https://www.physiologyweb.com/calculators/molar_solution_concentration_calculator.html" rel="nofollow">found here</a></p>

<p>I just put this together in python3</p>

<p>V2.0</p>

<pre><code>#Chemical solute calculator
print(&#34;Chemical solute calculator&#34;)
print(&#34; &#34;)
print(&#34;This program will ask you for some basic data and will then calculate how much solute is needed for a given volume and concentration&#34;)
print(&#34; &#34;)
print(&#34;1 mol solution is formula weight in 1 liter of water&#34;)
print(&#34;&#34;)
print(&#34; &#34;)
print(&#34;Mass is the molecular mass of the chemical solution you&#39;re making e.,g Copper Sulfate is 249g&#34;)
print(&#34; &#34;)
print(&#34;Volume the total solution volume in litres,  100ml is written as 0.100&#34;)
print(&#34; &#34;)
print(&#34;Concentration required in Mols&#34;)
print(&#34; &#34;)
mass = input (&#34;Mass in g: &#34;) 
#print(&#34;Solute requred&#34;)
volume = input(&#34;Volume in l: &#34;)
print((volume) + &#34; l&#34;)
conc = input (&#34;Required Concentration in M: &#34;) 

solute = float(mass) * float(volume) * float(conc)
print(&#34;Solute required: &#34;)
print(str(solute) + &#34; g&#34;)
print(&#34; &#34;)
print(&#34;Note:  This program is a guide, and you should double check calculations&#34;)
</code></pre>

<pre><code>#Chemical solute calculator
print(&#34;Chemical solute calculator&#34;)
print(&#34; &#34;)
print(&#34;This program will ask you for some basic data and then calculate how much solute is needed for a given volume and concentration&#34;)
print(&#34; &#34;)
mass = input (&#34;Mass in g: &#34;) 
print(&#34;Solute requred&#34;)
volume = input(&#34;Volume in l: &#34;)
print((volume) + &#34; l&#34;)
conc = input (&#34;Required Concentration in M: &#34;) 


solute = float(mass) * float(volume) * float(conc)
print(solute)

</code></pre>

<p><strong>Note</strong>: This is just meant to work and perform a single function.  I have not added error checking, so values are numerical.</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Calculator" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Calculator</span></a>,<a href="/paulsutton/tag:Solute" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solute</span></a>,<a href="/paulsutton/tag:Chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemistry</span></a>,<a href="/paulsutton/tag:Solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solution</span></a>,<a href="/paulsutton/tag:Volume" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Volume</span></a>,<a href="/paulsutton/tag:Mols" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Mols</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/solute-calculator</guid>
      <pubDate>Sun, 17 Sep 2023 19:57:43 +0000</pubDate>
    </item>
    <item>
      <title>Periodic table of data</title>
      <link>https://personaljournal.ca/paulsutton/periodic-table-of-data</link>
      <description>&lt;![CDATA[Periodic table of data&#xA;&#xA;I found a link to this on Twitter,  part of last weeks National Periodic table day.  This is a really useful set of periodic tables, each one covers a different topic, e.g Origins, name origins, elements in the Sea, Phones, Toxicity etc.&#xA;&#xA;Element Data&#xA;&#xA;So an example is:- Periodic table of Isotopes, which gives information on how many isotopes there are for each element.&#xA;&#xA;Isotope&#xA;&#xA;REFERENCES&#xA;&#xA;Compound Chemistry&#xA;&#xA;TAGS&#xA;&#xA;#YearOfTheFediverse,#Chemistry,#PeriodicTable,#Elements,#isotopes,#CompoundChem,#Chemical,#Data&#xA;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xA;&#xA;img src=&#34;https://socialhub.activitypub.rocks/uploads/default/original/1X/6aac842b7ff5c58385a02f3a131c259281be88c8.png&#34; target=&#34;_blank&#34; &#xA;&#xA;a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-sa/4.0/&#34;img alt=&#34;Creative Commons Licence&#34; style=&#34;border-width:0&#34; src=&#34;https://i.creativecommons.org/l/by-sa/4.0/88x31.png&#34; //abr /This work is licensed under a a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-sa/4.0/&#34;Creative Commons Attribution-ShareAlike 4.0 International License/a&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Periodic table of data</p>

<p>I found a link to this on Twitter,  part of last weeks National Periodic table day.  This is a really useful set of periodic tables, each one covers a different topic, e.g Origins, name origins, elements in the Sea, Phones, Toxicity etc.</p>
<ul><li><a href="https://www.compoundchem.com/2019advent/" rel="nofollow">Element Data</a></li></ul>

<p>So an example is:– Periodic table of Isotopes, which gives information on how many isotopes there are for each element.</p>

<p><img src="https://i0.wp.com/www.compoundchem.com/wp-content/uploads/2019/12/20-%E2%80%93-The-periodic-table-of-isotopes-v2.png?resize=1024%2C724&ssl=1" alt="Isotope"></p>

<p><strong>REFERENCES</strong></p>
<ul><li><a href="https://www.compoundchem.com" rel="nofollow">Compound Chemistry</a></li></ul>

<p><strong>TAGS</strong></p>

<p><a href="/paulsutton/tag:YearOfTheFediverse" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">YearOfTheFediverse</span></a>,<a href="/paulsutton/tag:Chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemistry</span></a>,<a href="/paulsutton/tag:PeriodicTable" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">PeriodicTable</span></a>,<a href="/paulsutton/tag:Elements" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Elements</span></a>,<a href="/paulsutton/tag:isotopes" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">isotopes</span></a>,<a href="/paulsutton/tag:CompoundChem" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CompoundChem</span></a>,<a href="/paulsutton/tag:Chemical" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemical</span></a>,<a href="/paulsutton/tag:Data" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Data</span></a></p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>

<p><a href="https://torresjrjr.com/archive/2020-07-19-guide-to-the-fediverse" rel="nofollow"><img src="https://socialhub.activitypub.rocks/uploads/default/original/1X/6aac842b7ff5c58385a02f3a131c259281be88c8.png"></a></p>

<p><a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="nofollow"><img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"/></a><br/>This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="nofollow">Creative Commons Attribution-ShareAlike 4.0 International License</a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/periodic-table-of-data</guid>
      <pubDate>Fri, 19 Feb 2021 07:30:00 +0000</pubDate>
    </item>
    <item>
      <title>Molecular modelling with clay part 3</title>
      <link>https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-3</link>
      <description>&lt;![CDATA[Molecular modelling with clay part 3&#xA;&#xA;Further to the post earlier I am having mixed results trying to make double bonds from bendy straws. This is really proving to be not the most ideal solution.  &#xA;&#xA;I am experimenting with using straight straws side by side to represent a double bond.&#xA;&#xA;This sort of works, but still isn&#39;t ideal,  perhaps I&#39;ll just stick to single bond molecules.  &#xA;&#xA;Doing modelling with clay is certainly not an ideal solution but, as stated it may simply help with some basic modelling if you can&#39;t get hold of the actual modelling kits. &#xA;&#xA;Just don&#39;t try and be adventurous. &#xA;&#xA;This is science, so it needs some more experimentation to find an ideal solution.&#xA;&#xA;if anyone has those craft match sticks such as these:-&#xA;&#xA;match sticks&#xA;&#xA;as sold by Factory Direct Craft.com&#xA;&#xA;This may prove to be a better solution than straws.  You can get shorter lengths which will probably be better.  &#xA;&#xA;Don&#39;t go and buy any, I would suggest to see if you can get a few to experiment with,  after school or other child care clubs usually have craft materials, so I would suggest experimenting first.  &#xA;&#xA;#chemistry,#chemical,#modelling,#clay,#straws,#visualisation&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Molecular modelling with clay part 3</p>

<p>Further to the post <a href="https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-2" rel="nofollow">earlier</a> I am having mixed results trying to make double bonds from bendy straws. This is really proving to be not the most ideal solution.</p>

<p>I am experimenting with using straight straws side by side to represent a double bond.</p>

<p>This sort of works, but still isn&#39;t ideal,  perhaps I&#39;ll just stick to single bond molecules.</p>

<p>Doing modelling with clay is certainly <strong>not</strong> an ideal solution but, as stated it may simply help with some basic modelling if you can&#39;t get hold of the actual modelling kits.</p>

<p>Just don&#39;t try and be adventurous.</p>

<p>This is science, so it needs some more experimentation to find an ideal solution.</p>

<p>if anyone has those craft match sticks such as these:-</p>

<p><img src="https://external-content.duckduckgo.com/iu/?f=1&nofb=1&u=http%3A%2F%2Ffactorydirectcraft.com%2Fpimages%2F20160912114453-906504%2Fwood_craft_match_sticks_2.jpg" alt="match sticks"></p>

<p>as sold by <a href="factorydirectcraft.com" rel="nofollow">Factory Direct Craft.com</a></p>

<p>This may prove to be a better solution than straws.  You can get shorter lengths which will probably be better.</p>

<p>Don&#39;t go and buy any, I would suggest to see if you can get a few to experiment with,  after school or other child care clubs usually have craft materials, so I would suggest experimenting first.</p>

<p><a href="/paulsutton/tag:chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">chemistry</span></a>,<a href="/paulsutton/tag:chemical" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">chemical</span></a>,<a href="/paulsutton/tag:modelling" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">modelling</span></a>,<a href="/paulsutton/tag:clay" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">clay</span></a>,<a href="/paulsutton/tag:straws" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">straws</span></a>,<a href="/paulsutton/tag:visualisation" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">visualisation</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-3</guid>
      <pubDate>Thu, 23 Jul 2020 09:42:23 +0000</pubDate>
    </item>
    <item>
      <title>Molecular modelling with clay part 2</title>
      <link>https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-2</link>
      <description>&lt;![CDATA[Molecular modelling with clay part 2&#xA;&#xA;As discussed in my post yesterday. I am going to introduce how to build a few a basic molecules with the resources suggested. &#xA;&#xA;Step 1&#xA;&#xA;Firstly I have cut the Black and White modelling clay to size.&#xA;&#xA;methane1&#xA;&#xA;The sections on the RIGHT can be put away for later use.  You can see I have more White clay for Hydrogen than Black which I am using for Carbon.&#xA;&#xA;Step 2&#xA;&#xA;Now cut the clay up, roll in to balls and assemble the straws (links) that are needed (in this case 4)  It is a good idea to make sure you have all the bits you need to hand. &#xA;&#xA;methane2&#xA;&#xA;The Carbon is bigger as we need to attach the 4 Hydrogen to this.  &#xA;&#xA;methane3&#xA;&#xA;So here, is our Methane model, partly assembled. I have left the last one off for illustration.&#xA;&#xA;methane4&#xA;&#xA;The final step is to attach the last Hydrogen to the Carbon creating Methane $CH_4$.&#xA;&#xA;Hope this helps, it may not be perfect but it may help if you can&#39;t get hold of actual Molymod kits.&#xA;&#xA;Hopefully what this will allow you to do is visualise basic chemical structures.  &#xA;&#xA;There is an addition to this post here&#xA;&#xA;#chemistry,#chemical,#modelling,#clay,#straws,#visualisation&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Molecular modelling with clay part 2</p>

<p>As discussed in my post <a href="https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-1" rel="nofollow">yesterday</a>. I am going to introduce how to build a few a basic molecules with the resources suggested.</p>

<p>Step 1</p>

<p>Firstly I have cut the Black and White modelling clay to size.</p>

<p><img src="https://git.qoto.org/zleap/documents/-/raw/48f82a17a4a5ff4793d55d68f1843576ea88afc6/modeling/methane2.JPG" alt="methane1"></p>

<p>The sections on the RIGHT can be put away for later use.  You can see I have more White clay for Hydrogen than Black which I am using for Carbon.</p>

<p>Step 2</p>

<p>Now cut the clay up, roll in to balls and assemble the straws (links) that are needed (in this case 4)  It is a good idea to make sure you have all the bits you need to hand.</p>

<p><img src="https://git.qoto.org/zleap/documents/-/raw/48f82a17a4a5ff4793d55d68f1843576ea88afc6/modeling/methane3.JPG" alt="methane2"></p>

<p>The Carbon is bigger as we need to attach the 4 Hydrogen to this.</p>

<p><img src="https://git.qoto.org/zleap/documents/-/raw/48f82a17a4a5ff4793d55d68f1843576ea88afc6/modeling/methane4.JPG" alt="methane3"></p>

<p>So here, is our Methane model, partly assembled. I have left the last one off for illustration.</p>

<p><img src="https://git.qoto.org/zleap/documents/-/raw/48f82a17a4a5ff4793d55d68f1843576ea88afc6/modeling/methane5.JPG" alt="methane4"></p>

<p>The final step is to attach the last Hydrogen to the Carbon creating Methane $CH_4$.</p>

<p>Hope this helps, it may not be perfect but it may help if you can&#39;t get hold of actual Molymod kits.</p>

<p>Hopefully what this will allow you to do is visualise basic chemical structures.</p>

<p>There is an addition to this post <a href="https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-3" rel="nofollow">here</a></p>

<p><a href="/paulsutton/tag:chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">chemistry</span></a>,<a href="/paulsutton/tag:chemical" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">chemical</span></a>,<a href="/paulsutton/tag:modelling" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">modelling</span></a>,<a href="/paulsutton/tag:clay" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">clay</span></a>,<a href="/paulsutton/tag:straws" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">straws</span></a>,<a href="/paulsutton/tag:visualisation" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">visualisation</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-2</guid>
      <pubDate>Thu, 23 Jul 2020 07:30:00 +0000</pubDate>
    </item>
    <item>
      <title>Molecular modelling with clay part 1</title>
      <link>https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-1</link>
      <description>&lt;![CDATA[Molecular modelling with clay part 1&#xA;&#xA;About a month ago, I started a discussion on the Qoto Discourse forum on molecular modelling.  &#xA;&#xA;As I am aware not everyone can afford the Molymod kits [1], I suggested that it should be possible to do something similar, at least on a basic level with plasticine.  As I didn&#39;t have any  at the time, I made a rough model using BluTack.&#xA;&#xA;I have since managed to find some modelling clay from Poundland [3] so I present here, part 1 of 2 on a howto do this.&#xA;&#xA;Note: is was suggested that I make a video of this,  I don&#39;t have the equipment for this, so will use photos instead, however hopefully once the South Devon Tech Jam [4] is back, perhaps I can get some help with making a video.&#xA;&#xA;I would rather use photos than make a really bad video, and seek some expertise in creating a video. &#xA;&#xA;---&#xA;&#xA;So as mentioned in the Discourse thread [2], which you are welcome to join and add to the discussion.  What we are looking to do is build simple molecules.  &#xA;&#xA;Organic Molecules&#xA;&#xA;This above shows some basic Alkanes made with a Molymod  kit [1].&#xA;&#xA;So firstly the clay I bought from Poundland is below&#xA;&#xA;Clay1&#xA;Clay2&#xA;&#xA;I have already cut some drinking straws to length&#xA;&#xA;Straws&#xA;&#xA;So in this case, the straight pieces are about 1&#34; and the bendy pieces are about 1&#34; either side of the bend.  &#xA;&#xA;And as mentioned before these can act as part of a double bond or straight bonds.&#xA;&#xA;As also discussed the Colours will follow normal convention:&#xA;&#xA;| Colour &#x9;| Atom     &#x9;|&#xA;|--------&#x9;|----------&#x9;|&#xA;| Black  &#x9;| Carbon   &#x9;|&#xA;| Red    &#x9;| Oxygen   &#x9;|&#xA;| White  &#x9;| Hydrogen &#x9;|&#xA;| Blue   &#x9;| Nitrogen &#x9;|&#xA;| Green  &#x9;| Halogen  &#x9;|&#xA;&#xA;This system using the clay isn&#39;t going to be perfect, but it is not meant to be.  If we can build basic molecules, this is the important thing.&#xA;&#xA;I will provide a follow up post tomorrow.&#xA;&#xA;References&#xA;&#xA;1 Molymod&#xA;2 Qoto Discourse&#xA;3 Poundland&#xA;4 South Devon Tech Jam&#xA;5 Molymod Colours&#xA;&#xA;End notes&#xA;&#xA;Hopefully this is useful and if it is, I am still looking for employment in a school, I feel that being able to think of solutions such as this, demonstrates important skills such as problem solving, and writing these blog posts also demonstrates communication skills. &#xA;&#xA;You can find a link to my LinkedIn profile and other contact details on my contact page here.&#xA;&#xA;#chemistry,#chemical,#modelling,#clay,#straws,#visualisation&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Molecular modelling with clay part 1</p>

<p>About a month ago, I started a discussion on the <a href="https://discourse.qoto.org/t/molecular-modeling/320" rel="nofollow">Qoto Discourse forum</a> on molecular modelling.</p>

<p>As I am aware not everyone can afford the Molymod kits [1], I suggested that it should be possible to do something similar, at least on a basic level with plasticine.  As I didn&#39;t have any  at the time, I made a rough model using BluTack.</p>

<p>I have since managed to find some modelling clay from Poundland [3] so I present here, part 1 of 2 on a how_to do this.</p>

<p><strong>Note:</strong> is was suggested that I make a video of this,  I don&#39;t have the equipment for this, so will use photos instead, however hopefully once the South Devon Tech Jam [4] is back, perhaps I can get some help with making a video.</p>

<p>I would rather use photos than make a really bad video, and seek some expertise in creating a video.</p>

<hr>

<p>So as mentioned in the Discourse thread [2], which you are welcome to join and add to the discussion.  What we are looking to do is build simple molecules.</p>

<p><img src="https://git.qoto.org/zleap/documents/-/raw/master/modeling/PICT0072.JPG" alt="Organic Molecules"></p>

<p>This above shows some basic Alkanes made with a Molymod  kit [1].</p>

<p>So firstly the clay I bought from Poundland is below</p>

<p><img src="https://git.qoto.org/zleap/documents/-/raw/master/modeling/PICT0074.JPG" alt="Clay1">
<img src="https://git.qoto.org/zleap/documents/-/raw/master/modeling/PICT0075.JPG" alt="Clay2"></p>

<p>I have already cut some drinking straws to length</p>

<p><img src="https://git.qoto.org/zleap/documents/-/raw/master/modeling/PICT0076.JPG" alt="Straws"></p>

<p>So in this case, the straight pieces are about 1” and the bendy pieces are about 1” either side of the bend.</p>

<p>And as mentioned before these can act as part of a double bond or straight bonds.</p>

<p>As also discussed the Colours will follow normal convention:</p>

<table>
<thead>
<tr>
<th>Colour</th>
<th>Atom</th>
</tr>
</thead>

<tbody>
<tr>
<td>Black</td>
<td>Carbon</td>
</tr>

<tr>
<td>Red</td>
<td>Oxygen</td>
</tr>

<tr>
<td>White</td>
<td>Hydrogen</td>
</tr>

<tr>
<td>Blue</td>
<td>Nitrogen</td>
</tr>

<tr>
<td>Green</td>
<td>Halogen</td>
</tr>
</tbody>
</table>

<p>This system using the clay isn&#39;t going to be perfect, but it is <strong>not</strong> meant to be.  If we can build basic molecules, this is the important thing.</p>

<p>I will provide a follow up post tomorrow.</p>

<p><strong>References</strong></p>

<p>1 <a href="http://www.molymod.com/" rel="nofollow">Molymod</a>
2 <a href="https://discourse.qoto.org" rel="nofollow">Qoto Discourse</a>
3 <a href="https://www.poundland.co.uk/" rel="nofollow">Poundland</a>
4 <a href="https://sdtj.org.uk/" rel="nofollow">South Devon Tech Jam</a>
5 <a href="http://www.molymod.com/molymod_system.html" rel="nofollow">Molymod Colours</a></p>

<p><strong>End notes</strong></p>

<p>Hopefully this is useful and if it is, I am still looking for employment in a school, I feel that being able to think of solutions such as this, demonstrates important skills such as problem solving, and writing these blog posts also demonstrates communication skills.</p>

<p>You can find a link to my LinkedIn profile and other contact details on my contact page <a href="https://personaljournal.ca/paulsutton/contact" rel="nofollow">here</a>.</p>

<p><a href="/paulsutton/tag:chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">chemistry</span></a>,<a href="/paulsutton/tag:chemical" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">chemical</span></a>,<a href="/paulsutton/tag:modelling" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">modelling</span></a>,<a href="/paulsutton/tag:clay" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">clay</span></a>,<a href="/paulsutton/tag:straws" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">straws</span></a>,<a href="/paulsutton/tag:visualisation" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">visualisation</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/molecular-modelling-with-clay-part-1</guid>
      <pubDate>Wed, 22 Jul 2020 05:47:20 +0000</pubDate>
    </item>
    <item>
      <title>Bonds between atoms</title>
      <link>https://personaljournal.ca/paulsutton/bonds-between-atoms</link>
      <description>&lt;![CDATA[Further to my post on the history of atomic sturcture&#xA;&#xA;It was pointed out to me that &#34;Compounds do not form by combination of atoms, but by formation of chemical bonds between atoms.&#34;&#xA;&#xA;To this end, I am posting the link below to explain the different types of chemical bonds.&#xA;&#xA;4-types-of-chemical-bonds&#xA;&#xA;It is also worth noting from the reply that&#xA;&#xA;&#34;Solder is an alloy from combination of metals such as tin and lead&#34;. &#xA;&#xA;For reference and before I am told that there is Lead (Pb) free solder. The link below gives information on the different types of solder. &#xA;&#xA;different type of solder&#xA;&#xA;Nevertheless and to get back on to the topic. &#xA;&#xA;I would guess that also from this, an example of a mixture could be: &#xA;&#xA;Gunpowder which is a mixture of 3 chemicals, well a compound and 2 elements.&#xA;&#xA;#chemistry, #chemical, #bonds, #compounds, #alloy, #mixture, &#xA;&#xA;You can find me on Friendica at zleap@social.isurf.ca&#xA;&#xA;---&#xA;&#xA;cc-by logo&#xA;&#xA;Licenced under Attribution 4.0 International (CC BY 4.0)&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Further to my post on the history of atomic sturcture</p>

<p>It was pointed out to me that “Compounds do not form by combination of atoms, but by formation of chemical bonds between atoms.”</p>

<p>To this end, I am posting the link below to explain the different types of chemical bonds.</p>
<ul><li><a href="https://www.dummies.com/education/science/anatomy/4-types-of-chemical-bonds/" rel="nofollow">4-types-of-chemical-bonds</a></li></ul>

<p>It is also worth noting from the reply that</p>
<ul><li>“Solder is an alloy from combination of metals such as tin and lead”.</li></ul>

<p>For reference and before I am told that there is Lead (Pb) free solder. The link below gives information on the different types of solder.</p>
<ul><li><a href="https://www.hunker.com/12000310/composition-of-solder-wire" rel="nofollow">different type of solder</a></li></ul>

<p>Nevertheless and to get back on to the topic.</p>

<p>I would guess that also from this, an example of a mixture could be:</p>
<ul><li>Gunpowder which is a mixture of 3 chemicals, well a compound and 2 elements.</li></ul>

<p><a href="/paulsutton/tag:chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">chemistry</span></a>, <a href="/paulsutton/tag:chemical" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">chemical</span></a>, <a href="/paulsutton/tag:bonds" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">bonds</span></a>, <a href="/paulsutton/tag:compounds" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">compounds</span></a>, <a href="/paulsutton/tag:alloy" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">alloy</span></a>, <a href="/paulsutton/tag:mixture" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">mixture</span></a>,</p>

<p><a href="https://social.isurf.ca/profile/zleap" rel="nofollow">You can find me on Friendica at zleap@social.isurf.ca</a></p>

<hr>

<p><img src="https://raw.githubusercontent.com/zleap/blogmedia/master/88x31.png" alt="cc-by logo"></p>

<p><a href="https://creativecommons.org/licenses/by/4.0/" rel="nofollow">Licenced under Attribution 4.0 International (CC BY 4.0)</a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/bonds-between-atoms</guid>
      <pubDate>Mon, 30 Dec 2019 12:48:18 +0000</pubDate>
    </item>
  </channel>
</rss>