Reply To: Error When Using Checkpoint for Multi-Component
OpenLB – Open Source Lattice Boltzmann Code › Forums › on OpenLB › General Topics › Error When Using Checkpoint for Multi-Component › Reply To: Error When Using Checkpoint for Multi-Component
November 30, 2024 at 10:28 am
#9580
mathias
Keymaster
You should check if your file is there similar to
// checks whether there is already data of the fluid from an earlier calculation
if ( !( superLattice.load( “fluidSolution_N”+std::to_string(N) ) ) ) {
to avoid the segmentation faults since in your code it tries to read but without fall back. Have a look at the bifurkation example.