From 3335aa68f34320f22ea1cb0e2b0f0aed13606d5d Mon Sep 17 00:00:00 2001 From: mattijs Date: Fri, 28 Aug 2009 12:39:37 +0100 Subject: [PATCH] moved non-IOobject files to subdirectory --- .../simpleFoam/motorBike/0/include/fixedInlet | 15 +++++++++++++++ .../motorBike/0/include/frontBackUpperPatches | 19 +++++++++++++++++++ .../motorBike/0/include/initialConditions | 15 +++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 tutorials/incompressible/simpleFoam/motorBike/0/include/fixedInlet create mode 100644 tutorials/incompressible/simpleFoam/motorBike/0/include/frontBackUpperPatches create mode 100644 tutorials/incompressible/simpleFoam/motorBike/0/include/initialConditions diff --git a/tutorials/incompressible/simpleFoam/motorBike/0/include/fixedInlet b/tutorials/incompressible/simpleFoam/motorBike/0/include/fixedInlet new file mode 100644 index 0000000000..ccf1d6e897 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/motorBike/0/include/fixedInlet @@ -0,0 +1,15 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 1.6 | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +inlet +{ + type fixedValue; + value $internalField; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/motorBike/0/include/frontBackUpperPatches b/tutorials/incompressible/simpleFoam/motorBike/0/include/frontBackUpperPatches new file mode 100644 index 0000000000..d858932a9d --- /dev/null +++ b/tutorials/incompressible/simpleFoam/motorBike/0/include/frontBackUpperPatches @@ -0,0 +1,19 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 1.6 | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +upperWall +{ + type slip; +} + +frontAndBack +{ + type slip; +} + +// ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/motorBike/0/include/initialConditions b/tutorials/incompressible/simpleFoam/motorBike/0/include/initialConditions new file mode 100644 index 0000000000..a90ff786cc --- /dev/null +++ b/tutorials/incompressible/simpleFoam/motorBike/0/include/initialConditions @@ -0,0 +1,15 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 1.6 | +| \\ / A nd | Web: http://www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + +flowVelocity (20 0 0); +pressure 0; +turbulentKE 0.24; +turbulentOmega 1.78; +#inputMode merge + +// ************************************************************************* //