Tutorials for Gas

from exex.gas.all import *
Example 1
H2 = Gas('H2')
Cl2 = Gas('Cl2')
r = Reaction(reactants=[H2, Cl2])
r.__dict__
{'reaction': <chemlib.chemistry.Reaction>,
 'reactants': [exex.gas.core.Gas(formula='H₂'),
  exex.gas.core.Gas(formula='Cl₂')],
 'products': [],
 'formula': '1H₂ + 1Cl₂ --> ',
 'system': <exex.system.System>,
 'environment': <exex.environment.OpenContainer>}
r.system
<exex.system.System>
H2.system
<exex.system.System>