mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
This makes the initialisation order of dynamicMesh consistent with plain ones using the virtual mechanism. It does not solve the cyclicACMI construction order yet.
7 lines
176 B
C
7 lines
176 B
C
Info<< "Create mesh for time = "
|
|
<< runTime.timeName() << nl << endl;
|
|
|
|
autoPtr<dynamicFvMesh> meshPtr(dynamicFvMesh::New(args, runTime));
|
|
|
|
dynamicFvMesh& mesh = meshPtr();
|