Skip to content
Snippets Groups Projects
Commit eea37cfc authored by Mark Olesen's avatar Mark Olesen
Browse files

chemistryModel: protected write access to reaction-rates and times

  - for multi-chemistry models or zoned chemistry models
parent 8a658ee0
Branches
Tags
No related merge requests found
......@@ -105,6 +105,23 @@ private:
//- Disallow default bitwise assignment
void operator=(const chemistryModel&);
protected:
// Protected Member Functions
//- Write access to chemical source terms
// (eg, for multi-chemistry model)
PtrList<scalarField>& RR()
{
return RR_;
}
//- Return the latest estimation of integration step
// (eg, for multi-chemistry model)
scalarField& deltaTChem()
{
return deltaTChem_;
}
public:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment