Files
OpenFOAM-12/applications/utilities/postProcessing/graphics/ensightFoamReader/getLagrangianVector.H
Henry Weller ed7e703040 Time::timeName(): no longer needed, calls replaced by name()
The timeName() function simply returns the dimensionedScalar::name() which holds
the user-time name of the current time and now that timeName() is no longer
virtual the dimensionedScalar::name() can be called directly.  The timeName()
function implementation is maintained for backward-compatibility.
2022-11-30 15:53:51 +00:00

47 lines
890 B
C++

// Not sure if this is necessary anymore
nVar -= Num_variables - nSprayVariables + lagrangianScalarNames.size();
if (nVar >= 0)
{
word name = lagrangianVectorNames[nVar];
IOField<vector> v
(
IOobject
(
name,
runTime.name(),
cloud::prefix,
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE
)
);
if (v.size())
{
forAll(v, n)
{
if (component == 0)
{
var_array[n+1] = v[n].x();
}
else if (component == 1)
{
var_array[n+1] = v[n].y();
}
else if (component == 2)
{
var_array[n+1] = v[n].z();
}
}
}
}
else
{
// Info<< "getLagrangianVector: nVar = " << nVar << endl;
return Z_UNDEF;
}