WOLFRAM NOTEBOOK

Atoms

Out[]=
In life and the Wolfram Language, chemistry starts with the
Atom
. Atoms of each chemical element can be represented along with isotopes and atomic ions.

Creation

A helium atom:
Atom["He"]
Out[]=
Atom[He]
A carbon-13 isotope:
Atom["C","MassNumber"->13]
Out[]=
Atom[C,MassNumber13]
A lithium cation:
Atom["Li","FormalCharge"->1]
Out[]=
Atom[Li,FormalCharge1]
A fluoride anion:
Atom["F","FormalCharge"->-1]
Out[]=
Atom[F,FormalCharge-1]

Properties

Individual
Atom
objects become much more exciting and very computable when placed inside of a
Molecule
. Setting
ValenceFilling
to
None
prevents automatic addition of hydrogen atoms to fill open valences for a given atom.
{Molecule[{Atom["He"]},ValenceFillingNone],Molecule[{Atom["C","MassNumber"->13]},ValenceFillingNone],Molecule[{Atom["Li","FormalCharge"->1]},ValenceFillingNone],Molecule[{Atom["F","FormalCharge"->-1]},ValenceFillingNone]}
Out[]=
Molecule
Formula: He
Atoms: 1 Bonds: 0
,Molecule
Formula:
13
C
Atoms: 1 Bonds: 0
,Molecule
Formula:
+
Li
Atoms: 1 Bonds: 0
,Molecule
Formula:
-
F
Atoms: 1 Bonds: 0
Look up the atomic mass with
MoleculeValue
MoleculeValueMolecule
Formula: He
Atoms: 1 Bonds: 0
,Molecule
Formula:
13
C
Atoms: 1 Bonds: 0
,Molecule
Formula:
+
Li
Atoms: 1 Bonds: 0
,Molecule
Formula:
-
F
Atoms: 1 Bonds: 0
,"AtomicMass"
Out[]=
{{
4.003
u
},{
13.0034
u
},{
6.941
u
},{
18.998
u
}}
The SMILES syntax can be used to create atoms with significantly less typing.
SameQ
verifies that indeed the two objects are identical.
A helium atom, carbon-13 isotope, lithium cation and fluoride anion:
{Molecule["[He]"],Molecule["[13C]"],Molecule["[Li+]"],Molecule["[F-]"]}
Out[]=
Molecule
Formula: He
Atoms: 1 Bonds: 0
,Molecule
Formula:
13
C
Atoms: 1 Bonds: 0
,Molecule
Formula:
+
Li
Atoms: 1 Bonds: 0
,Molecule
Formula:
-
F
Atoms: 1 Bonds: 0
The resulting objects are identical:
SameQ[{Molecule["[He]"],Molecule["[13C]"],Molecule["[Li+]"],Molecule["[F-]"]},{Molecule[{Atom["He"]},ValenceFillingNone],Molecule[{Atom["C","MassNumber"->13]},ValenceFillingNone],Molecule[{Atom["Li","FormalCharge"->1]},ValenceFillingNone],Molecule[{Atom["F","FormalCharge"->-1]},ValenceFillingNone]}]
Out[]=
True
Atoms can also be represented using a
ChemicalFormula
.
{ChemicalFormula["He"],ChemicalFormula["Li+"],ChemicalFormula["F-"]}
Out[]=
He
,
+
Li
,
-
F
Out[]=
Close
Wolfram Cloud

You are using a browser not supported by the Wolfram Cloud

Supported browsers include recent versions of Chrome, Edge, Firefox and Safari.


I understand and wish to continue anyway »

You are using a browser not supported by the Wolfram Cloud. Supported browsers include recent versions of Chrome, Edge, Firefox and Safari.