cantera/include/cantera/equilibrium.h
Ray Speth 39b751d655 [Equil] Always use the member function versions of 'equilibrate'
The various free functions are deprecated, along with the now unnecessary
headers 'equil.h' and 'equilibrium.h'.
2014-11-08 00:53:45 +00:00

17 lines
517 B
C

/**
* @file equilibrium.h
* cxx layer - Header file providing support for chemical equilibrium calculations
* (see \ref equilfunctions)
* @deprecated Equilibrium solvers are directly available through class
* Cantera::ThermoPhase and class Cantera::MultiPhase
*/
#ifndef CT_EQUIL_INCL
#define CT_EQUIL_INCL
#pragma message "cantera/equil/equil.h is deprecated"
#include "equil/equil.h"
#include "equil/ChemEquil.h"
#include "equil/MultiPhaseEquil.h"
#include "equil/vcs_MultiPhaseEquil.h"
#endif