Reply To: Storing velocity data in csv file
Due to recent bot attacks we have changed the sign-up process. If you want to participate in our forum, first register on this website and then send a message via our contact form.
› Forums › 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();
}
