BUGFIX: Uninitialised member variables
[foam-extend-3.2.git] / applications / utilities / postProcessing / dataConversion / foamToGMV / gmvOutputSpray.H
blob3c4f629235aa0bd0dca08fb69793a397b0c076a1
1 gmvFile << "tracers " << particles.size() << nl;
2 for
4     Cloud<passiveParticle>::iterator elmnt = particles.begin();
5     elmnt != particles.end();
6     ++elmnt
9     gmvFile << elmnt().position().x() << " ";
11 gmvFile << nl;
12 for
14     Cloud<passiveParticle>::iterator elmnt = particles.begin();
15     elmnt != particles.end();
16     ++elmnt
19     gmvFile << elmnt().position().y() << " ";
21 gmvFile << nl;
22 for
24     Cloud<passiveParticles>::iterator elmnt = particles.begin();
25     elmnt != particles.end();
26     ++elmnt
29     gmvFile << elmnt().position().z() << " ";
31 gmvFile << nl;
33 forAll(lagrangianScalarNames, i)
35     word name = lagrangianScalarNames[i];
37     IOField<scalar> s
38     (
39         IOobject
40         (
41             name,
42             runTime.timeName(),
43             cloud::prefix,
44             mesh,
45             IOobject::MUST_READ,
46             IOobject::NO_WRITE
47         )
48     );
50     if (s.size())
51     {
52         gmvFile << name  << nl;
54         for (label n = 0; n < s.size(); n++)
55         {
56             gmvFile << s[n] << token::SPACE;
57         }
58         gmvFile << nl;
59     }
65 gmvFile << "endtrace"<< nl;