Public Interface
ChemEquations.ChemEquations
— ModuleWrite and balance chemical equations elegantly and efficiently.
Types
ChemEquations.ChemEquation
— TypeStores chemical equation's compounds and their coefficients in a structured way.
ChemEquations.ChemEquation
— MethodConstructs a chemical equation from the given string. If no {Type}
is provided, it defaults to Int
.
Parsing is insensitive to whitespace. Any character in EQUALCHARS
separates the equation into two sides, while +
separates the equation into compounds.
Examples
julia> ChemEquation("N2+O2⇌2NO")
N2 + O2 = 2 NO
julia> ChemEquation("CH3COOH + Na → H2 + CH3COONa")
C2H4O2 + Na = H2 + C2H3O2Na
julia> ChemEquation("⏣H + Cl2 = ⏣Cl + HCl")
⏣H + Cl2 = ⏣Cl + HCl
julia> ChemEquation{Rational}("1//2 H2 → H")
1//2 H2 = H
julia> ChemEquation{Float64}("0.5 H2 + 0.5 Cl2 = HCl")
0.5 H2 + 0.5 Cl2 = HCl
ChemEquations.Compound
— Typestruct Compound
tuples::Array{Tuple{String,Int64},1}
charge::Int64
Stores chemical compound's elements and charge in a structured way.
Electron is stored as "e"
.
ChemEquations.Compound
— MethodCompound(str::AbstractString) -> Compound
Constructs a compound from str
.
An element begins with an uppercase unicode letter and ends with a lowercase unicode letter or a unicode symbol.
An element can also begin with a symbol if the symbol is the first character (e.g. "⬡H"
).
Parsing is insensitive to whitespace and underscores (_
), but also to state symbols ((s)
, (l)
, (g)
, (aq)
). Special parsing is implemented for:
- parens (e.g.
"(CH3COO)2Mg"
) - compounds with
"*"
(e.g."CuSO4 * 5H2O"
) - electrons (
"e"
)
Charge is in the form "{±n}"
or "{n±}"
. It is automatically deduced for electron ("e"
).
Examples
julia> Compound("H2O(s)")
H2O
julia> Compound("H3O{+}")
H3O{+}
julia> Compound("(CH3COO)2Mg")
C4H6O4Mg
julia> Compound("CuSO4 * 5H2O")
CuSO9H10
julia> Compound("⬡Cl")
⬡Cl
Macros
ChemEquations.@cc_str
— MacroConstructs a compound with cc"str"
syntax, instead of Compound(str)
.
Examples
julia> cc"H3O{+1}"
H3O{+}
ChemEquations.@ce_str
— MacroConstructs a chemical equation with ce"str"
syntax, instead of ChemEquation(str)
.
Examples
julia> ce"H2 + O2 → H2O"
H2 + O2 = H2O
Functions
Base.:==
— Method==(equation_1::ChemEquation, equation_2::ChemEquation) -> Any
Checks whether two equations are chemically equal.
Examples
julia> ce"H2 + O2 = H2O" == ce"O2 + H2 → H2O"
true
Base.:==
— Method==(compound_1::Compound, compound_2::Compound) -> Bool
Checks whether two compounds are chemically equal.
Examples
julia> cc"MgOHOH" == cc"Mg(OH)2"
true
Base.show
— Methodshow(io::IO, equation::ChemEquation)
Displays the chemical equation using Base.string(::Compound)
.
Base.show
— Methodshow(io::IO, compound::Compound)
Displays the compound using Base.string(::Compound)
.
Base.string
— Methodstring(equation::ChemEquation) -> String
Creates a string to represent the chemical equation.
All compounds are displayed with Base.string(::Compound)
, in the order in which they were originally given, with coefficients equal to 1 not displayed. '='
and '+'
are used as separators, with spaces inserted for easier reading.
Examples
julia> string(ce"Cr2O7{2-} + H{+} + {-} = Cr{3+} + H2O")
"Cr2O7{-2} + H{+} + e = Cr{+3} + H2O"
Base.string
— Methodstring(compound::Compound) -> String
Creates a string to represent the compound.
All elements are displayed only once (e.g. "H2O"
and not "HOH"
), in the order in which they were originally given (e.g. "MgO2H2"
from cc"Mg(OH)2"
), with coefficients equal to 1 not displayed (e.g. "H"
and not "H1"
).
Examples
julia> string(cc"CuSO4 * 5 H2O")
"CuSO9H10"
ChemEquations.balance
— Methodbalance(equation::ChemEquation; fractions) -> ChemEquation
Balances the coefficients of a chemical equation. If the equation cannot be balanced, an error is thrown.
The original equation is not modified.
For equations with integer coefficients, the minimal integer solution is default. If fractions
is true, it will be displayed as rational fractions instead.
Examples
julia> balance(ce"Cr2O7{-2} + H{+} + {-} = Cr{+3} + H2O")
Cr2O7{-2} + 14 H{+} + 6 e = 2 Cr{+3} + 7 H2O
julia> balance(ce"Fe + Cl2 = FeCl3", fractions=true)
Fe + 3//2 Cl2 = FeCl3
julia> balance(ChemEquation{Rational}("H2 + Cl2 = HCl"))
1//2 H2 + 1//2 Cl2 = HCl
ChemEquations.balancematrix
— Methodbalancematrix(equation::ChemEquation) -> Any
Balances an equation matrix using the nullspace method. Returns an array in which each column represents a solution.
References
ChemEquations.balancematrix
— Methodbalancematrix(equation::ChemEquation{T<:(Union{Complex{S}, S} where S<:Integer)}; fractions) -> Any
Same as balancematrix(::ChemEquation)
, but for a chemical equation with integer coefficients.
By default, the solutions of integer matrices are displayed as integers. If fractions
is true, they will be displayed as rational fractions instead.
ChemEquations.compounds
— Methodcompounds(equation::ChemEquation) -> Array{_A,1} where _A
Returns chemical equation's compounds in a list.
ChemEquations.elements
— Methodelements(equation::ChemEquation) -> Array{String,1}
Returns chemical equation's unique elements.
Examples
julia> elements(ce"2 H2 + O2 → 2 H2O")
2-element Array{String,1}:
"H"
"O"
ChemEquations.elements
— Methodelements(compound::Compound) -> Array{String,1}
Returns compound's elements as strings.
Examples
julia> elements(cc"CH3COOH")
3-element Array{String,1}:
"C"
"H"
"O"
ChemEquations.equationmatrix
— Methodequationmatrix(equation::ChemEquation{T}) -> Union{OffsetArrays.OffsetArray{Float64,3,Array{Float64,3}}, Array}
Creates an equation matrix in which rows correspond to atoms and columns correspond to compounds.
Examples
julia> equationmatrix(ce"H2 + Cl2 → HCl")
2×3 Array{Int64,2}:
2 0 1
0 2 1
ChemEquations.hascharge
— Methodhascharge(equation::ChemEquation) -> Bool
True if chemical equation has at least one compound with nonzero charge.
ChemEquations.hascharge
— Methodhascharge(compound::Compound) -> Bool
True if the compound's charge is nonzero.