How we define the volscalarField
in OpenFOAM.
In volFieldsFwd.H
1 |
|
It can be seen here, typedef GeometricField<scalar, fvPatchField, volMesh> volScalarField;
, the volScalarField
is actually the specialized template class of GeometricField
.
How we define the volscalarField
in OpenFOAM.
1 |
|
It can be seen here, typedef GeometricField<scalar, fvPatchField, volMesh> volScalarField;
, the volScalarField
is actually the specialized template class of GeometricField
.