Cantera  3.0.0
Loading...
Searching...
No Matches
PDSS_IdealGas.cpp
Go to the documentation of this file.
1/**
2 * @file PDSS_IdealGas.cpp
3 * Implementation of a pressure dependent standard state
4 * virtual function.
5 */
6
7// This file is part of Cantera. See License.txt in the top-level directory or
8// at https://cantera.org/license.txt for license and copyright information.
9
12#include "cantera/base/global.h"
13
14namespace Cantera
15{
16
18{
19 warn_deprecated("class PDSS_IdealGas", "To be removed after Cantera 3.0");
20}
21
23{
25 m_p0 = m_spthermo->refPressure();
26 m_minTemp = m_spthermo->minTemp();
27 m_maxTemp = m_spthermo->maxTemp();
28}
29
31{
32 PDSS::getParameters(eosNode);
33 eosNode["model"] = "ideal-gas";
34}
35
37{
38 return (m_h0_RT - 1.0) * GasConstant * m_temp;
39}
40
42{
43 return cp_mole() - GasConstant;
44}
45
47{
48 throw NotImplementedError("PDSS_IdealGas::pressure");
49}
50
52{
53 m_sss_R = m_s0_R - log(m_pres/m_p0);
56}
57
59{
60 m_temp = temp;
61 m_spthermo->updatePropertiesTemp(temp, &m_cp0_R, &m_h0_RT, &m_s0_R);
66 m_sss_R = m_s0_R - log(m_pres/m_p0);
69}
70
71void PDSS_IdealGas::setState_TP(double temp, double pres)
72{
73 m_pres = pres;
74 setTemperature(temp);
75}
76
77void PDSS_IdealGas::setState_TR(double temp, double rho)
78{
79 warn_deprecated("PDSS_IdealGas::setState_TR", "To be removed after Cantera 3.0");
80 m_pres = GasConstant * temp * rho / m_mw;
81 setTemperature(temp);
82}
83
84}
Declarations for the class PDSS_IdealGas (pressure dependent standard state) which handles calculatio...
Header file for a derived class of ThermoPhase that handles variable pressure standard state methods ...
A map of string keys to values whose type can vary at runtime.
Definition AnyMap.h:427
An error indicating that an unimplemented function has been called.
void setPressure(double pres) override
Sets the pressure in the object.
void setTemperature(double temp) override
Set the internal temperature.
double pressure() const override
Returns the pressure (Pa)
void initThermo() override
Initialization routine.
double cv_mole() const override
Return the molar const volume heat capacity in units of J kmol-1 K-1.
void setState_TR(double temp, double rho) override
Set the internal temperature and density.
void getParameters(AnyMap &eosNode) const override
Store the parameters needed to reconstruct a copy of this PDSS object.
double intEnergy_mole() const override
Return the molar internal Energy in units of J kmol-1.
PDSS_IdealGas()
Default Constructor.
void setState_TP(double temp, double pres) override
Set the internal temperature and pressure.
double m_sss_R
Standard state entropy divided by R.
Definition PDSS.h:516
double m_cpss_R
Standard state heat capacity divided by R.
Definition PDSS.h:515
double m_h0_RT
Reference state enthalpy divided by RT.
Definition PDSS.h:509
double m_g0_RT
Reference state Gibbs free energy divided by RT.
Definition PDSS.h:512
double m_s0_R
Reference state entropy divided by R.
Definition PDSS.h:511
double m_gss_RT
Standard state Gibbs free energy divided by RT.
Definition PDSS.h:517
double m_cp0_R
Reference state heat capacity divided by R.
Definition PDSS.h:510
double cp_mole() const override
Return the molar const pressure heat capacity in units of J kmol-1 K-1.
Definition PDSS.cpp:256
double m_Vss
Standard State molar volume (m^3/kmol)
Definition PDSS.h:518
double m_hss_RT
Standard state enthalpy divided by RT.
Definition PDSS.h:514
double m_V0
Reference state molar volume (m^3/kmol)
Definition PDSS.h:513
virtual void initThermo()
Initialization routine.
Definition PDSS.h:418
double m_p0
Reference state pressure of the species.
Definition PDSS.h:455
double m_temp
Current temperature used by the PDSS object.
Definition PDSS.h:449
shared_ptr< SpeciesThermoInterpType > m_spthermo
Pointer to the species thermodynamic property manager.
Definition PDSS.h:472
double m_pres
State of the system - pressure.
Definition PDSS.h:452
double m_maxTemp
Maximum temperature.
Definition PDSS.h:461
double m_minTemp
Minimum temperature.
Definition PDSS.h:458
double m_mw
Molecular Weight of the species.
Definition PDSS.h:464
virtual void getParameters(AnyMap &eosNode) const
Store the parameters needed to reconstruct a copy of this PDSS object.
Definition PDSS.h:427
This file contains definitions for utility functions and text for modules, inputfiles and logging,...
const double GasConstant
Universal Gas Constant [J/kmol/K].
Definition ct_defs.h:120
Namespace for the Cantera kernel.
Definition AnyMap.cpp:564
void warn_deprecated(const string &source, const AnyBase &node, const string &message)
A deprecation warning for syntax in an input file.
Definition AnyMap.cpp:1926