14 lines
259 B
C++
14 lines
259 B
C++
|
// Create displacement field
|
||
|
tetPointVectorField U
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
"U",
|
||
|
runTime.timeName(),
|
||
|
mesh,
|
||
|
IOobject::MUST_READ,
|
||
|
IOobject::AUTO_WRITE
|
||
|
),
|
||
|
tetMesh
|
||
|
);
|