*** empty log message ***
This commit is contained in:
parent
1b6e12aeaf
commit
fb2a2d81d9
3 changed files with 7 additions and 4 deletions
|
|
@ -1,8 +1,6 @@
|
|||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Tutorial 7: Thermodynamic Properties
|
||||
%
|
||||
% Tutorial 7: Thermodynamic Properties
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
help tut7
|
||||
|
||||
% A variety of thermodynamic property methods are provided.
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue