rizer.kin.convert_chemkin_transport_data_to_cantera#
Attributes#
Classes#
Functions#
|
Transform a Chemkin transport data file into a list of TransportData objects. |
|
Transform a Chemkin thermo data file into a list of ThermoData objects. |
|
Module Contents#
- class rizer.kin.convert_chemkin_transport_data_to_cantera.TransportData#
- class rizer.kin.convert_chemkin_transport_data_to_cantera.ThermoNasa9Data#
- class rizer.kin.convert_chemkin_transport_data_to_cantera.ThermoData#
-
- thermo: ThermoNasa9Data#
Thermodynamic data in NASA9 format.
- rizer.kin.convert_chemkin_transport_data_to_cantera.get_transport_data(transport_data_file: pathlib.Path) list[TransportData]#
Transform a Chemkin transport data file into a list of TransportData objects.
- Parameters:
transport_data_file (
pathlib.Path) – Path to the Chemkin transport data file.- Returns:
List of TransportData objects containing the transport properties for each species.
- Return type:
- Raises:
ValueError – If a line in the transport data file does not have exactly 7 components.
ValueError – If an invalid geometry number is encountered for a species.
- rizer.kin.convert_chemkin_transport_data_to_cantera.get_thermo_data(thermo_data_file: pathlib.Path) list[ThermoData]#
Transform a Chemkin thermo data file into a list of ThermoData objects.
- Parameters:
thermo_data_file (
pathlib.Path) – Path to the Chemkin thermo data file.- Returns:
List of ThermoData objects containing the thermodynamic properties for each species.
- Return type:
listofThermoData
- rizer.kin.convert_chemkin_transport_data_to_cantera.combine_thermo_transport_data(thermo_data_file: pathlib.Path, transport_data_file: pathlib.Path) list[str]#
- rizer.kin.convert_chemkin_transport_data_to_cantera.transport_data_file#