getPatchFieldTensor.H
Go to the documentation of this file.
1 label patchi = which_part - 2;
2 
4 {
5  return Z_UNDEF;
6 }
7 
8 typeIOobject<volTensorField> fieldObjectPtr
9 (
11  runTime.name(),
12  mesh,
13  IOobject::NO_READ
14 );
15 
16 if (!fieldObjectPtr.headerOk())
17 {
18  return Z_UNDEF;
19 }
20 
21 IOobject fieldObject
22 (
24  runTime.name(),
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 }
label n
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
typeIOobject< volTensorField > fieldObjectPtr(fieldNames[var2field[nVar]], runTime.name(), mesh, IOobject::NO_READ)
const tensorField & tf
volTensorField sf(fieldObject, mesh)
IOobject fieldObject(fieldNames[var2field[nVar]], runTime.name(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE)
const polyBoundaryMesh & bMesh
label patchi
static int Num_variables
Definition: globalFoam.H:20
static fvMesh * meshPtr
Definition: globalFoam.H:52
static label nSprayVariables
Definition: globalFoam.H:24
static List< word > fieldNames
Definition: globalFoam.H:46
static label var2field[maxNames]
Definition: globalFoam.H:49
label nPoints
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
VolField< tensor > volTensorField
Definition: volFieldsFwd.H:65
Field< tensor > tensorField
Specialisation of Field<T> for tensor.