/** * @file ThermoPhase.cpp * Definition file for class ThermoPhase, the base class for phases with * thermodynamic properties * (see class \link Cantera::ThermoPhase ThermoPhase\endlink). */ // Copyright 2002 California Institute of Technology #include "cantera/thermo/ThermoPhase.h" #include "cantera/base/stringUtils.h" #include "cantera/thermo/ThermoFactory.h" #include "cantera/thermo/SpeciesThermoInterpType.h" #include "cantera/thermo/GeneralSpeciesThermo.h" #include "cantera/equil/ChemEquil.h" #include "cantera/equil/MultiPhase.h" #include "cantera/base/ctml.h" #include #include using namespace std; namespace Cantera { ThermoPhase::ThermoPhase() : m_spthermo(new GeneralSpeciesThermo()), m_speciesData(0), m_phi(0.0), m_hasElementPotentials(false), m_chargeNeutralityNecessary(false), m_ssConvention(cSS_CONVENTION_TEMPERATURE), m_tlast(0.0) { } ThermoPhase::~ThermoPhase() { for (size_t k = 0; k < m_speciesData.size(); k++) { delete m_speciesData[k]; } delete m_spthermo; } ThermoPhase::ThermoPhase(const ThermoPhase& right) : m_spthermo(new GeneralSpeciesThermo()), m_speciesData(0), m_phi(0.0), m_hasElementPotentials(false), m_chargeNeutralityNecessary(false), m_ssConvention(cSS_CONVENTION_TEMPERATURE) { /* * Call the assignment operator */ *this = right; } ThermoPhase& ThermoPhase::operator=(const ThermoPhase& right) { /* * Check for self assignment. */ if (this == &right) { return *this; } /* * We need to destruct first */ for (size_t k = 0; k < m_speciesData.size(); k++) { delete m_speciesData[k]; } delete m_spthermo; /* * Call the base class assignment operator */ Phase::operator=(right); /* * Pointer to the species thermodynamic property manager * We own this, so we need to do a deep copy */ m_spthermo = (right.m_spthermo)->duplMyselfAsSpeciesThermo(); /* * Do a deep copy of species Data, because we own this */ m_speciesData.resize(m_kk); for (size_t k = 0; k < m_kk; k++) { m_speciesData[k] = new XML_Node(*(right.m_speciesData[k])); } m_phi = right.m_phi; m_lambdaRRT = right.m_lambdaRRT; m_hasElementPotentials = right.m_hasElementPotentials; m_chargeNeutralityNecessary = right.m_chargeNeutralityNecessary; m_ssConvention = right.m_ssConvention; m_tlast = right.m_tlast; return *this; } ThermoPhase* ThermoPhase::duplMyselfAsThermoPhase() const { return new ThermoPhase(*this); } int ThermoPhase::activityConvention() const { return cAC_CONVENTION_MOLAR; } int ThermoPhase::standardStateConvention() const { return m_ssConvention; } doublereal ThermoPhase::logStandardConc(size_t k) const { return log(standardConcentration(k)); } void ThermoPhase::getActivities(doublereal* a) const { getActivityConcentrations(a); for (size_t k = 0; k < nSpecies(); k++) { a[k] /= standardConcentration(k); } } void ThermoPhase::getLnActivityCoefficients(doublereal* lnac) const { getActivityCoefficients(lnac); for (size_t k = 0; k < m_kk; k++) { lnac[k] = std::log(lnac[k]); } } void ThermoPhase::setState_TPX(doublereal t, doublereal p, const doublereal* x) { setMoleFractions(x); setState_TP(t,p); } void ThermoPhase::setState_TPX(doublereal t, doublereal p, const compositionMap& x) { setMoleFractionsByName(x); setState_TP(t,p); } void ThermoPhase::setState_TPX(doublereal t, doublereal p, const std::string& x) { setMoleFractionsByName(x); setState_TP(t,p); } void ThermoPhase::setState_TPY(doublereal t, doublereal p, const doublereal* y) { setMassFractions(y); setState_TP(t,p); } void ThermoPhase::setState_TPY(doublereal t, doublereal p, const compositionMap& y) { setMassFractionsByName(y); setState_TP(t,p); } void ThermoPhase::setState_TPY(doublereal t, doublereal p, const std::string& y) { setMassFractionsByName(y); setState_TP(t,p); } void ThermoPhase::setState_TP(doublereal t, doublereal p) { setTemperature(t); setPressure(p); } void ThermoPhase::setState_RPX(doublereal rho, doublereal p, const doublereal* x) { setMoleFractions(x); setState_RP(rho, p); } void ThermoPhase::setState_RPX(doublereal rho, doublereal p, const compositionMap& x) { setMoleFractionsByName(x); setState_RP(rho,p); } void ThermoPhase::setState_RPX(doublereal rho, doublereal p, const std::string& x) { setMoleFractionsByName(x); setState_RP(rho,p); } void ThermoPhase::setState_RPY(doublereal rho, doublereal p, const doublereal* y) { setMassFractions(y); setState_RP(rho,p); } void ThermoPhase::setState_RPY(doublereal rho, doublereal p, const compositionMap& y) { setMassFractionsByName(y); setState_RP(rho,p); } void ThermoPhase::setState_RPY(doublereal rho, doublereal p, const std::string& y) { setMassFractionsByName(y); setState_RP(rho,p); } void ThermoPhase::setState_PX(doublereal p, doublereal* x) { setMoleFractions(x); setPressure(p); } void ThermoPhase::setState_PY(doublereal p, doublereal* y) { setMassFractions(y); setPressure(p); } void ThermoPhase::setState_HP(doublereal Htarget, doublereal p, doublereal dTtol) { setState_HPorUV(Htarget, p, dTtol, false); } void ThermoPhase::setState_UV(doublereal u, doublereal v, doublereal dTtol) { setState_HPorUV(u, v, dTtol, true); } void ThermoPhase::setState_conditional_TP(doublereal t, doublereal p, bool set_p) { setTemperature(t); if (set_p) { setPressure(p); } } void ThermoPhase::setState_HPorUV(doublereal Htarget, doublereal p, doublereal dTtol, bool doUV) { doublereal dt; doublereal v = 0.0; // Assign the specific volume or pressure and make sure it's positive if (doUV) { doublereal v = p; if (v < 1.0E-300) { throw CanteraError("setState_HPorUV (UV)", "Input specific volume is too small or negative. v = " + fp2str(v)); } setDensity(1.0/v); } else { if (p < 1.0E-300) { throw CanteraError("setState_HPorUV (HP)", "Input pressure is too small or negative. p = " + fp2str(p)); } setPressure(p); } double Tmax = maxTemp() + 0.1; double Tmin = minTemp() - 0.1; // Make sure we are within the temperature bounds at the start // of the iteration double Tnew = temperature(); double Tinit = Tnew; if (Tnew > Tmax) { Tnew = Tmax - 1.0; } else if (Tnew < Tmin) { Tnew = Tmin + 1.0; } if (Tnew != Tinit) { setState_conditional_TP(Tnew, p, !doUV); } double Hnew = (doUV) ? intEnergy_mass() : enthalpy_mass(); double Cpnew = (doUV) ? cv_mass() : cp_mass(); double Htop = Hnew; double Ttop = Tnew; double Hbot = Hnew; double Tbot = Tnew; bool ignoreBounds = false; // Unstable phases are those for which // cp < 0.0. These are possible for cases where // we have passed the spinodal curve. bool unstablePhase = false; // Counter indicating the last temperature point where the // phase was unstable double Tunstable = -1.0; bool unstablePhaseNew = false; // Newton iteration for (int n = 0; n < 500; n++) { double Told = Tnew; double Hold = Hnew; double cpd = Cpnew; if (cpd < 0.0) { unstablePhase = true; Tunstable = Tnew; } // limit step size to 100 K dt = clip((Htarget - Hold)/cpd, -100.0, 100.0); // Calculate the new T Tnew = Told + dt; // Limit the step size so that we are convergent // This is the step that makes it different from a // Newton's algorithm if ((dt > 0.0 && unstablePhase) || (dt <= 0.0 && !unstablePhase)) { if (Hbot < Htarget && Tnew < (0.75 * Tbot + 0.25 * Told)) { dt = 0.75 * (Tbot - Told); Tnew = Told + dt; } } else if (Htop > Htarget && Tnew > (0.75 * Ttop + 0.25 * Told)) { dt = 0.75 * (Ttop - Told); Tnew = Told + dt; } // Check Max and Min values if (Tnew > Tmax && !ignoreBounds) { setState_conditional_TP(Tmax, p, !doUV); double Hmax = (doUV) ? intEnergy_mass() : enthalpy_mass(); if (Hmax >= Htarget) { if (Htop < Htarget) { Ttop = Tmax; Htop = Hmax; } } else { Tnew = Tmax + 1.0; ignoreBounds = true; } } if (Tnew < Tmin && !ignoreBounds) { setState_conditional_TP(Tmin, p, !doUV); double Hmin = (doUV) ? intEnergy_mass() : enthalpy_mass(); if (Hmin <= Htarget) { if (Hbot > Htarget) { Tbot = Tmin; Hbot = Hmin; } } else { Tnew = Tmin - 1.0; ignoreBounds = true; } } // Try to keep phase within its region of stability // -> Could do a lot better if I calculate the // spinodal value of H. for (int its = 0; its < 10; its++) { Tnew = Told + dt; if (Tnew < Told / 3.0) { Tnew = Told / 3.0; dt = -2.0 * Told / 3.0; } setState_conditional_TP(Tnew, p, !doUV); if (doUV) { Hnew = intEnergy_mass(); Cpnew = cv_mass(); } else { Hnew = enthalpy_mass(); Cpnew = cp_mass(); } if (Cpnew < 0.0) { unstablePhaseNew = true; Tunstable = Tnew; } else { unstablePhaseNew = false; break; } if (unstablePhase == false && unstablePhaseNew == true) { dt *= 0.25; } } if (Hnew == Htarget) { return; } else if (Hnew > Htarget && (Htop < Htarget || Hnew < Htop)) { Htop = Hnew; Ttop = Tnew; } else if (Hnew < Htarget && (Hbot > Htarget || Hnew > Hbot)) { Hbot = Hnew; Tbot = Tnew; } // Convergence in H double Herr = Htarget - Hnew; double acpd = std::max(fabs(cpd), 1.0E-5); double denom = std::max(fabs(Htarget), acpd * dTtol); double HConvErr = fabs((Herr)/denom); if (HConvErr < 0.00001 *dTtol || fabs(dt) < dTtol) { return; } } // We are here when there hasn't been convergence /* * Formulate a detailed error message, since questions seem to * arise often about the lack of convergence. */ string ErrString = "No convergence in 500 iterations\n"; if (doUV) { ErrString += "\tTarget Internal Energy = " + fp2str(Htarget) + "\n"; ErrString += "\tCurrent Specific Volume = " + fp2str(v) + "\n"; ErrString += "\tStarting Temperature = " + fp2str(Tinit) + "\n"; ErrString += "\tCurrent Temperature = " + fp2str(Tnew) + "\n"; ErrString += "\tCurrent Internal Energy = " + fp2str(Hnew) + "\n"; ErrString += "\tCurrent Delta T = " + fp2str(dt) + "\n"; } else { ErrString += "\tTarget Enthalpy = " + fp2str(Htarget) + "\n"; ErrString += "\tCurrent Pressure = " + fp2str(p) + "\n"; ErrString += "\tStarting Temperature = " + fp2str(Tinit) + "\n"; ErrString += "\tCurrent Temperature = " + fp2str(Tnew) + "\n"; ErrString += "\tCurrent Enthalpy = " + fp2str(Hnew) + "\n"; ErrString += "\tCurrent Delta T = " + fp2str(dt) + "\n"; } if (unstablePhase) { ErrString += "\t - The phase became unstable (Cp < 0) T_unstable_last = " + fp2str(Tunstable) + "\n"; } if (doUV) { throw CanteraError("setState_HPorUV (UV)", ErrString); } else { throw CanteraError("setState_HPorUV (HP)", ErrString); } } void ThermoPhase::setState_SP(doublereal Starget, doublereal p, doublereal dTtol) { setState_SPorSV(Starget, p, dTtol, false); } void ThermoPhase::setState_SV(doublereal Starget, doublereal v, doublereal dTtol) { setState_SPorSV(Starget, v, dTtol, true); } void ThermoPhase::setState_SPorSV(doublereal Starget, doublereal p, doublereal dTtol, bool doSV) { doublereal v = 0.0; doublereal dt; if (doSV) { v = p; if (v < 1.0E-300) { throw CanteraError("setState_SPorSV (SV)", "Input specific volume is too small or negative. v = " + fp2str(v)); } setDensity(1.0/v); } else { if (p < 1.0E-300) { throw CanteraError("setState_SPorSV (SP)", "Input pressure is too small or negative. p = " + fp2str(p)); } setPressure(p); } double Tmax = maxTemp() + 0.1; double Tmin = minTemp() - 0.1; // Make sure we are within the temperature bounds at the start // of the iteration double Tnew = temperature(); double Tinit = Tnew; if (Tnew > Tmax) { Tnew = Tmax - 1.0; } else if (Tnew < Tmin) { Tnew = Tmin + 1.0; } if (Tnew != Tinit) { setState_conditional_TP(Tnew, p, !doSV); } double Snew = entropy_mass(); double Cpnew = (doSV) ? cv_mass() : cp_mass(); double Stop = Snew; double Ttop = Tnew; double Sbot = Snew; double Tbot = Tnew; bool ignoreBounds = false; // Unstable phases are those for which // Cp < 0.0. These are possible for cases where // we have passed the spinodal curve. bool unstablePhase = false; double Tunstable = -1.0; bool unstablePhaseNew = false; // Newton iteration for (int n = 0; n < 500; n++) { double Told = Tnew; double Sold = Snew; double cpd = Cpnew; if (cpd < 0.0) { unstablePhase = true; Tunstable = Tnew; } // limit step size to 100 K dt = clip((Starget - Sold)*Told/cpd, -100.0, 100.0); Tnew = Told + dt; // Limit the step size so that we are convergent if ((dt > 0.0 && unstablePhase) || (dt <= 0.0 && !unstablePhase)) { if (Sbot < Starget && Tnew < Tbot) { dt = 0.75 * (Tbot - Told); Tnew = Told + dt; } } else if (Stop > Starget && Tnew > Ttop) { dt = 0.75 * (Ttop - Told); Tnew = Told + dt; } // Check Max and Min values if (Tnew > Tmax && !ignoreBounds) { setState_conditional_TP(Tmax, p, !doSV); double Smax = entropy_mass(); if (Smax >= Starget) { if (Stop < Starget) { Ttop = Tmax; Stop = Smax; } } else { Tnew = Tmax + 1.0; ignoreBounds = true; } } else if (Tnew < Tmin && !ignoreBounds) { setState_conditional_TP(Tmin, p, !doSV); double Smin = entropy_mass(); if (Smin <= Starget) { if (Sbot > Starget) { Tbot = Tmin; Sbot = Smin; } } else { Tnew = Tmin - 1.0; ignoreBounds = true; } } // Try to keep phase within its region of stability // -> Could do a lot better if I calculate the // spinodal value of H. for (int its = 0; its < 10; its++) { Tnew = Told + dt; setState_conditional_TP(Tnew, p, !doSV); Cpnew = (doSV) ? cv_mass() : cp_mass(); Snew = entropy_mass(); if (Cpnew < 0.0) { unstablePhaseNew = true; Tunstable = Tnew; } else { unstablePhaseNew = false; break; } if (unstablePhase == false && unstablePhaseNew == true) { dt *= 0.25; } } if (Snew == Starget) { return; } else if (Snew > Starget && (Stop < Starget || Snew < Stop)) { Stop = Snew; Ttop = Tnew; } else if (Snew < Starget && (Sbot > Starget || Snew > Sbot)) { Sbot = Snew; Tbot = Tnew; } // Convergence in S double Serr = Starget - Snew; double acpd = std::max(fabs(cpd), 1.0E-5); double denom = std::max(fabs(Starget), acpd * dTtol); double SConvErr = fabs((Serr * Tnew)/denom); if (SConvErr < 0.00001 *dTtol || fabs(dt) < dTtol) { return; } } // We are here when there hasn't been convergence /* * Formulate a detailed error message, since questions seem to * arise often about the lack of convergence. */ string ErrString = "No convergence in 500 iterations\n"; if (doSV) { ErrString += "\tTarget Entropy = " + fp2str(Starget) + "\n"; ErrString += "\tCurrent Specific Volume = " + fp2str(v) + "\n"; ErrString += "\tStarting Temperature = " + fp2str(Tinit) + "\n"; ErrString += "\tCurrent Temperature = " + fp2str(Tnew) + "\n"; ErrString += "\tCurrent Entropy = " + fp2str(Snew) + "\n"; ErrString += "\tCurrent Delta T = " + fp2str(dt) + "\n"; } else { ErrString += "\tTarget Entropy = " + fp2str(Starget) + "\n"; ErrString += "\tCurrent Pressure = " + fp2str(p) + "\n"; ErrString += "\tStarting Temperature = " + fp2str(Tinit) + "\n"; ErrString += "\tCurrent Temperature = " + fp2str(Tnew) + "\n"; ErrString += "\tCurrent Entropy = " + fp2str(Snew) + "\n"; ErrString += "\tCurrent Delta T = " + fp2str(dt) + "\n"; } if (unstablePhase) { ErrString += "\t - The phase became unstable (Cp < 0) T_unstable_last = " + fp2str(Tunstable) + "\n"; } if (doSV) { throw CanteraError("setState_SPorSV (SV)", ErrString); } else { throw CanteraError("setState_SPorSV (SP)", ErrString); } } void ThermoPhase::setSpeciesThermo(SpeciesThermo* spthermo) { if (!dynamic_cast(spthermo)) { warn_deprecated("ThermoPhase::setSpeciesThermo", "Use of SpeciesThermo classes other than " "GeneralSpeciesThermo is deprecated."); } if (m_spthermo && m_spthermo != spthermo) { delete m_spthermo; } m_spthermo = spthermo; } SpeciesThermo& ThermoPhase::speciesThermo(int k) { if (!m_spthermo) { throw CanteraError("ThermoPhase::speciesThermo()", "species reference state thermo manager was not set"); } return *m_spthermo; } void ThermoPhase::initThermoFile(const std::string& inputFile, const std::string& id) { XML_Node* fxml = get_XML_File(inputFile); XML_Node* fxml_phase = findXMLPhase(fxml, id); if (!fxml_phase) { throw CanteraError("ThermoPhase::initThermoFile", "ERROR: Can not find phase named " + id + " in file named " + inputFile); } importPhase(*fxml_phase, this); } void ThermoPhase::initThermoXML(XML_Node& phaseNode, const std::string& id) { if (phaseNode.hasChild("state")) { setStateFromXML(phaseNode.child("state")); } setReferenceComposition(0); } void ThermoPhase::setReferenceComposition(const doublereal* const x) { xMol_Ref.resize(m_kk); if (x) { copy(x, x + m_kk, xMol_Ref.begin()); } else { getMoleFractions(&xMol_Ref[0]); } double sum = accumulate(xMol_Ref.begin(), xMol_Ref.end(), -1.0); if (fabs(sum) > 1.0E-11) { throw CanteraError("ThermoPhase::setReferenceComposition", "input mole fractions don't sum to 1.0"); } } void ThermoPhase::getReferenceComposition(doublereal* const x) const { copy(xMol_Ref.begin(), xMol_Ref.end(), x); } void ThermoPhase::initThermo() { // Check to see that there is at least one species defined in the phase if (m_kk == 0) { throw CanteraError("ThermoPhase::initThermo()", "Number of species is equal to zero"); } // Check to see that all of the species thermo objects have been initialized if (!m_spthermo->ready(m_kk)) { throw CanteraError("ThermoPhase::initThermo()", "Missing species thermo data"); } xMol_Ref.resize(m_kk, 0.0); } void ThermoPhase::installSlavePhases(XML_Node* phaseNode) { } bool ThermoPhase::addSpecies(shared_ptr spec) { bool added = Phase::addSpecies(spec); if (added) { spec->thermo->validate(spec->name); m_spthermo->install_STIT(m_kk-1, spec->thermo); } return added; } void ThermoPhase::saveSpeciesData(const size_t k, const XML_Node* const data) { if (m_speciesData.size() < (k + 1)) { m_speciesData.resize(k+1, 0); } m_speciesData[k] = new XML_Node(*data); } const std::vector & ThermoPhase::speciesData() const { if (m_speciesData.size() != m_kk) { throw CanteraError("ThermoPhase::speciesData", "m_speciesData is the wrong size"); } return m_speciesData; } void ThermoPhase::setStateFromXML(const XML_Node& state) { string comp = getChildValue(state,"moleFractions"); if (comp != "") { setMoleFractionsByName(comp); } else { comp = getChildValue(state,"massFractions"); if (comp != "") { setMassFractionsByName(comp); } } if (state.hasChild("temperature")) { double t = getFloat(state, "temperature", "temperature"); setTemperature(t); } if (state.hasChild("pressure")) { double p = getFloat(state, "pressure", "pressure"); setPressure(p); } if (state.hasChild("density")) { double rho = getFloat(state, "density", "density"); setDensity(rho); } } void ThermoPhase::equilibrate(const std::string& XY, const std::string& solver, double rtol, int max_steps, int max_iter, int estimate_equil, int log_level) { if (solver == "auto" || solver == "element_potential") { vector_fp initial_state; saveState(initial_state); writelog("Trying ChemEquil solver\n", log_level); try { ChemEquil E; E.options.maxIterations = max_steps; E.options.relTolerance = rtol; bool use_element_potentials = (estimate_equil == 0); int ret = E.equilibrate(*this, XY.c_str(), use_element_potentials, log_level-1); if (ret < 0) { throw CanteraError("ThermoPhase::equilibrate", "ChemEquil solver failed. Return code: " + int2str(ret)); } setElementPotentials(E.elementPotentials()); writelog("ChemEquil solver succeeded\n", log_level); return; } catch (std::exception& err) { writelog("ChemEquil solver failed.\n", log_level); writelog(err.what(), log_level); restoreState(initial_state); if (solver == "auto") { } else { throw; } } } if (solver == "auto" || solver == "vcs" || solver == "gibbs") { MultiPhase M; M.addPhase(this, 1.0); M.init(); M.equilibrate(XY, solver, rtol, max_steps, max_iter, estimate_equil, log_level); return; } if (solver != "auto") { throw CanteraError("ThermoPhase::equilibrate", "Invalid solver specified: '" + solver + "'"); } } void ThermoPhase::setElementPotentials(const vector_fp& lambda) { size_t mm = nElements(); if (lambda.size() < mm) { throw CanteraError("setElementPotentials", "lambda too small"); } if (!m_hasElementPotentials) { m_lambdaRRT.resize(mm); } scale(lambda.begin(), lambda.end(), m_lambdaRRT.begin(), 1.0/(GasConstant* temperature())); m_hasElementPotentials = true; } bool ThermoPhase::getElementPotentials(doublereal* lambda) const { if (m_hasElementPotentials) { scale(m_lambdaRRT.begin(), m_lambdaRRT.end(), lambda, GasConstant* temperature()); } return m_hasElementPotentials; } void ThermoPhase::getdlnActCoeffdlnN(const size_t ld, doublereal* const dlnActCoeffdlnN) { for (size_t m = 0; m < m_kk; m++) { for (size_t k = 0; k < m_kk; k++) { dlnActCoeffdlnN[ld * k + m] = 0.0; } } return; } void ThermoPhase::getdlnActCoeffdlnN_numderiv(const size_t ld, doublereal* const dlnActCoeffdlnN) { double deltaMoles_j = 0.0; double pres = pressure(); /* * Evaluate the current base activity coefficients if necessary */ std::vector ActCoeff_Base(m_kk); getActivityCoefficients(DATA_PTR(ActCoeff_Base)); std::vector Xmol_Base(m_kk); getMoleFractions(DATA_PTR(Xmol_Base)); // Make copies of ActCoeff and Xmol_ for use in taking differences std::vector ActCoeff(m_kk); std::vector Xmol(m_kk); double v_totalMoles = 1.0; double TMoles_base = v_totalMoles; /* * Loop over the columns species to be deltad */ for (size_t j = 0; j < m_kk; j++) { /* * Calculate a value for the delta moles of species j * -> NOte Xmol_[] and Tmoles are always positive or zero * quantities. * -> experience has shown that you always need to make the deltas greater than needed to * change the other mole fractions in order to capture some effects. */ double moles_j_base = v_totalMoles * Xmol_Base[j]; deltaMoles_j = 1.0E-7 * moles_j_base + v_totalMoles * 1.0E-13 + 1.0E-150; /* * Now, update the total moles in the phase and all of the * mole fractions based on this. */ v_totalMoles = TMoles_base + deltaMoles_j; for (size_t k = 0; k < m_kk; k++) { Xmol[k] = Xmol_Base[k] * TMoles_base / v_totalMoles; } Xmol[j] = (moles_j_base + deltaMoles_j) / v_totalMoles; /* * Go get new values for the activity coefficients. * -> Note this calls setState_PX(); */ setState_PX(pres, DATA_PTR(Xmol)); getActivityCoefficients(DATA_PTR(ActCoeff)); /* * Calculate the column of the matrix */ double* const lnActCoeffCol = dlnActCoeffdlnN + ld * j; for (size_t k = 0; k < m_kk; k++) { lnActCoeffCol[k] = (2*moles_j_base + deltaMoles_j) *(ActCoeff[k] - ActCoeff_Base[k]) / ((ActCoeff[k] + ActCoeff_Base[k]) * deltaMoles_j); } /* * Revert to the base case Xmol_, v_totalMoles */ v_totalMoles = TMoles_base; Xmol = Xmol_Base; } /* * Go get base values for the activity coefficients. * -> Note this calls setState_TPX() again; * -> Just wanted to make sure that cantera is in sync * with VolPhase after this call. */ setState_PX(pres, DATA_PTR(Xmol_Base)); } std::string ThermoPhase::report(bool show_thermo, doublereal threshold) const { char p[800]; string s = ""; try { if (name() != "") { sprintf(p, " \n %s:\n", name().c_str()); s += p; } sprintf(p, " \n temperature %12.6g K\n", temperature()); s += p; sprintf(p, " pressure %12.6g Pa\n", pressure()); s += p; sprintf(p, " density %12.6g kg/m^3\n", density()); s += p; sprintf(p, " mean mol. weight %12.6g amu\n", meanMolecularWeight()); s += p; doublereal phi = electricPotential(); if (phi != 0.0) { sprintf(p, " potential %12.6g V\n", phi); s += p; } if (show_thermo) { sprintf(p, " \n"); s += p; sprintf(p, " 1 kg 1 kmol\n"); s += p; sprintf(p, " ----------- ------------\n"); s += p; sprintf(p, " enthalpy %12.5g %12.4g J\n", enthalpy_mass(), enthalpy_mole()); s += p; sprintf(p, " internal energy %12.5g %12.4g J\n", intEnergy_mass(), intEnergy_mole()); s += p; sprintf(p, " entropy %12.5g %12.4g J/K\n", entropy_mass(), entropy_mole()); s += p; sprintf(p, " Gibbs function %12.5g %12.4g J\n", gibbs_mass(), gibbs_mole()); s += p; sprintf(p, " heat capacity c_p %12.5g %12.4g J/K\n", cp_mass(), cp_mole()); s += p; try { sprintf(p, " heat capacity c_v %12.5g %12.4g J/K\n", cv_mass(), cv_mole()); s += p; } catch (CanteraError& err) { err.save(); sprintf(p, " heat capacity c_v \n"); s += p; } } vector_fp x(m_kk); vector_fp y(m_kk); vector_fp mu(m_kk); getMoleFractions(&x[0]); getMassFractions(&y[0]); getChemPotentials(&mu[0]); doublereal rt = GasConstant * temperature(); int nMinor = 0; doublereal xMinor = 0.0; doublereal yMinor = 0.0; if (show_thermo) { sprintf(p, " \n X " " Y Chem. Pot. / RT \n"); s += p; sprintf(p, " ------------- " "------------ ------------\n"); s += p; for (size_t k = 0; k < m_kk; k++) { if (x[k] >= threshold) { if (x[k] > SmallNumber) { sprintf(p, "%18s %12.6g %12.6g %12.6g\n", speciesName(k).c_str(), x[k], y[k], mu[k]/rt); } else { sprintf(p, "%18s %12.6g %12.6g \n", speciesName(k).c_str(), x[k], y[k]); } s += p; } else { nMinor++; xMinor += x[k]; yMinor += y[k]; } } } else { sprintf(p, " \n X " " Y\n"); s += p; sprintf(p, " -------------" " ------------\n"); s += p; for (size_t k = 0; k < m_kk; k++) { if (x[k] >= threshold) { sprintf(p, "%18s %12.6g %12.6g\n", speciesName(k).c_str(), x[k], y[k]); s += p; } else { nMinor++; xMinor += x[k]; yMinor += y[k]; } } } if (nMinor) { sprintf(p, " [%+5i minor] %12.6g %12.6g\n", nMinor, xMinor, yMinor); s += p; } } catch (CanteraError& err) { err.save(); } return s; } void ThermoPhase::reportCSV(std::ofstream& csvFile) const { int tabS = 15; int tabM = 30; csvFile.precision(8); vector_fp X(nSpecies()); getMoleFractions(&X[0]); std::vector pNames; std::vector data; getCsvReportData(pNames, data); csvFile << setw(tabS) << "Species,"; for (size_t i = 0; i < pNames.size(); i++) { csvFile << setw(tabM) << pNames[i] << ","; } csvFile << endl; for (size_t k = 0; k < nSpecies(); k++) { csvFile << setw(tabS) << speciesName(k) + ","; if (X[k] > SmallNumber) { for (size_t i = 0; i < pNames.size(); i++) { csvFile << setw(tabM) << data[i][k] << ","; } csvFile << endl; } else { for (size_t i = 0; i < pNames.size(); i++) { csvFile << setw(tabM) << 0 << ","; } csvFile << endl; } } } void ThermoPhase::getCsvReportData(std::vector& names, std::vector& data) const { names.clear(); data.assign(10, vector_fp(nSpecies())); names.push_back("X"); getMoleFractions(&data[0][0]); names.push_back("Y"); getMassFractions(&data[1][0]); names.push_back("Chem. Pot (J/kmol)"); getChemPotentials(&data[2][0]); names.push_back("Activity"); getActivities(&data[3][0]); names.push_back("Act. Coeff."); getActivityCoefficients(&data[4][0]); names.push_back("Part. Mol Enthalpy (J/kmol)"); getPartialMolarEnthalpies(&data[5][0]); names.push_back("Part. Mol. Entropy (J/K/kmol)"); getPartialMolarEntropies(&data[6][0]); names.push_back("Part. Mol. Energy (J/kmol)"); getPartialMolarIntEnergies(&data[7][0]); names.push_back("Part. Mol. Cp (J/K/kmol"); getPartialMolarCp(&data[8][0]); names.push_back("Part. Mol. Cv (J/K/kmol)"); getPartialMolarVolumes(&data[9][0]); } }