51 lines
929 B
C
51 lines
929 B
C
gmvFile << "tracers " << particles.size() << nl;
|
|
forAllConstIter(Cloud<passiveParticle>, particles, iter)
|
|
{
|
|
gmvFile << iter().position().x() << " ";
|
|
}
|
|
gmvFile << nl;
|
|
|
|
forAllConstIter(Cloud<passiveParticle>, particles, iter)
|
|
{
|
|
gmvFile << iter().position().y() << " ";
|
|
}
|
|
gmvFile << nl;
|
|
|
|
forAllConstIter(Cloud<passiveParticle>, particles, iter)
|
|
{
|
|
gmvFile << iter().position().z() << " ";
|
|
}
|
|
gmvFile << nl;
|
|
|
|
forAll(lagrangianScalarNames, i)
|
|
{
|
|
word name = lagrangianScalarNames[i];
|
|
|
|
IOField<scalar> s
|
|
(
|
|
IOobject
|
|
(
|
|
name,
|
|
runTime.timeName(),
|
|
cloud::prefix,
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE
|
|
)
|
|
);
|
|
|
|
if (s.size())
|
|
{
|
|
gmvFile << name << nl;
|
|
|
|
forAll(s, n)
|
|
{
|
|
gmvFile << s[n] << token::SPACE;
|
|
}
|
|
gmvFile << nl;
|
|
}
|
|
|
|
}
|
|
|
|
gmvFile << "endtrace"<< nl;
|