*** empty log message ***

This commit is contained in:
Dave Goodwin 2004-05-30 04:05:01 +00:00
parent 1b6e12aeaf
commit fb2a2d81d9
3 changed files with 7 additions and 4 deletions

View file

@ -1,8 +1,6 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Tutorial 7: Thermodynamic Properties
%
% Tutorial 7: Thermodynamic Properties
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
help tut7
% A variety of thermodynamic property methods are provided.

View file

@ -90,6 +90,7 @@ namespace Cantera {
/// Set the criteria for grid refinement.
void setRefineCriteria(int dom = -1, doublereal ratio = 10.0,
doublereal slope = 0.8, doublereal curve = 0.8, doublereal prune = -0.1);
void setMaxGridPoints(int dom = -1, int npoints = 300);
void restore(string fname, string id);
void getInitialSoln();

View file

@ -33,6 +33,10 @@ namespace Cantera {
return (m_keep[j] != -1); // m_keep.find(j) != m_keep.end();
}
double value(const double* x, int i, int j);
double maxRatio() { return m_ratio; }
double maxDelta() { return m_slope; }
double maxSlope() { return m_curve; }
double prune() { return m_prune; }
protected: