************************************************************************ ************************************************************************ DATA FROM DNS OF IMPINGING SHOCK WAVE BOUNDARY LAYER INTERACTION (M = 2.28) 06 / 12 / 2010 ************************************************************************ ************************************************************************ This directory contains files where terms of the turbulence kinetic energy budget are stored. Free-stream Mach number ====> M = 2.28 Reynolds number based on the inlet BL thickness ====> Re = 16750. Incidence angle of the shock generator ====> phi = 8 degree gamma = 1.4 File "tkebudget_*.dat" are simple ascii files where budget terms of the kinetic energy balance are reported as a function of the wall-normal coordinate. Data are taken at the streamwise station x* (interaction coordinate) indicated in the file name. ************************************************************** FORTRAN CODE ************************************************************** open(unit=12,file='tkebudget_*'.dat',form='formatted') do j=1,ny read(12,*) (budk(j,l),l=1,7) enddo close (12) ************************************************************** The order of variables in the array budk is the following m variable ------------ 1 y 2 C ! Convection 3 T ! Transport 4 P ! Production 5 V ! Viscous diffusion 6 D ! Dissipation 7 K ! Pressure-dilatation and mass diffusion All variables are nondimensional. The reference density and velocity are taken to be the free-stream values. The reference length is the boundary layer thickness at the inflow station.