Reply To: Smagorinsky method in AD lattice
OpenLB – Open Source Lattice Boltzmann Code › Forums › on OpenLB › General Topics › Smagorinsky method in AD lattice › Reply To: Smagorinsky method in AD lattice
Hello,
you can couple turbulent NS simulation with AD using special coupler and AD dynamics.
For AD lattice you can use the following descriptor and dynamics:
using ADDESCRIPTOR = D3Q7
using MOMENTA = momenta::AdvectionDiffusionBulkTuple;
using ADBulkDynamics = dynamics::Tuple
the coupler is declared as following:
SuperLatticeCoupling coupling(
LESADECoupling
names::NavierStokes{}, sLatticeNS,
names::Concentration0{}, sLatticeAD);
coupling.setParameter
coupling.setParameter
coupling.setParameter
coupling.setParameter
For the NS lattice you can apply standard SmagorinskyBGKdynamics.
Best wishes
Fedor