#include #include #include #include #include "channelflow/flowfield.h" #include "channelflow/periodicfunc.h" #include "channelflow/dns.h" #include "channelflow/turbstats.h" #include "channelflow/utilfuncs.h" using namespace std; using namespace channelflow; int main() { cout << "================================================================\n"; cout << "This program integrates a plane Poiseuille from a random\n"; cout << "initial condition and computes a number of turbulent statistics\n"; cout << "The mean velocity profile can be plotted against the logarithmic\n"; cout << "\"law of the wall\" with the matlab script walllaw.m\n"; cout << endl << endl; const int Nx=64; const int Ny=65; const int Nz=64; const Real Lx = 4*pi/3; // 4.1888 const Real Lz = 2*pi/3; // 2.0724 //const Real Lx = 2*pi; // 6.2832 //const Real Lz = pi; // 6.2832 const Real a= -1.0; const Real b= 1.0; const Real bsub= -0.8; const Real Reynolds = 400.0; const Real nu = 1.0/Reynolds; const Real CFLmin = 0.20; const Real CFLmax = 0.40; const Real dtmin = 0.0001; const Real dtmax = 0.01; const Real T0 = 0.0; // integration start time const Real T1 = 100; // grow turbulence from perturbations: T0 < t = T1) { stats.addData(u,tmp); cout << "centerline Re = " << stats.centerlineReynolds() << endl; cout << " parabolic Re = " << stats.parabolicReynolds() << endl; cout << " bulk Re = " << stats.bulkReynolds() << endl; cout << " ustar = " << stats.ustar() << endl; cout << " bsub+ = " << stats.ustar()/nu * (bsub-a) << endl; stats.msave("uu"); stats.msave("uustar", true); Real ustar = stats.ustar(); Vector yp = stats.yplus(); yp.save("yp"); ChebyCoeff Umean = stats.U(); Umean.makeSpectral(trans); ChebyCoeff Umeany = diff(Umean); Umean.makePhysical(trans); Umeany.makePhysical(trans); Umean.save("Umean"); Umeany.save("Umeany"); Umean /= ustar; Umean.save("Uplus"); ChebyCoeff ubase = stats.ubase(); ubase.save("ubase"); ChebyCoeff uv = stats.uv(); uv.save("uv"); save(ustar, "ustar"); save(nu, "nu"); } dns.advance(u, q, dt.n()); cout << endl; } cout << "done!" << endl; }