Reply To: Storing velocity data in csv file
OpenLB – Open Source Lattice Boltzmann Code › Forums › on OpenLB › General Topics › Storing velocity data in csv file › Reply To: Storing velocity data in csv file
July 1, 2021 at 8:57 pm
#5776
achodankar
Participant
The code snippet is called in the main function while timestepping:
for (std::size_t iT = 0; iT < converter.getLatticeTime(maxPhysT)+10; ++iT) {
particle.simulateTimestep(“verlet”);
getResults(sLattice, converter, iT, superGeometry, timer, circle1, circle2);
sLattice.collideAndStream();
superExt1.communicate();
superExt2.communicate();
superExt3.communicate();
}