From 6154e1b4bd417e98a8c94a195794403d633fbd18 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sun, 19 Feb 2017 16:50:40 -0500 Subject: [PATCH] Remove unused list of thermo models from ThermoFactory --- src/thermo/ThermoFactory.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/thermo/ThermoFactory.cpp b/src/thermo/ThermoFactory.cpp index 686ad6374..155fcb335 100644 --- a/src/thermo/ThermoFactory.cpp +++ b/src/thermo/ThermoFactory.cpp @@ -50,18 +50,6 @@ namespace Cantera ThermoFactory* ThermoFactory::s_factory = 0; std::mutex ThermoFactory::thermo_mutex; -//! Define the string name of the ThermoPhase types that are handled by this factory routine -static string _types[] = {"IdealGas", "Incompressible", - "Surface", "Edge", "Metal", "StoichSubstance", - "PureFluid", "LatticeSolid", "Lattice", - "HMW", "IdealSolidSolution", "DebyeHuckel", - "IdealMolalSolution", "IdealGasVPSS", "IdealSolnVPSS", - "MineralEQ3", "MetalSHEelectrons", "Margules", "PhaseCombo_Interaction", - "IonsFromNeutralMolecule", "FixedChemPot", "MolarityIonicVPSSTP", - "MixedSolventElectrolyte", "Redlich-Kister", "RedlichKwong", - "RedlichKwongMFTP", "MaskellSolidSolnPhase" - }; - ThermoFactory::ThermoFactory() { reg("IdealGas", []() { return new IdealGasPhase(); });