mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Registering region models to time instead of primary mesh
This commit is contained in:
@ -341,7 +341,7 @@ Foam::regionModels::regionModel::regionModel(const fvMesh& mesh)
|
||||
(
|
||||
"regionModelProperties",
|
||||
mesh.time().constant(),
|
||||
mesh,
|
||||
mesh.time(),
|
||||
IOobject::NO_READ,
|
||||
IOobject::NO_WRITE
|
||||
)
|
||||
@ -376,7 +376,7 @@ Foam::regionModels::regionModel::regionModel
|
||||
(
|
||||
regionType + "Properties",
|
||||
mesh.time().constant(),
|
||||
mesh,
|
||||
mesh.time(),
|
||||
IOobject::MUST_READ,
|
||||
IOobject::NO_WRITE
|
||||
)
|
||||
@ -421,7 +421,7 @@ Foam::regionModels::regionModel::regionModel
|
||||
(
|
||||
regionType + "Properties",
|
||||
mesh.time().constant(),
|
||||
mesh,
|
||||
mesh.time(),
|
||||
IOobject::NO_READ,
|
||||
IOobject::NO_WRITE,
|
||||
true
|
||||
|
||||
Reference in New Issue
Block a user