Hello,
I am simulating turbulent single-phase flow in a horizontal pipe using the D3Q27 descriptor, SmagorinskyBGKdynamics, no-slip condition at the wall and I use CirclePoiseuille3D velocity profile at the inlet.
Are there other options for inlet velocity such as constant velocity etc?
Following is my code for boundary values:
PolynomialStartScale<T,int> StartScale( iTmaxStart, converter.getCharLatticeVelocity() );
// Creates and sets the Poiseuille inflow profile using functors
// int iTvec[1] = {iT};
//T frac[1] = {};
// StartScale( frac,iTvec );
//std::vector<T> maxVelocity( 3,0 );
//maxVelocity[0] = 2.25*frac[0]*converter.getCharLatticeVelocity();
int iTvec[1]= {iT};
T maxVelocity[1]= {T()};
StartScale( maxVelocity,iTvec );
CirclePoiseuille3D<T> poiseuilleU( superGeometry,3,maxVelocity [0] );
sLattice.defineU( superGeometry,3,poiseuilleU );
Thank you
Regards
Ananda