getPatchFieldTensor.H
Go to the documentation of this file.
1 label patchi = which_part - 2;
2 
4 {
5  return Z_UNDEF;
6 }
7 
8 IOobject fieldObjectPtr
9 (
10  fieldNames[var2field[nVar]],
11  runTime.timeName(),
12  mesh,
13  IOobject::NO_READ
14 );
15 
16 if (!fieldObjectPtr.typeHeaderOk<volTensorField>(true))
17 {
18  return Z_UNDEF;
19 }
20 
21 IOobject fieldObject
22 (
23  fieldNames[var2field[nVar]],
24  runTime.timeName(),
25  mesh,
26  IOobject::MUST_READ,
27  IOobject::NO_WRITE
28 );
29 
31 (
33  mesh
34 );
35 
36 const tensorField& tf = sf.boundaryField()[patchi];
37 const polyBoundaryMesh& bMesh = meshPtr->boundaryMesh();
38 
39 if (which_type == Z_TRI03)
40 {
41  label counter = 1;
42  forAll(tf, n)
43  {
44  label nPoints = bMesh[patchi][n].size();
45  if (nPoints == 3)
46  {
47  #include "tensorConversion.H"
48  }
49  }
50 }
51 
52 if (which_type == Z_QUA04)
53 {
54  label counter = 1;
55  forAll(tf, n)
56  {
57  label nPoints = bMesh[patchi][n].size();
58  if (nPoints == 4)
59  {
60  #include "tensorConversion.H"
61  }
62  }
63 }
64 
65 if (which_type == Z_NSIDED)
66 {
67  label counter = 1;
68  forAll(tf, n)
69  {
70  label nPoints = bMesh[patchi][n].size();
71  if ((nPoints != 3) && (nPoints != 4))
72  {
73  #include "tensorConversion.H"
74  }
75  }
76 }
IOobject fieldObjectPtr(fieldNames[var2field[nVar]], runTime.timeName(), mesh, IOobject::NO_READ)
static int Num_variables
Definition: globalFoam.H:20
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
GeometricField< tensor, fvPatchField, volMesh > volTensorField
Definition: volFieldsFwd.H:62
static fvMesh * meshPtr
Definition: globalFoam.H:52
engineTime & runTime
IOobject fieldObject(fieldNames[var2field[nVar]], runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE)
static List< word > fieldNames
Definition: globalFoam.H:46
dynamicFvMesh & mesh
static label nSprayVariables
Definition: globalFoam.H:24
volTensorField sf(fieldObject, mesh)
label nPoints
Field< tensor > tensorField
Specialisation of Field<T> for tensor.
label patchi
label n
static label var2field[maxNames]
Definition: globalFoam.H:49