Here I want to share something about IOobject constructors which is used in the following objects in radiationModelNew.C:
1 | IOobject radIO |
and radiationModel.C
1 | Foam::IOobject Foam::radiationModel::createIOobject(const fvMesh& mesh) const |
They both use the constructor in IOobject.C:
1 | Foam::IOobject::IOobject |
The readOption and writeOption are both enum member in the IOobject class. For example, in IOobject.H
1 | //- Enumeration defining the read options |