Skip to content

Commit

Permalink
Adding T3B and T3AM testcases
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximeV29 authored Jul 17, 2024
1 parent b32e48c commit d007c9e
Show file tree
Hide file tree
Showing 100 changed files with 4,859 additions and 0 deletions.
16 changes: 16 additions & 0 deletions testCases/T3AM/ercoftac_t3am_cf.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
1.225E+05 0.001880
2.541E+05 0.001250
3.855E+05 0.001027
5.078E+05 0.000901
6.422E+05 0.000780
7.720E+05 0.000733
9.003E+05 0.000661
1.038E+06 0.000624
1.173E+06 0.000603
1.306E+06 0.000565
1.443E+06 0.000535
1.561E+06 0.000557
1.698E+06 0.000583
1.828E+06 0.000735
1.959E+06 0.001193
2.022E+06 0.001514
65 changes: 65 additions & 0 deletions testCases/T3AM/gammaSST/0/U
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.0 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/

FoamFile
{
version 2.0;
format ascii;

root "";
case "";
instance "";
local "";

class volVectorField;
object U;
}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //


dimensions [0 1 -1 0 0 0 0];

internalField uniform (15 0 0);

boundaryField
{
wall
{
type fixedValue;
value uniform (0 0 0);
}
firstBottomFace
{
type slip;
}
firstTopFace
{
type slip;
}
secondTopFace
{
type slip;
}
inlet
{
type fixedValue;
value uniform (19.8 0 0);
}
outlet
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
}


// ************************************************************************* //
56 changes: 56 additions & 0 deletions testCases/T3AM/gammaSST/0/gamma
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object gamma;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 0 0 0 0 0 0];

internalField uniform 1;

boundaryField
{
wall
{
type zeroGradient;
}
firstBottomFace
{
type zeroGradient;
}
firstTopFace
{
type zeroGradient;
}
secondTopFace
{
type zeroGradient;
}
inlet
{
type fixedValue;
value uniform 1;
}
outlet
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
}


// ************************************************************************* //
63 changes: 63 additions & 0 deletions testCases/T3AM/gammaSST/0/k
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object kt;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -2 0 0 0 0];

internalField uniform 0.01;

boundaryField
{
wall
{
type fixedValue;
value uniform 0;
}
firstBottomFace
{
type zeroGradient;
}
firstTopFace
{
type zeroGradient;
}
secondTopFace
{
type zeroGradient;
}
inlet
{
//~ type fixedValue;
//~ value uniform 0.08;

type turbulentIntensityKineticEnergyInlet;
intensity 0.009;
U U;
phi phi;
value uniform 0.0831; // Check if k is closed to the experimental data
}
outlet
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
}


// ************************************************************************* //
61 changes: 61 additions & 0 deletions testCases/T3AM/gammaSST/0/nut
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -1 0 0 0 0];

internalField uniform 0;

boundaryField
{
wall
{
type nutLowReWallFunction;
value uniform 0;
}
firstBottomFace
{
type calculated;
value uniform 0;
}
firstTopFace
{
type calculated;
value uniform 0;
}
secondTopFace
{
type calculated;
value uniform 0;
}
inlet
{
type calculated;
value uniform 0;
}
outlet
{
type calculated;
value uniform 0;
}
frontAndBack
{
type empty;
}
}


// ************************************************************************* //
57 changes: 57 additions & 0 deletions testCases/T3AM/gammaSST/0/omega
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 0 -1 0 0 0 0];

internalField uniform 666;

boundaryField
{
wall
{
type omegaWallFunction;
value $internalField;
}
firstBottomFace
{
type zeroGradient;
}
firstTopFace
{
type zeroGradient;
}
secondTopFace
{
type zeroGradient;
}
inlet
{
type fixedValue;
value $internalField;
}
outlet
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
}


// ************************************************************************* //
64 changes: 64 additions & 0 deletions testCases/T3AM/gammaSST/0/p
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.0 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/

FoamFile
{
version 2.0;
format ascii;

root "";
case "";
instance "";
local "";

class volScalarField;
object p;
}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //


dimensions [0 2 -2 0 0 0 0];

internalField uniform 0;

boundaryField
{
wall
{
type zeroGradient;
}
firstBottomFace
{
type zeroGradient;
}
firstTopFace
{
type zeroGradient;
}
secondTopFace
{
type zeroGradient;
}
inlet
{
type zeroGradient;
}
outlet
{
type fixedValue;
value uniform 0;
}
frontAndBack
{
type empty;
}
}


// ************************************************************************* //
8 changes: 8 additions & 0 deletions testCases/T3AM/gammaSST/Allclean
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions

cleanCase

rm -f *.png
Loading

0 comments on commit d007c9e

Please sign in to comment.