20vcs_VolPhase::vcs_VolPhase(
VCS_SOLVE* owningSolverObject) :
21 m_owningSolverObject(owningSolverObject)
25vcs_VolPhase::~vcs_VolPhase()
27 for (
size_t k = 0; k < m_numSpecies; k++) {
28 delete ListSpeciesPtr[k];
33 const size_t numElem,
const char*
const phaseName,
34 const double molesInert)
36 AssertThrowMsg(nspecies > 0,
"vcs_VolPhase::resize",
"nspecies Error");
42 if (strcmp(
PhaseName.c_str(), phaseName)) {
44 "Strings are different: " +
PhaseName +
" " +
45 phaseName +
" :unknown situation");
81 for (
size_t i = 0; i < nspecies; i++) {
85 Xmol_.resize(nspecies, 0.0);
88 for (
size_t i = 0; i < nspecies; i++) {
89 Xmol_[i] = 1.0/nspecies;
117void vcs_VolPhase::elemResize(
const size_t numElemConstraints)
119 m_elementNames.resize(numElemConstraints);
120 m_elementActive.resize(numElemConstraints+1, 1);
122 m_formulaMatrix.resize(m_numSpecies, numElemConstraints, 0.0);
123 m_elementNames.resize(numElemConstraints,
"");
124 m_elemGlobalIndex.resize(numElemConstraints,
npos);
125 m_numElemConstraints = numElemConstraints;
173 if (std::fabs(sum) > 1.0E-13) {
200double vcs_VolPhase::moleFraction(
size_t k)
const
207 const int vcsStateStatus)
213 throw CanteraError(
"vcs_VolPhase::setMolesFractionsState",
214 "inappropriate usage");
219 throw CanteraError(
"vcs_VolPhase::setMolesFractionsState",
220 "inappropriate usage");
228 double fractotal = 1.0;
232 throw CanteraError(
"vcs_VolPhase::setMolesFractionsState",
233 "inerts greater than total: {} {}",
244 throw CanteraError(
"vcs_VolPhase::setMolesFractionsState",
245 "inappropriate usage");
247 if (sum != fractotal) {
249 Xmol_[k] *= (fractotal /sum);
256 const double* molesSpeciesVCS)
260 if (molesSpeciesVCS == 0) {
262 "shouldn't be here");
268 throw CanteraError(
"vcs_VolPhase::setMolesFromVCS",
"shouldn't be here");
292 double tmp = std::max(0.0, molesSpeciesVCS[kglob]);
313 double phi = molesSpeciesVCS[kglob];
337 const double* molesSpeciesVCS,
338 const double*
const TPhMoles)
343 double Tcheck = TPhMoles[
VP_ID_];
348 throw CanteraError(
"vcs_VolPhase::setMolesFromVCSCheck",
349 "We have a consistency problem: {} {}", Tcheck,
v_totalMoles);
420 TP_ptr->setState_TP(temp, pres);
463 throw CanteraError(
"vcs_VolPhase::_updateVolPM",
"unknown situation");
473 if (phaseTotalMoles < 1.0E-14) {
474 phaseTotalMoles = 1.0;
486 double moles_j_base = phaseTotalMoles *
Xmol_[j];
488 if (moles_j_base < 1.0E-200) {
489 moles_j_base = 1.0E-7 * moles_j_base + 1.0E-13 * phaseTotalMoles + 1.0E-150;
492 np_lnActCoeffCol[k] = np_lnActCoeffCol[k] * phaseTotalMoles / moles_j_base;
496 double deltaMoles_j = 0.0;
498 vector<double> ActCoeff_Base(
ActCoeff);
499 vector<double> Xmol_Base(
Xmol_);
500 double TMoles_base = phaseTotalMoles;
506 double moles_j_base = phaseTotalMoles * Xmol_Base[j];
507 deltaMoles_j = 1.0E-7 * moles_j_base + 1.0E-13 * phaseTotalMoles + 1.0E-150;
511 phaseTotalMoles = TMoles_base + deltaMoles_j;
513 Xmol_[k] = Xmol_Base[k] * TMoles_base / phaseTotalMoles;
515 Xmol_[j] = (moles_j_base + deltaMoles_j) / phaseTotalMoles;
558 size_t nsp =
TP_ptr->nSpecies();
559 size_t nelem =
TP_ptr->nElements();
562 warn_user(
"vcs_VolPhase::setPtrThermoPhase",
595 const vector<size_t> &creationGlobalRxnNumbers)
604 vector<size_t> &creationGlobalRxnNumbers)
const
616 "vcs_VolPhase::setTotalMoles",
617 "totalMoles less than inert moles: {} {}",
623 if (totalMols > 0.0) {
635 if (stateCalc != -1) {
656void vcs_VolPhase::setPhiVarIndex(
size_t phiVarIndex)
658 m_phiVarIndex = phiVarIndex;
660 if (m_singleSpecies && m_phiVarIndex == 0) {
680 "setting false existence for phase with moles");
685 "setting true existence for phase with no moles");
690 "Trying to set existence of an electron phase to false");
701 const size_t spGlobalIndex)
748 "vcs_VolPhase::setElemGlobalIndex");
769 for (
size_t k = 0; k < tPhase->
nSpecies(); k++) {
770 if (tPhase->
charge(k) != 0.0) {
811 size_t eFound =
npos;
820 for (
size_t eT = 0; eT < nebase; eT++) {
828 for (
size_t eT = 0; eT < nebase; eT++) {
835 if (eFound ==
npos) {
851 for (
size_t eT = 0; eT < nebase; eT++) {
858 string pname = tPhase->
name();
860 pname = fmt::format(
"phase{}",
VP_ID_);
866 for (
size_t k = 0; k < ns; k++) {
868 for (
size_t eT = 0; eT < nebase; eT++) {
872 if (eFound !=
npos) {
878 for (
size_t k = 0; k < ns; k++) {
886 if (ns == 1 && tPhase->
charge(0) != 0.0) {
909int vcs_VolPhase::elementActive(
const size_t e)
const
911 return m_elementActive[e];
922 case VCS_EOS_CONSTANT:
924 case VCS_EOS_IDEAL_GAS:
926 case VCS_EOS_STOICH_SUB:
928 case VCS_EOS_IDEAL_SOLN:
930 case VCS_EOS_DEBEYE_HUCKEL:
931 return "Debeye Huckel";
932 case VCS_EOS_REDLICH_KWONG:
933 return "Redlich_Kwong";
934 case VCS_EOS_REGULAR_SOLN:
935 return "Regular Soln";
937 return fmt::format(
"UnkType: {:7d}",
m_eqnState);
Header file for class ThermoPhase, the base class for phases with thermodynamic properties,...
A class for 2D arrays stored in column-major (Fortran-compatible) form.
Base class for exceptions thrown by Cantera classes.
An array index is out of range.
size_t nSpecies() const
Returns the number of species in the phase.
int elementType(size_t m) const
Return the element constraint type Possible types include:
double nAtoms(size_t k, size_t m) const
Number of atoms of element m in species k.
size_t nElements() const
Number of elements.
string elementName(size_t m) const
Name of the element with index m.
double charge(size_t k) const
Dimensionless electrical charge of a single molecule of species k The charge is normalized by the the...
string name() const
Return the name of the phase.
Base class for a phase with thermodynamic properties.
bool chargeNeutralityNecessary() const
Returns the chargeNeutralityNecessity boolean.
This is the main structure used to hold the internal data used in vcs_solve_TP(), and to solve TP sys...
Properties of a single species.
vector< double > StarChemicalPotential
Vector of calculated Star chemical potentials for the current Temperature and pressure.
void setCreationMoleNumbers(const double *const n_k, const vector< size_t > &creationGlobalRxnNumbers)
Sets the creationMoleNum's within the phase object.
void setElectricPotential(const double phi)
set the electric potential of the phase
bool m_UpToDate_GStar
Boolean indicating whether GStar is up to date.
double electricPotential() const
Returns the electric field of the phase.
size_t m_phiVarIndex
If the potential is a solution variable in VCS, it acts as a species.
vector< double > Xmol_
Vector of the current mole fractions for species in the phase.
double Temp_
Current value of the temperature for this object, and underlying objects.
int speciesUnknownType(const size_t k) const
Returns the type of the species unknown.
size_t elemGlobalIndex(const size_t e) const
Returns the global index of the local element index for the phase.
void _updateGStar() const
Gibbs free energy calculation for standard states.
vector< double > SS0ChemicalPotential
Vector of calculated SS0 chemical potentials for the current Temperature.
size_t nSpecies() const
Return the number of species in the phase.
string PhaseName
String name for the phase.
void setMolesFromVCSCheck(const int vcsStateStatus, const double *molesSpeciesVCS, const double *const TPhMoles)
Set the moles within the phase.
void setMoleFractionsState(const double molNum, const double *const moleFracVec, const int vcsStateStatus)
Set the moles and/or mole fractions within the phase.
void setMolesOutOfDate(int stateCalc=-1)
Sets the mole flag within the object to out of date.
vector< string > m_elementNames
vector of strings containing the element constraint names
vector< int > m_elementActive
boolean indicating whether an element constraint is active for the current problem
vector< double > creationMoleNumbers_
Vector of current creationMoleNumbers_.
double _updateVolPM() const
Calculate the partial molar volumes of all species and return the total volume.
double m_totalVol
Total Volume of the phase. Units are m**3.
size_t ChargeNeutralityElement
This is the element number for the charge neutrality condition of the phase.
vector< size_t > m_elemGlobalIndex
Index of the element number in the global list of elements stored in VCS_SOLVE.
size_t VP_ID_
Original ID of the phase in the problem.
Array2D np_dLnActCoeffdMolNumber
Vector of the derivatives of the ln activity coefficient wrt to the current mole number multiplied by...
const Array2D & getFormulaMatrix() const
Get a constant form of the Species Formula Matrix.
vector< int > m_speciesUnknownType
Type of the species unknown.
bool m_UpToDate_VolStar
Boolean indicating whether Star volumes are up to date.
void updateFromVCS_MoleNumbers(const int stateCalc)
Update the moles within the phase, if necessary.
vcs_SpeciesProperties * speciesProperty(const size_t kindex)
Retrieve the kth Species structure for the species belonging to this phase.
size_t phiVarIndex() const
Return the index of the species that represents the the voltage of the phase.
double totalMolesInert() const
Returns the value of the total kmol of inert in the phase.
double v_totalMoles
Total mols in the phase. units are kmol.
bool m_singleSpecies
If true, this phase consists of a single species.
void setMolesFromVCS(const int stateCalc, const double *molesSpeciesVCS=0)
Set the moles within the phase.
void setElemGlobalIndex(const size_t eLocal, const size_t eGlobal)
sets a local phase element to a global index value
int m_MFStartIndex
This is always equal to zero.
void resize(const size_t phaseNum, const size_t numSpecies, const size_t numElem, const char *const phaseName, const double molesInert=0.0)
The resize() function fills in all of the initial information if it is not given in the constructor.
bool m_isIdealSoln
Boolean indicating whether the phase is an ideal solution and therefore its molar-based activity coef...
vector< double > ActCoeff
Vector of calculated activity coefficients for the current state.
int exists() const
int indicating whether the phase exists or not
vector< size_t > IndSpecies
Index into the species vectors.
const vector< double > & moleFractions() const
Return a const reference to the mole fractions stored in the object.
size_t nElemConstraints() const
Returns the number of element constraints.
double m_phi
Value of the potential for the phase (Volts)
size_t spGlobalIndexVCS(const size_t spIndex) const
Return the Global VCS index of the kth species in the phase.
size_t transferElementsFM(const ThermoPhase *const tPhase)
Transfer all of the element information from the ThermoPhase object to the vcs_VolPhase object.
vector< int > m_elementType
Type of the element constraint.
double VolStar_calc_one(size_t kspec) const
Molar volume calculation for standard state of one species.
double GStar_calc_one(size_t kspec) const
Gibbs free energy calculation for standard state of one species.
bool m_gasPhase
If true, this phase is a gas-phase like phase.
void _updateVolStar() const
Molar volume calculation for standard states.
int m_vcsStateStatus
Status.
bool m_UpToDate_G0
Boolean indicating whether G0 is up to date.
void _updateG0() const
Gibbs free energy calculation at a temperature for the reference state of each species.
double Pres_
Current value of the pressure for this object, and underlying objects.
vector< double > PartialMolarVol
Vector of the Partial molar Volumes of the species. units m3 / kmol.
double molefraction(size_t kspec) const
Returns the mole fraction of the kspec species.
Array2D m_formulaMatrix
Formula Matrix for the phase.
void _updateLnActCoeffJac()
Evaluation of Activity Coefficient Jacobians.
string elementName(size_t e) const
Name of the element constraint with index e.
void setTotalMoles(const double totalMols)
Sets the total moles in the phase.
void setMolesCurrent(int vcsStateStatus)
Sets the mole flag within the object to be current.
void sendToVCS_GStar(double *const gstar) const
Fill in the standard state Gibbs free energy vector for VCS.
void sendToVCS_ActCoeff(const int stateCalc, double *const AC)
Fill in an activity coefficients vector within a VCS_SOLVE object.
size_t m_numElemConstraints
Number of element constraints within the problem.
vector< double > StarMolarVol
Vector of the Star molar Volumes of the species. units m3 / kmol.
double sendToVCS_VolPM(double *const VolPM) const
Fill in the partial molar volume vector for VCS.
void sendToVCS_LnActCoeffJac(Array2D &LnACJac_VCS)
Downloads the ln ActCoeff Jacobian into the VCS version of the ln ActCoeff Jacobian.
int m_eqnState
Type of the equation of state.
void setTotalMolesInert(const double tMolesInert)
Sets the total moles of inert in the phase.
double G0_calc_one(size_t kspec) const
Gibbs free energy calculation at a temperature for the reference state of a species,...
void _updateActCoeff() const
Evaluate the activity coefficients at the current conditions.
void setState_TP(const double temperature_Kelvin, const double pressure_PA)
Sets the temperature and pressure in this object and underlying ThermoPhase objects.
int m_existence
Current state of existence:
string eos_name() const
Return the name corresponding to the equation of state.
bool m_UpToDate_AC
Boolean indicating whether activity coefficients are up to date.
VCS_SOLVE * m_owningSolverObject
Backtrack value of VCS_SOLVE *.
ThermoPhase * TP_ptr
If we are using Cantera, this is the pointer to the ThermoPhase object.
void _updateMoleFractionDependencies()
Updates the mole fraction dependencies.
double m_totalMolesInert
Total moles of inert in the phase.
int elementType(const size_t e) const
Type of the element constraint with index e.
const ThermoPhase * ptrThermoPhase() const
Return a const ThermoPhase pointer corresponding to this phase.
vector< size_t > creationGlobalRxnNumbers_
Vector of creation global reaction numbers for the phase stability problem.
void setSpGlobalIndexVCS(const size_t spIndex, const size_t spGlobalIndex)
set the Global VCS index of the kth species in the phase
size_t m_numSpecies
Number of species in the phase.
void setExistence(const int existence)
Set the existence flag in the object.
void setMoleFractions(const double *const xmol)
Set the mole fractions from a conventional mole fraction vector.
bool m_UpToDate
Boolean indicating whether the object has an up-to-date mole number vector and potential with respect...
vector< vcs_SpeciesProperties * > ListSpeciesPtr
Vector of Species structures for the species belonging to this phase.
void setState_T(const double temperature_Kelvin)
Sets the temperature in this object and underlying ThermoPhase objects.
const vector< double > & creationMoleNumbers(vector< size_t > &creationGlobalRxnNumbers) const
Return a const reference to the creationMoleNumbers stored in the object.
bool m_UpToDate_VolPM
Boolean indicating whether partial molar volumes are up to date.
bool isIdealSoln() const
Returns whether the phase is an ideal solution phase.
double totalMoles() const
Return the total moles in the phase.
void setPtrThermoPhase(ThermoPhase *tp_ptr)
Set the pointer for Cantera's ThermoPhase parameter.
#define AssertThrow(expr, procedure)
Assertion must be true or an error is thrown.
#define AssertThrowMsg(expr, procedure,...)
Assertion must be true or an error is thrown.
const double GasConstant
Universal Gas Constant [J/kmol/K].
void warn_user(const string &method, const string &msg, const Args &... args)
Print a user warning raised from method as CanteraWarning.
Namespace for the Cantera kernel.
const size_t npos
index returned by functions to indicate "no position"
static bool chargeNeutralityElement(const ThermoPhase *const tPhase)
This utility routine decides whether a Cantera ThermoPhase needs a constraint equation representing t...
static bool hasChargedSpecies(const ThermoPhase *const tPhase)
This function decides whether a phase has charged species or not.
bool vcs_doubleEqual(double d1, double d2)
Simple routine to check whether two doubles are equal up to roundoff error.
Contains declarations for string manipulation functions within Cantera.
Header for the object representing each phase within vcs.
#define VCS_SPECIES_TYPE_INTERFACIALVOLTAGE
Unknown refers to the voltage level of a phase.
#define VCS_STATECALC_OLD
State Calculation based on the old or base mole numbers.
#define VCS_STATECALC_TMP
State Calculation based on a temporary set of mole numbers.
#define VCS_PHASE_EXIST_NO
Phase doesn't currently exist in the mixture.
#define VCS_PHASE_EXIST_ALWAYS
These defines are valid values for the phase existence flag.
#define VCS_ELEM_TYPE_ABSPOS
Normal element constraint consisting of positive coefficients for the formula matrix.
#define VCS_STATECALC_NEW
State Calculation based on the new or tentative mole numbers.
#define VCS_SPECIES_TYPE_MOLNUM
Unknown refers to mole number of a single species.
#define VCS_ELEM_TYPE_ELECTRONCHARGE
This refers to conservation of electrons.
#define VCS_ELEM_TYPE_CHARGENEUTRALITY
This refers to a charge neutrality of a single phase.
#define VCS_PHASE_EXIST_YES
Phase is a normal phase that currently exists.
#define VCS_PHASE_EXIST_ZEROEDPHASE
Phase currently is zeroed due to a programmatic issue.
Header file for the internal object that holds the vcs equilibrium problem (see Class VCS_SOLVE and C...