Skip to content

Reply To: Regarding dimensions of the domain and simulation killing in Cylinder3D

OpenLB – Open Source Lattice Boltzmann Code Forums on OpenLB General Topics Regarding dimensions of the domain and simulation killing in Cylinder3D Reply To: Regarding dimensions of the domain and simulation killing in Cylinder3D

#8933

ok the 2nd problem is solved for now. Please tell me any solution for the 1st problem I tried like this in the code:
void PrepareGeometry //
// existing code
//Added
// Increase the Y-axis length by 50%
extend[1] = 1.5 * extend[1];
// Removes all not needed boundary voxels outside the surface
superGeometry.clean();
superGeometry.checkForErrors();

superGeometry.print();

clout << “Prepare Geometry … OK” << std::endl;
}

It didn’t worked out. Can you please tell me how to change the dimenssions? Do I have to edit the code or I have to change the stl file?