fvMesh: Separated fvMesh::move() and fvMesh::update()
fvMesh::update() now executes at the beginning of the time-step, before time is incremented and handles topology change, mesh to mesh mapping and redistribution without point motion. Following each of these mesh changes fields are mapped from the previous mesh state to new mesh state in a conservative manner. These mesh changes not occur at most once per time-step. fvMesh::move() is executed after time is incremented and handles point motion mesh morphing during the time-step in an Arbitrary Lagrangian Eulerian approach requiring the mesh motion flux to match the cell volume change. fvMesh::move() can be called any number of times during the time-step to allow iterative update of the coupling between the mesh motion and field solution.
This commit is contained in:
@ -31,6 +31,7 @@ boundaryField
|
||||
{
|
||||
type prghTotalPressure;
|
||||
U U.vapor;
|
||||
phi phi.vapor;
|
||||
rho thermo:rho.vapor;
|
||||
p0 uniform 1e5;
|
||||
value $internalField;
|
||||
|
||||
@ -31,6 +31,7 @@ boundaryField
|
||||
{
|
||||
type prghTotalPressure;
|
||||
U U.vapor;
|
||||
phi phi.vapor;
|
||||
rho thermo:rho.vapor;
|
||||
p0 uniform 1e5;
|
||||
value $internalField;
|
||||
|
||||
Reference in New Issue
Block a user