This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/utilities/postProcessing/graphics/newEnsightFoamReader/getSecondMeshPatchFieldVector.H
2010-08-25 22:42:57 +01:00

86 lines
1.7 KiB
C

label secondMeshPartNum = nPatches+2;
if(sprayPtr)
{
secondMeshPartNum += 1;
}
label patchi = which_part - secondMeshPartNum - 1;
label offset = Num_variables - nSecondMeshVariables - nFaMeshVariables;
if (nVar < offset || nVar >= (Num_variables-nFaMeshVariables))
{
return Z_UNDEF;
}
IOobject fieldObjectPtr
(
secondMeshFieldNames[secondMeshVar2field[nVar-offset]],
runTime.timeName(),
*secondMeshPtr,
IOobject::NO_READ
);
if (!fieldObjectPtr.headerOk())
{
return Z_UNDEF;
}
IOobject fieldObject
(
secondMeshFieldNames[secondMeshVar2field[nVar-offset]],
runTime.timeName(),
*secondMeshPtr,
IOobject::MUST_READ,
IOobject::NO_WRITE
);
volVectorField sf
(
fieldObject,
*secondMeshPtr
);
const vectorField& sfb = sf.boundaryField()[patchi];
const polyBoundaryMesh& bMesh = secondMeshPtr->boundaryMesh();
if (which_type == Z_TRI03)
{
label counter = 1;
for (label facei=0; facei<sfb.size(); facei++)
{
label nPoints = bMesh[patchi][facei].size();
if (nPoints == 3)
{
var_array[counter++] = sfb[facei][component];
}
}
}
if (which_type == Z_QUA04)
{
label counter = 1;
for (label facei=0; facei<sfb.size(); facei++)
{
label nPoints = bMesh[patchi][facei].size();
if (nPoints == 4)
{
var_array[counter++] = sfb[facei][component];
}
}
}
if (which_type == Z_NSIDED)
{
label counter = 1;
for (label facei=0; facei<sfb.size(); facei++)
{
label nPoints = bMesh[patchi][facei].size();
if ((nPoints != 3) && (nPoints != 4))
{
var_array[counter++] = sfb[facei][component];
}
}
}