Dear OpenLB Team,
I have seen the nozzle3d problem, but I need to use “SMAGORINSKY” model in Cylinder2D also. Here some things that I found:
“Dynamics”
// Choose your turbulent model of choice
//#define USE_RLB
#define USE_SMAGORINSKY //default
//#define USE_CONSISTENT_STRAIN_SMAGORINSKY
//#define USE_SHEAR_SMAGORINSKY
//#define USE_KRAUSE
#ifdef USE_SHEAR_SMAGORINSKY
using DESCRIPTOR = D3Q19<AV_SHEAR>;
#else
using DESCRIPTOR = D3Q19<>;
#endif
and the other part is the “void prepareLattice” which i think I have to change in the Cylinder2D code. Should I have to change the Cylinder2D code like this? Other than the “Dynamics” or the “void prepareLattice” , do I need to change any other part of the code ? Please tell me.
Thank you