Reaction

Fill in a module description here

source

Reaction.compounds

 Reaction.compounds ()

source

Reaction.initial_condition

 Reaction.initial_condition (data)

source

Reaction.final_conditon

 Reaction.final_conditon (data)

source

Reaction

 Reaction (reactants:list[exex.compound.core.Compound],
           products:list[exex.compound.core.Compound]=[], environment:exex
           .environment.Environment=<exex.environment.OpenContainer object
           at 0x7f8d5dab6c50>)

Chemical Reaction

Type Default Details
reactants list the list of reactants
products list [] the list of products
environment Environment <exex.environment.OpenContainer object at 0x7f8d5dab6c50> the environment
Returns None

source

Reaction.total_property

 Reaction.total_property (name:str)

Calculate the total properties of reactants and products

Type Details
name str the name of the property
Returns list
r = Reaction(reactants=[Compound('C2'), Compound('O2')], products=[Compound('CO2')])
r
__main__.Reaction(formula='1C₂ + 1O₂ --> 1C₁O₂', is_balanced=False)