5a8808465a
Just created dynamicFvMesh from dynamicMeshDict and runs mesh updates in a time loop. Useful for testing all kinds of dynamicMeshes
13 lines
270 B
C++
13 lines
270 B
C++
Info<< "Reading field alpha\n" << endl;
|
|
volScalarField alpha
|
|
(
|
|
IOobject
|
|
(
|
|
"alpha",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|