mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
CrankNicolsonDdtScheme, backwardDdtScheme: Ensure V00 is available for moving meshes
This commit is contained in:
@ -200,7 +200,11 @@ public:
|
||||
ocCoeff_(1.0)
|
||||
{
|
||||
// Ensure the old-old-time cell volumes are available
|
||||
mesh.V00();
|
||||
// for moving meshes
|
||||
if (mesh.moving())
|
||||
{
|
||||
mesh.V00();
|
||||
}
|
||||
}
|
||||
|
||||
//- Construct from mesh and Istream
|
||||
@ -220,7 +224,11 @@ public:
|
||||
}
|
||||
|
||||
// Ensure the old-old-time cell volumes are available
|
||||
mesh.V00();
|
||||
// for moving meshes
|
||||
if (mesh.moving())
|
||||
{
|
||||
mesh.V00();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -91,7 +91,11 @@ public:
|
||||
ddtScheme<Type>(mesh)
|
||||
{
|
||||
// Ensure the old-old-time cell volumes are available
|
||||
mesh.V00();
|
||||
// for moving meshes
|
||||
if (mesh.moving())
|
||||
{
|
||||
mesh.V00();
|
||||
}
|
||||
}
|
||||
|
||||
//- Construct from mesh and Istream
|
||||
@ -100,7 +104,11 @@ public:
|
||||
ddtScheme<Type>(mesh, is)
|
||||
{
|
||||
// Ensure the old-old-time cell volumes are available
|
||||
mesh.V00();
|
||||
// for moving meshes
|
||||
if (mesh.moving())
|
||||
{
|
||||
mesh.V00();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user