Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / applications / utilities / postProcessing / dataConversion / foamToGMV / gmvOutputParcels.H
blob196169f894d461951c3bfc72498704af261e7c75
1 gmvFile << "tracers " << particles.size() << nl;
2 for
4     discretePhase::iterator elmnt = particles.begin();
5     elmnt != particles.end();
6     ++elmnt
9     gmvFile << elmnt().position().x() << " ";
11 gmvFile << nl;
12 for
14     discretePhase::iterator elmnt = particles.begin();
15     elmnt != particles.end();
16     ++elmnt
19     gmvFile << elmnt().position().y() << " ";
21 gmvFile << nl;
22 for
24     discretePhase::iterator elmnt = particles.begin();
25     elmnt != particles.end();
26     ++elmnt
29     gmvFile << elmnt().position().z() << " ";
31 gmvFile << nl;
33 gmvFile << "U" << nl;
34 for
36     discretePhase::iterator elmnt = particles.begin();
37     elmnt != particles.end();
38     ++elmnt
41     gmvFile << elmnt().velocity().x() << " ";
43 gmvFile << nl;
44 gmvFile << "V" << nl;
45 for
47     discretePhase::iterator elmnt = particles.begin();
48     elmnt != particles.end();
49     ++elmnt
52     gmvFile << elmnt().velocity().y() << " ";
54 gmvFile << nl;
56 gmvFile << "W" << nl;
57 for
59     discretePhase::iterator elmnt = particles.begin();
60     elmnt != particles.end();
61     ++elmnt
64     gmvFile << elmnt().velocity().z() << " ";
66 gmvFile << nl;
68 gmvFile << "Diam" << nl;
70 for
72     discretePhase::iterator elmnt = particles.begin();
73     elmnt != particles.end();
74     ++elmnt
77     gmvFile << elmnt().d() << " ";
81 gmvFile << "endtrace"<< nl;