The various free functions are deprecated, along with the now unnecessary headers 'equil.h' and 'equilibrium.h'.
17 lines
517 B
C
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
|
|
|
|
|