| 82 | // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // |
| 83 | |
| 84 | bool Foam::combustionModel::read() |
| 85 | { |
| 86 | if (regIOobject::read()) |
| 87 | { |
| 88 | this->lookup("active") >> active_; |
| 89 | coeffs_ = optionalSubDict(modelType_ + "Coeffs"); |
| 90 | return true; |
| 91 | } |
| 92 | else |
| 93 | { |
| 94 | return false; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | |
| 99 | // ************************************************************************* // |
no test coverage detected