registry
create_critical_properties(substance, temperature, pressure, volume)
Create the critical properties of a chemical substance.
Existing critical properties can be overriden with this function.
Source code in src/chemical_utils/properties/registry.py
create_standard_entropy(substance, entropy)
Create the standard (25 Celcius, 1 bar) entropy of a chemical substance.
Existing standard entropy can be overriden with this function.
Source code in src/chemical_utils/properties/registry.py
create_standard_formation_properties(substance, formation_enthalpy, formation_gibbs_energy)
Create the standard (25 Celcius, 1 bar) formation properties of a chemical substance.
Existing standard formation properties can be overriden with this function.
Source code in src/chemical_utils/properties/registry.py
create_thermal_capacity_coefficients(substance, coefficient)
Create thermal capacity coefficients of a chemical substance.
Exisintg thermal capacity coefficient can be overriden with this function.
Source code in src/chemical_utils/properties/registry.py
get_critical_properties(substance)
Get the critical properties of a chemical substance. Returns None if the properties have not been created for the given substance.
Source code in src/chemical_utils/properties/registry.py
get_standard_entropy(substance)
Get the standard (25 Celcius, 1 bar) entropy of a chemical substance. Returns None if the entropy has not been created for the given substance.
Source code in src/chemical_utils/properties/registry.py
get_standard_formation_properties(substance)
Get the standard (25 Celcius, 1 bar) formation properties of a chemical substance. Returns None if the properties have not been created for the given substance.
Source code in src/chemical_utils/properties/registry.py
get_thermal_capacity_coefficients(substance)
Get the thermal capacity coefficient of a chemical substance. Returns None if the coefficient have not been created for the given substance.