コード例 #1
0
ファイル: liquidvapor.py プロジェクト: anujg1991/cantera
 def critTemperature(self):
     """Critical temperature [K]."""
     return _cantera.thermo_getfp(self._phase_id,50)
コード例 #2
0
 def entropy_mass(self):
     """Specific entropy [J/kg/K]."""
     return _cantera.thermo_getfp(self._phase_id, 10)
コード例 #3
0
 def cp_mass(self):
     """Specific heat at constant pressure [J/kg/K]."""
     return _cantera.thermo_getfp(self._phase_id, 12)
コード例 #4
0
 def pressure(self):
     """ The pressure [Pa]."""
     return _cantera.thermo_getfp(self._phase_id, 7)
コード例 #5
0
 def enthalpy_mass(self):
     """Specific enthalpy [J/kg]."""
     return _cantera.thermo_getfp(self._phase_id, 8)
コード例 #6
0
 def entropy_mole(self):
     """ The molar entropy [J/kmol/K]."""
     return _cantera.thermo_getfp(self._phase_id, 3)
コード例 #7
0
 def cp_mole(self):
     """ The molar heat capacity at constant pressure [J/kmol/K]."""
     return _cantera.thermo_getfp(self._phase_id, 5)
コード例 #8
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def cp_mole(self):
     """ The molar heat capacity at constant pressure [J/kmol/K]."""
     return _cantera.thermo_getfp(self._phase_id,5)
コード例 #9
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def cv_mole(self):
     """ The molar heat capacity at constant volume [J/kmol/K]."""
     return _cantera.thermo_getfp(self._phase_id,6)
コード例 #10
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def entropy_mole(self):
     """ The molar entropy [J/kmol/K]."""
     return _cantera.thermo_getfp(self._phase_id,3)
コード例 #11
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def gibbs_mole(self):
     """ The molar Gibbs function [J/kmol]."""
     return _cantera.thermo_getfp(self._phase_id,4)
コード例 #12
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def intEnergy_mole(self):
     """ The molar internal energy [J/kmol]."""
     return _cantera.thermo_getfp(self._phase_id,2)
コード例 #13
0
 def vaporFraction(self):
     """Vapor fraction."""
     return _cantera.thermo_getfp(self._phase_id, 53)
コード例 #14
0
 def critDensity(self):
     """Critical density [kg/m3]."""
     return _cantera.thermo_getfp(self._phase_id, 52)
コード例 #15
0
ファイル: liquidvapor.py プロジェクト: anujg1991/cantera
 def critDensity(self):
     """Critical density [kg/m3]."""
     return _cantera.thermo_getfp(self._phase_id,52)
コード例 #16
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def pressure(self):
     """ The pressure [Pa]."""
     return _cantera.thermo_getfp(self._phase_id,7)
コード例 #17
0
 def critPressure(self):
     """Critical pressure [Pa]."""
     return _cantera.thermo_getfp(self._phase_id, 51)
コード例 #18
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def electricPotential(self):
     """Electric potential [V]."""
     return _cantera.thermo_getfp(self._phase_id,25)
コード例 #19
0
 def gibbs_mole(self):
     """ The molar Gibbs function [J/kmol]."""
     return _cantera.thermo_getfp(self._phase_id, 4)
コード例 #20
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def enthalpy_mass(self):
     """Specific enthalpy [J/kg]."""
     return _cantera.thermo_getfp(self._phase_id,8)
コード例 #21
0
 def cv_mole(self):
     """ The molar heat capacity at constant volume [J/kmol/K]."""
     return _cantera.thermo_getfp(self._phase_id, 6)
コード例 #22
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def intEnergy_mass(self):
     """Specific internal energy [J/kg]."""
     return _cantera.thermo_getfp(self._phase_id,9)
コード例 #23
0
 def electricPotential(self):
     """Electric potential [V]."""
     return _cantera.thermo_getfp(self._phase_id, 25)
コード例 #24
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def entropy_mass(self):
     """Specific entropy [J/kg/K]."""
     return _cantera.thermo_getfp(self._phase_id,10)
コード例 #25
0
 def intEnergy_mass(self):
     """Specific internal energy [J/kg]."""
     return _cantera.thermo_getfp(self._phase_id, 9)
コード例 #26
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def gibbs_mass(self):
     """Specific Gibbs free energy [J/kg]."""
     return _cantera.thermo_getfp(self._phase_id,11)
コード例 #27
0
 def gibbs_mass(self):
     """Specific Gibbs free energy [J/kg]."""
     return _cantera.thermo_getfp(self._phase_id, 11)
コード例 #28
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def cp_mass(self):
     """Specific heat at constant pressure [J/kg/K]."""
     return _cantera.thermo_getfp(self._phase_id,12)
コード例 #29
0
 def cv_mass(self):
     """Specific heat at constant volume [J/kg/K]."""
     return _cantera.thermo_getfp(self._phase_id, 13)
コード例 #30
0
ファイル: ThermoPhase.py プロジェクト: anujg1991/cantera
 def cv_mass(self):
     """Specific heat at constant volume [J/kg/K]."""
     return _cantera.thermo_getfp(self._phase_id,13)
コード例 #31
0
ファイル: liquidvapor.py プロジェクト: anujg1991/cantera
 def critPressure(self):
     """Critical pressure [Pa]."""
     return _cantera.thermo_getfp(self._phase_id,51)
コード例 #32
0
 def intEnergy_mole(self):
     """ The molar internal energy [J/kmol]."""
     return _cantera.thermo_getfp(self._phase_id, 2)
コード例 #33
0
ファイル: liquidvapor.py プロジェクト: anujg1991/cantera
 def vaporFraction(self):
     """Vapor fraction."""
     return _cantera.thermo_getfp(self._phase_id,53)
コード例 #34
0
 def critTemperature(self):
     """Critical temperature [K]."""
     return _cantera.thermo_getfp(self._phase_id, 50)