CodedFunction1: New Function1 which uses codeStream to dynamically compile the value function code
For example in the new tutorial case:
tutorials/incompressible/pimpleFoam/laminar/pitzDailyPulse
a cosine bell velocity pulse is specified at the inlet by directly defining the
code for it:
inlet
{
type uniformFixedValue;
uniformValue coded;
name pulse;
codeInclude
#{
#include "mathematicalConstants.H"
#};
code
#{
return vector
(
0.5*(1 - cos(constant::mathematical::twoPi*min(x/0.3, 1))),
0,
0
);
#};
}
which is then compiled automatically and linked into the running pimpleFoam
dynamically and executed to set the inlet velocity.
This commit is contained in:
12
tutorials/basic/scalarTransportFoam/pitzDaily/Allrun
Executable file
12
tutorials/basic/scalarTransportFoam/pitzDaily/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-20.6 0 -0.5)
|
||||
(-20.6 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-20.6 0 0.5)
|
||||
(-20.6 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(18 30 1)
|
||||
simpleGrading (0.5 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/Allrun
Executable file
12
tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-20.6 0 -0.5)
|
||||
(-20.6 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-20.6 0 0.5)
|
||||
(-20.6 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(18 30 1)
|
||||
simpleGrading (0.5 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/Allrun
Executable file
12
tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-20.6 0 -0.5)
|
||||
(-20.6 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-20.6 0 0.5)
|
||||
(-20.6 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(18 30 1)
|
||||
simpleGrading (0.5 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/incompressible/pimpleFoam/RAS/pitzDaily/Allrun
Executable file
12
tutorials/incompressible/pimpleFoam/RAS/pitzDaily/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-20.6 0 -0.5)
|
||||
(-20.6 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-20.6 0 0.5)
|
||||
(-20.6 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(18 30 1)
|
||||
simpleGrading (0.5 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/incompressible/pimpleFoam/RAS/pitzDailyLTS/Allrun
Executable file
12
tutorials/incompressible/pimpleFoam/RAS/pitzDailyLTS/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-20.6 0 -0.5)
|
||||
(-20.6 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-20.6 0 0.5)
|
||||
(-20.6 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(18 30 1)
|
||||
simpleGrading (0.5 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,67 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volVectorField;
|
||||
object U;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 1 -1 0 0 0 0];
|
||||
|
||||
internalField uniform (0 0 0);
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type uniformFixedValue;
|
||||
uniformValue coded;
|
||||
|
||||
name pulse;
|
||||
|
||||
codeInclude
|
||||
#{
|
||||
#include "mathematicalConstants.H"
|
||||
#};
|
||||
|
||||
code
|
||||
#{
|
||||
return vector
|
||||
(
|
||||
0.5*(1 - cos(constant::mathematical::twoPi*min(x/0.3, 1))),
|
||||
0,
|
||||
0
|
||||
);
|
||||
#};
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
upperWall
|
||||
{
|
||||
type noSlip;
|
||||
}
|
||||
|
||||
lowerWall
|
||||
{
|
||||
type noSlip;
|
||||
}
|
||||
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,50 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
object p;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 2 -2 0 0 0 0];
|
||||
|
||||
internalField uniform 0;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type fixedValue;
|
||||
value uniform 0;
|
||||
}
|
||||
|
||||
upperWall
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
lowerWall
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/incompressible/pimpleFoam/laminar/pitzDailyPulse/Allrun
Executable file
12
tutorials/incompressible/pimpleFoam/laminar/pitzDailyPulse/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -0,0 +1,22 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object transportProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
transportModel Newtonian;
|
||||
|
||||
nu [0 2 -1 0 0 0 0] 1e-4;
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,20 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object turbulenceProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
simulationType laminar;
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,57 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object controlDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
application pimpleFoam;
|
||||
|
||||
startFrom startTime;
|
||||
|
||||
startTime 0;
|
||||
|
||||
stopAt endTime;
|
||||
|
||||
endTime 1;
|
||||
|
||||
deltaT 0.001;
|
||||
|
||||
writeControl adjustableRunTime;
|
||||
|
||||
writeInterval 0.02;
|
||||
|
||||
purgeWrite 0;
|
||||
|
||||
writeFormat ascii;
|
||||
|
||||
writePrecision 6;
|
||||
|
||||
writeCompression off;
|
||||
|
||||
timeFormat general;
|
||||
|
||||
timePrecision 6;
|
||||
|
||||
runTimeModifiable yes;
|
||||
|
||||
adjustTimeStep yes;
|
||||
|
||||
maxCo 5;
|
||||
|
||||
functions
|
||||
{
|
||||
#includeFunc patchAverage(name=inlet, fields=(p U))
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,53 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object fvSchemes;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
ddtSchemes
|
||||
{
|
||||
default Euler;
|
||||
}
|
||||
|
||||
gradSchemes
|
||||
{
|
||||
default Gauss linear;
|
||||
}
|
||||
|
||||
divSchemes
|
||||
{
|
||||
default none;
|
||||
|
||||
div(phi,U) Gauss linearUpwind grad(U);
|
||||
|
||||
div((nuEff*dev2(T(grad(U))))) Gauss linear;
|
||||
}
|
||||
|
||||
laplacianSchemes
|
||||
{
|
||||
default Gauss linear corrected;
|
||||
}
|
||||
|
||||
interpolationSchemes
|
||||
{
|
||||
default linear;
|
||||
}
|
||||
|
||||
snGradSchemes
|
||||
{
|
||||
default corrected;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,58 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object fvSolution;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
solvers
|
||||
{
|
||||
p
|
||||
{
|
||||
solver GAMG;
|
||||
tolerance 1e-7;
|
||||
relTol 0.01;
|
||||
|
||||
smoother DICGaussSeidel;
|
||||
|
||||
}
|
||||
|
||||
pFinal
|
||||
{
|
||||
$p;
|
||||
relTol 0;
|
||||
}
|
||||
|
||||
U
|
||||
{
|
||||
solver smoothSolver;
|
||||
smoother symGaussSeidel;
|
||||
tolerance 1e-05;
|
||||
relTol 0.1;
|
||||
}
|
||||
|
||||
UFinal
|
||||
{
|
||||
$U;
|
||||
relTol 0;
|
||||
}
|
||||
}
|
||||
|
||||
PIMPLE
|
||||
{
|
||||
nNonOrthogonalCorrectors 0;
|
||||
nCorrectors 2;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/incompressible/pisoFoam/LES/pitzDaily/Allrun
Executable file
12
tutorials/incompressible/pisoFoam/LES/pitzDaily/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-20.6 0 -0.5)
|
||||
(-20.6 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-20.6 0 0.5)
|
||||
(-20.6 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(18 30 1)
|
||||
simpleGrading (0.5 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/Allrun
Executable file
12
tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-70 0 -0.5)
|
||||
(-70 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-70 0 0.5)
|
||||
(-70 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(70 30 1)
|
||||
simpleGrading (1 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type mappedPatch;
|
||||
offset (0.0495 0 0);
|
||||
sampleRegion region0;
|
||||
sampleMode nearestCell;
|
||||
samplePatch none;
|
||||
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/incompressible/simpleFoam/pitzDaily/Allrun
Executable file
12
tutorials/incompressible/simpleFoam/pitzDaily/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-20.6 0 -0.5)
|
||||
(-20.6 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-20.6 0 0.5)
|
||||
(-20.6 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(18 30 1)
|
||||
simpleGrading (0.5 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
12
tutorials/incompressible/simpleFoam/pitzDailyExptInlet/Allrun
Executable file
12
tutorials/incompressible/simpleFoam/pitzDailyExptInlet/Allrun
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="$(getApplication)"
|
||||
|
||||
runApplication blockMesh -dict $FOAM_TUTORIALS/resources/blockMesh/pitzDaily
|
||||
runApplication $application
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
@ -1,152 +0,0 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
convertToMeters 0.001;
|
||||
|
||||
vertices
|
||||
(
|
||||
(-20.6 0 -0.5)
|
||||
(-20.6 25.4 -0.5)
|
||||
(0 -25.4 -0.5)
|
||||
(0 0 -0.5)
|
||||
(0 25.4 -0.5)
|
||||
(206 -25.4 -0.5)
|
||||
(206 0 -0.5)
|
||||
(206 25.4 -0.5)
|
||||
(290 -16.6 -0.5)
|
||||
(290 0 -0.5)
|
||||
(290 16.6 -0.5)
|
||||
|
||||
(-20.6 0 0.5)
|
||||
(-20.6 25.4 0.5)
|
||||
(0 -25.4 0.5)
|
||||
(0 0 0.5)
|
||||
(0 25.4 0.5)
|
||||
(206 -25.4 0.5)
|
||||
(206 0 0.5)
|
||||
(206 25.4 0.5)
|
||||
(290 -16.6 0.5)
|
||||
(290 0 0.5)
|
||||
(290 16.6 0.5)
|
||||
);
|
||||
|
||||
negY
|
||||
(
|
||||
(2 4 1)
|
||||
(1 3 0.3)
|
||||
);
|
||||
|
||||
posY
|
||||
(
|
||||
(1 4 2)
|
||||
(2 3 4)
|
||||
(2 4 0.25)
|
||||
);
|
||||
|
||||
posYR
|
||||
(
|
||||
(2 1 1)
|
||||
(1 1 0.25)
|
||||
);
|
||||
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 3 4 1 11 14 15 12)
|
||||
(18 30 1)
|
||||
simpleGrading (0.5 $posY 1)
|
||||
|
||||
hex (2 5 6 3 13 16 17 14)
|
||||
(180 27 1)
|
||||
edgeGrading (4 4 4 4 $negY 1 1 $negY 1 1 1 1)
|
||||
|
||||
hex (3 6 7 4 14 17 18 15)
|
||||
(180 30 1)
|
||||
edgeGrading (4 4 4 4 $posY $posYR $posYR $posY 1 1 1 1)
|
||||
|
||||
hex (5 8 9 6 16 19 20 17)
|
||||
(25 27 1)
|
||||
simpleGrading (2.5 1 1)
|
||||
|
||||
hex (6 9 10 7 17 20 21 18)
|
||||
(25 30 1)
|
||||
simpleGrading (2.5 $posYR 1)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 12 11)
|
||||
);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(8 9 20 19)
|
||||
(9 10 21 20)
|
||||
);
|
||||
}
|
||||
upperWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(1 4 15 12)
|
||||
(4 7 18 15)
|
||||
(7 10 21 18)
|
||||
);
|
||||
}
|
||||
lowerWall
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(0 3 14 11)
|
||||
(3 2 13 14)
|
||||
(2 5 16 13)
|
||||
(5 8 19 16)
|
||||
);
|
||||
}
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
faces
|
||||
(
|
||||
(0 3 4 1)
|
||||
(2 5 6 3)
|
||||
(3 6 7 4)
|
||||
(5 8 9 6)
|
||||
(6 9 10 7)
|
||||
(11 14 15 12)
|
||||
(13 16 17 14)
|
||||
(14 17 18 15)
|
||||
(16 19 20 17)
|
||||
(17 20 21 18)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user