BUGFIX: Uninitialised member variables
[foam-extend-3.2.git] / applications / solvers / solidMechanics / icoFsiElasticNonLinULSolidFoam / createStressPointMesh.H
blobe51f7fdf583e720683b72f469fd8f6b26646e543
2 // Create point stress mesh for interpolation
3 pointMesh pStressMesh(stressMesh);
5 pointPatchInterpolation patchPointInterpolator(stressMesh);
8 // Create point displacement field (check fixedValue patches)
10 wordList types
12     pStressMesh.boundary().size(), 
13     calculatedFvPatchVectorField::typeName
16 // wordList types = DU.boundaryField().types();
18 forAll(DU.boundaryField().types(), patchI)
20     if 
21     (
22         DU.boundaryField().types()[patchI] 
23      == fixedValueFvPatchVectorField::typeName
24     )
25     {
26         types[patchI] = fixedValueFvPatchVectorField::typeName;
27     }
30 pointVectorField pointDU
32     IOobject
33     (
34         "pointDU",
35         runTime.timeName(),
36         stressMesh
37     ),
38     pStressMesh,
39     dimensionedVector("zero", dimLength, vector::zero),
40     types