Dear OpenLB team,
I cannot find the radius and dimensions of the domain in the “Cylinder3D” code as they are well defined in the Cylinder2D code. 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?
Please tell me any solution as I tried like this in the “Cylinder3D” 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.
Thank you