Skip to content

Reply To: Thermal Poiseuille 2D.

Due to recent bot attacks we have chanced the sign-up process. If you want to participate in our forum, first register on this website and then send a message via our contact form.

Forums on OpenLB General Topics Thermal Poiseuille 2D. Reply To: Thermal Poiseuille 2D.

#6348
ramirofreile
Participant

I have also noticed that in AdvectionDiffusionTRTDynamics the collision function is:

cell[iPop] -= _omega2 * (fPlus[iPop] – fEqPlus[iPop]) + this->_omega * (fMinus[iPop] – fEqMinus[iPop]);

whereas in TRTDynamics:

cell[iPop] -= _omega * (fPlus[iPop] – fEqPlus[iPop]) + _omega2 * (fMinus[iPop] – fEqMinus[iPop]);

The omega related to the viscosity and the free parameter omega are switched in the collision.