mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
TUT: reduce the number of postProcessing files
This commit is contained in:
committed by
Sergio Ferraris
parent
57304aeaf6
commit
6eae29aa1d
@ -57,7 +57,7 @@ functions
|
|||||||
type surfaces;
|
type surfaces;
|
||||||
surfaceFormat boundaryData;
|
surfaceFormat boundaryData;
|
||||||
writeControl timeStep;
|
writeControl timeStep;
|
||||||
writeInterval 10;
|
writeInterval 100;
|
||||||
interpolationScheme cell;
|
interpolationScheme cell;
|
||||||
fields
|
fields
|
||||||
(
|
(
|
||||||
|
|||||||
9
tutorials/incompressible/pimpleFoam/LES/periodicHill/Allclean
Executable file
9
tutorials/incompressible/pimpleFoam/LES/periodicHill/Allclean
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
(cd steadyState && ./Allclean)
|
||||||
|
|
||||||
|
(cd transient && ./Allclean)
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
@ -1,6 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd "${0%/*}" || exit # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
(cd steadyState && ./Allrun)
|
(cd steadyState && ./Allrun)
|
||||||
|
|||||||
8
tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/Allclean
Executable file
8
tutorials/incompressible/pimpleFoam/LES/periodicHill/transient/Allclean
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
|
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
cleanCase0
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
@ -31,11 +31,10 @@ vertices
|
|||||||
|
|
||||||
blocks
|
blocks
|
||||||
(
|
(
|
||||||
hex (0 1 2 3 4 5 6 7) (200 160 80) simpleGrading (1 ((0.5 0.5 100)(0.5 0.5 0.01)) 1)
|
hex (0 1 2 3 4 5 6 7) (200 160 80)
|
||||||
|
simpleGrading (1 ((0.5 0.5 100)(0.5 0.5 0.01)) 1)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
edges #codeStream
|
edges #codeStream
|
||||||
{
|
{
|
||||||
codeInclude
|
codeInclude
|
||||||
|
|||||||
@ -105,12 +105,17 @@ functions
|
|||||||
{
|
{
|
||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
writeControl writeTime;
|
|
||||||
timeStart 1500.5; // approx 2x flow-throughs
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
|
setFormat raw;
|
||||||
|
executeControl onEnd;
|
||||||
|
writeControl onEnd;
|
||||||
|
|
||||||
setFormat raw;
|
fields
|
||||||
|
(
|
||||||
|
U
|
||||||
|
columnAverage:columnAverage(UMean)
|
||||||
|
columnAverage:columnAverage(UPrime2Mean)
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
@ -185,14 +190,6 @@ functions
|
|||||||
end (0.224 1 0.063);
|
end (0.224 1 0.063);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
U
|
|
||||||
columnAverage:columnAverage(UMean)
|
|
||||||
columnAverage:columnAverage(UPrime2Mean)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -14,7 +14,7 @@ FoamFile
|
|||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
libs (turbulenceModelSchemes);
|
libs (turbulenceModelSchemes);
|
||||||
|
|
||||||
application pimpleFoam;
|
application pimpleFoam;
|
||||||
|
|
||||||
@ -54,6 +54,7 @@ functions
|
|||||||
libs (fieldFunctionObjects);
|
libs (fieldFunctionObjects);
|
||||||
fields (U p);
|
fields (U p);
|
||||||
}
|
}
|
||||||
|
|
||||||
DESField
|
DESField
|
||||||
{
|
{
|
||||||
// Mandatory entries
|
// Mandatory entries
|
||||||
|
|||||||
@ -16,7 +16,7 @@ FoamFile
|
|||||||
|
|
||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
|
||||||
|
|||||||
@ -80,8 +80,8 @@ functions
|
|||||||
log true;
|
log true;
|
||||||
timeStart 100;
|
timeStart 100;
|
||||||
timeEnd 1000;
|
timeEnd 1000;
|
||||||
executeControl timeStep;
|
executeControl runTime;
|
||||||
executeInterval 1;
|
executeInterval 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
curlePoint
|
curlePoint
|
||||||
@ -108,8 +108,8 @@ functions
|
|||||||
log true;
|
log true;
|
||||||
timeStart 100;
|
timeStart 100;
|
||||||
timeEnd 1000;
|
timeEnd 1000;
|
||||||
executeControl timeStep;
|
executeControl runTime;
|
||||||
executeInterval 1;
|
executeInterval 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
cuttingPlane
|
cuttingPlane
|
||||||
|
|||||||
@ -18,7 +18,7 @@ ensightWrite
|
|||||||
|
|
||||||
overwrite true;
|
overwrite true;
|
||||||
|
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
consecutive false;
|
consecutive false;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -11,7 +11,7 @@
|
|||||||
// Timing
|
// Timing
|
||||||
_visualization
|
_visualization
|
||||||
{
|
{
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
// enabled true;
|
// enabled true;
|
||||||
|
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object controlDict;
|
object controlDict;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -69,7 +68,6 @@ functions
|
|||||||
(0.1524 0.0253 0)
|
(0.1524 0.0253 0)
|
||||||
(0.1778 0.0253 0)
|
(0.1778 0.0253 0)
|
||||||
);
|
);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldAverage1
|
fieldAverage1
|
||||||
@ -101,7 +99,7 @@ functions
|
|||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
|
|
||||||
|
|||||||
@ -99,7 +99,7 @@ functions
|
|||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
|
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
|
|
||||||
|
|||||||
@ -11,7 +11,6 @@ cd "${0%/*}" || exit # Run from this directory
|
|||||||
runApplication snappyHexMesh -overwrite
|
runApplication snappyHexMesh -overwrite
|
||||||
runApplication renumberMesh -overwrite
|
runApplication renumberMesh -overwrite
|
||||||
runApplication createPatch -overwrite
|
runApplication createPatch -overwrite
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Make a 2D mesh by extruding a patch and solve to steady state.
|
# Make a 2D mesh by extruding a patch and solve to steady state.
|
||||||
|
|||||||
@ -75,7 +75,7 @@ functions
|
|||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
surfaceFormat raw;
|
surfaceFormat raw;
|
||||||
fields
|
fields
|
||||||
(
|
(
|
||||||
|
|||||||
@ -75,7 +75,7 @@ functions
|
|||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
surfaceFormat raw;
|
surfaceFormat raw;
|
||||||
fields
|
fields
|
||||||
(
|
(
|
||||||
|
|||||||
@ -75,7 +75,7 @@ functions
|
|||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
surfaceFormat raw;
|
surfaceFormat raw;
|
||||||
fields
|
fields
|
||||||
(
|
(
|
||||||
|
|||||||
@ -59,11 +59,17 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
writeInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
U
|
||||||
|
alpha.water
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
@ -107,7 +113,6 @@ functions
|
|||||||
end ( 7.5 0.005 0.8 );
|
end ( 7.5 0.005 0.8 );
|
||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
line6
|
line6
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
@ -133,12 +138,6 @@ functions
|
|||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
U alpha.water
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -59,11 +59,17 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
writeInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
U alpha.water
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
line1
|
line1
|
||||||
@ -74,14 +80,6 @@ functions
|
|||||||
end ( 7.9253 19.8599 30.0 );
|
end ( 7.9253 19.8599 30.0 );
|
||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
);
|
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
U alpha.water
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -60,10 +60,20 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
p
|
||||||
|
p_rgh
|
||||||
|
U
|
||||||
|
alpha.water
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
s1
|
s1
|
||||||
@ -147,13 +157,6 @@ functions
|
|||||||
nPoints 101;
|
nPoints 101;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
p p_rgh U alpha.water
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -52,7 +52,6 @@ maxAlphaCo 0.65;
|
|||||||
|
|
||||||
maxDeltaT 0.05;
|
maxDeltaT 0.05;
|
||||||
|
|
||||||
|
|
||||||
functions
|
functions
|
||||||
{
|
{
|
||||||
line
|
line
|
||||||
@ -60,11 +59,17 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
writeInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
U alpha.water
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
line1
|
line1
|
||||||
@ -107,7 +112,6 @@ functions
|
|||||||
end ( 7.5 0.01 1.5 );
|
end ( 7.5 0.01 1.5 );
|
||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
line6
|
line6
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
@ -117,12 +121,6 @@ functions
|
|||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
U alpha.water
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -59,7 +59,7 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
|||||||
@ -59,7 +59,7 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
|||||||
@ -52,7 +52,6 @@ maxAlphaCo 0.65;
|
|||||||
|
|
||||||
maxDeltaT 0.05;
|
maxDeltaT 0.05;
|
||||||
|
|
||||||
|
|
||||||
functions
|
functions
|
||||||
{
|
{
|
||||||
line
|
line
|
||||||
@ -60,11 +59,18 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
writeInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
U
|
||||||
|
alpha.water
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
line1
|
line1
|
||||||
@ -107,7 +113,6 @@ functions
|
|||||||
end ( 7.5 0.02 0.75 );
|
end ( 7.5 0.02 0.75 );
|
||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
line6
|
line6
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
@ -133,12 +138,6 @@ functions
|
|||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
U alpha.water
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -52,7 +52,6 @@ maxAlphaCo 0.65;
|
|||||||
|
|
||||||
maxDeltaT 0.05;
|
maxDeltaT 0.05;
|
||||||
|
|
||||||
|
|
||||||
functions
|
functions
|
||||||
{
|
{
|
||||||
line
|
line
|
||||||
@ -60,11 +59,18 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
writeInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
U
|
||||||
|
alpha.water
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
line1
|
line1
|
||||||
@ -107,7 +113,6 @@ functions
|
|||||||
end ( 7.5 0.02 0.55 );
|
end ( 7.5 0.02 0.55 );
|
||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
line6
|
line6
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
@ -133,12 +138,6 @@ functions
|
|||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
U alpha.water
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -59,11 +59,17 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
writeInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
U
|
||||||
|
alpha.water
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
@ -107,7 +113,6 @@ functions
|
|||||||
end ( 5 0.005 0.8 );
|
end ( 5 0.005 0.8 );
|
||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
line6
|
line6
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
@ -133,13 +138,6 @@ functions
|
|||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
U alpha.water
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -52,7 +52,6 @@ maxAlphaCo 0.65;
|
|||||||
|
|
||||||
maxDeltaT 0.05;
|
maxDeltaT 0.05;
|
||||||
|
|
||||||
|
|
||||||
functions
|
functions
|
||||||
{
|
{
|
||||||
line
|
line
|
||||||
@ -60,11 +59,18 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
writeInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
U
|
||||||
|
alpha.water
|
||||||
|
);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
line1
|
line1
|
||||||
@ -107,7 +113,6 @@ functions
|
|||||||
end ( 7.5 0.005 1.0 );
|
end ( 7.5 0.005 1.0 );
|
||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
line6
|
line6
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
@ -149,12 +154,6 @@ functions
|
|||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
fields
|
|
||||||
(
|
|
||||||
U alpha.water
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -59,10 +59,13 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields (alpha.water);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
@ -129,10 +132,6 @@ functions
|
|||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
|
|
||||||
fields (alpha.water);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -52,7 +52,6 @@ maxAlphaCo 0.65;
|
|||||||
|
|
||||||
maxDeltaT 0.05;
|
maxDeltaT 0.05;
|
||||||
|
|
||||||
|
|
||||||
functions
|
functions
|
||||||
{
|
{
|
||||||
line
|
line
|
||||||
@ -60,7 +59,7 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
|||||||
@ -52,7 +52,6 @@ maxAlphaCo 0.65;
|
|||||||
|
|
||||||
maxDeltaT 0.05;
|
maxDeltaT 0.05;
|
||||||
|
|
||||||
|
|
||||||
functions
|
functions
|
||||||
{
|
{
|
||||||
line
|
line
|
||||||
@ -60,10 +59,13 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
fixedLocations false;
|
||||||
|
|
||||||
|
fields (alpha.water);
|
||||||
|
|
||||||
sets
|
sets
|
||||||
(
|
(
|
||||||
@ -130,10 +132,6 @@ functions
|
|||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
|
||||||
|
|
||||||
fields (alpha.water);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -59,7 +59,7 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
|
|||||||
@ -57,10 +57,9 @@ functions
|
|||||||
lineMOVING
|
lineMOVING
|
||||||
{
|
{
|
||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
outputInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
@ -68,21 +67,20 @@ functions
|
|||||||
(
|
(
|
||||||
line1
|
line1
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
axis distance;
|
axis distance;
|
||||||
start ( 1.33 0.004 0.0 );
|
start ( 1.33 0.004 0.0 );
|
||||||
end ( 1.33 0.004 0.6 );
|
end ( 1.33 0.004 0.6 );
|
||||||
nPoints 101;
|
nPoints 101;
|
||||||
}
|
}
|
||||||
line2
|
line2
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
axis distance;
|
axis distance;
|
||||||
start ( 3.33 0.004 0.0 );
|
start ( 3.33 0.004 0.0 );
|
||||||
end ( 3.33 0.004 0.6 );
|
end ( 3.33 0.004 0.6 );
|
||||||
nPoints 101;
|
nPoints 101;
|
||||||
}
|
}
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
fixedLocations false;
|
fixedLocations false;
|
||||||
@ -95,10 +93,9 @@ functions
|
|||||||
lineFIXED
|
lineFIXED
|
||||||
{
|
{
|
||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
outputInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
@ -106,16 +103,16 @@ functions
|
|||||||
(
|
(
|
||||||
line3
|
line3
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
axis distance;
|
axis distance;
|
||||||
start ( 5.33 0.004 0.0 );
|
start ( 5.33 0.004 0.0 );
|
||||||
end ( 5.33 0.004 0.6 );
|
end ( 5.33 0.004 0.6 );
|
||||||
nPoints 101;
|
nPoints 101;
|
||||||
}
|
}
|
||||||
line4
|
line4
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
axis distance;
|
axis distance;
|
||||||
start ( 5.66 0.004 0.0 );
|
start ( 5.66 0.004 0.0 );
|
||||||
end ( 5.66 0.004 0.6 );
|
end ( 5.66 0.004 0.6 );
|
||||||
nPoints 101;
|
nPoints 101;
|
||||||
|
|||||||
@ -37,4 +37,5 @@ boundaryField
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -36,4 +36,5 @@ boundaryField
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -36,4 +36,5 @@ boundaryField
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
|
||||||
object dynamicMeshDict;
|
object dynamicMeshDict;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class uniformDimensionedVectorField;
|
class uniformDimensionedVectorField;
|
||||||
location "constant";
|
|
||||||
object g;
|
object g;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -10,12 +10,11 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
|
||||||
object transportProperties;
|
object transportProperties;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
phases (water air);
|
phases (water air);
|
||||||
|
|
||||||
water
|
water
|
||||||
{
|
{
|
||||||
@ -33,4 +32,5 @@ air
|
|||||||
|
|
||||||
sigma 0;
|
sigma 0;
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
|
||||||
object turbulenceProperties;
|
object turbulenceProperties;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object controlDict;
|
object controlDict;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -53,7 +52,6 @@ maxAlphaCo 0.5;
|
|||||||
|
|
||||||
maxDeltaT 1;
|
maxDeltaT 1;
|
||||||
|
|
||||||
|
|
||||||
functions
|
functions
|
||||||
{
|
{
|
||||||
probes
|
probes
|
||||||
@ -77,7 +75,7 @@ functions
|
|||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
surfaceFormat raw;
|
surfaceFormat raw;
|
||||||
fields
|
fields
|
||||||
(
|
(
|
||||||
|
|||||||
@ -23,4 +23,5 @@ coeffs
|
|||||||
n (1 3 2);
|
n (1 3 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object fvSchemes;
|
object fvSchemes;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -48,4 +47,5 @@ snGradSchemes
|
|||||||
default corrected;
|
default corrected;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object fvSolution;
|
object fvSolution;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -68,7 +67,6 @@ solvers
|
|||||||
smoother DICGaussSeidel;
|
smoother DICGaussSeidel;
|
||||||
nPreSweeps 2;
|
nPreSweeps 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
tolerance 2e-09;
|
tolerance 2e-09;
|
||||||
relTol 0;
|
relTol 0;
|
||||||
maxIter 20;
|
maxIter 20;
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object setFieldsDict;
|
object setFieldsDict;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -50,4 +50,5 @@ boundaryField
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -49,4 +49,5 @@ boundaryField
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class uniformDimensionedVectorField;
|
class uniformDimensionedVectorField;
|
||||||
location "constant";
|
|
||||||
object g;
|
object g;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -10,12 +10,11 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
|
||||||
object transportProperties;
|
object transportProperties;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
phases (water air);
|
phases (water air);
|
||||||
|
|
||||||
water
|
water
|
||||||
{
|
{
|
||||||
|
|||||||
@ -10,11 +10,11 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
|
||||||
object turbulenceProperties;
|
object turbulenceProperties;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
simulationType laminar;
|
simulationType laminar;
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "constant";
|
|
||||||
object waveProperties;
|
object waveProperties;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -27,7 +26,7 @@ inlet
|
|||||||
|
|
||||||
waveAngle 0.0;
|
waveAngle 0.0;
|
||||||
|
|
||||||
rampTime 3.017;//6.034;
|
rampTime 3.017;
|
||||||
|
|
||||||
activeAbsorption yes;
|
activeAbsorption yes;
|
||||||
|
|
||||||
@ -64,7 +63,6 @@ inlet
|
|||||||
2.7580059e-004
|
2.7580059e-004
|
||||||
2.2810557e-004
|
2.2810557e-004
|
||||||
);
|
);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
outlet
|
outlet
|
||||||
|
|||||||
@ -86,4 +86,5 @@ mergePatchPairs
|
|||||||
(
|
(
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object controlDict;
|
object controlDict;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -53,7 +52,6 @@ maxAlphaCo 0.5;
|
|||||||
|
|
||||||
maxDeltaT 0.5;
|
maxDeltaT 0.5;
|
||||||
|
|
||||||
|
|
||||||
functions
|
functions
|
||||||
{
|
{
|
||||||
line
|
line
|
||||||
@ -61,8 +59,7 @@ functions
|
|||||||
type sets;
|
type sets;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
writeInterval 1;
|
|
||||||
|
|
||||||
interpolationScheme cellPoint;
|
interpolationScheme cellPoint;
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
@ -108,7 +105,6 @@ functions
|
|||||||
end ( 7.5 0.005 1.0 );
|
end ( 7.5 0.005 1.0 );
|
||||||
nPoints 1001;
|
nPoints 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
line6
|
line6
|
||||||
{
|
{
|
||||||
type uniform;
|
type uniform;
|
||||||
|
|||||||
@ -23,4 +23,5 @@ coeffs
|
|||||||
n (2 1 1);
|
n (2 1 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object fvSchemes;
|
object fvSchemes;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object fvSolution;
|
object fvSolution;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -10,7 +10,6 @@ FoamFile
|
|||||||
version 2.0;
|
version 2.0;
|
||||||
format ascii;
|
format ascii;
|
||||||
class dictionary;
|
class dictionary;
|
||||||
location "system";
|
|
||||||
object setFieldsDict;
|
object setFieldsDict;
|
||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -116,10 +116,8 @@ functions
|
|||||||
log true;
|
log true;
|
||||||
timeStart 0;
|
timeStart 0;
|
||||||
timeEnd 1000;
|
timeEnd 1000;
|
||||||
executeControl timeStep;
|
executeControl onEnd;
|
||||||
executeInterval 1;
|
writeControl onEnd;
|
||||||
writeControl writeTime;
|
|
||||||
writeInterval -1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -55,11 +55,10 @@ functions
|
|||||||
|
|
||||||
minMax
|
minMax
|
||||||
{
|
{
|
||||||
type fieldMinMax;
|
type fieldMinMax;
|
||||||
libs (fieldFunctionObjects);
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
writeControl writeTime;
|
|
||||||
fields (U);
|
fields (U);
|
||||||
|
writeControl writeTime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2,11 +2,10 @@
|
|||||||
|
|
||||||
sampleIso
|
sampleIso
|
||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
|
|
||||||
writeControl writeTime;
|
|
||||||
surfaceFormat vtk;
|
surfaceFormat vtk;
|
||||||
|
writeControl writeTime;
|
||||||
fields (U k epsilon nut);
|
fields (U k epsilon nut);
|
||||||
|
|
||||||
surfaces
|
surfaces
|
||||||
|
|||||||
@ -10,7 +10,7 @@ _sampler
|
|||||||
libs (sampling);
|
libs (sampling);
|
||||||
setFormat raw;
|
setFormat raw;
|
||||||
interpolationScheme cell;
|
interpolationScheme cell;
|
||||||
writeControl writeTime;
|
writeControl onEnd;
|
||||||
enabled false;
|
enabled false;
|
||||||
|
|
||||||
sets
|
sets
|
||||||
|
|||||||
@ -2,11 +2,10 @@
|
|||||||
|
|
||||||
samplePlanes
|
samplePlanes
|
||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs (sampling);
|
libs (sampling);
|
||||||
|
|
||||||
writeControl writeTime;
|
|
||||||
surfaceFormat vtk;
|
surfaceFormat vtk;
|
||||||
|
writeControl writeTime;
|
||||||
fields (U k epsilon nut);
|
fields (U k epsilon nut);
|
||||||
|
|
||||||
surfaces
|
surfaces
|
||||||
|
|||||||
Reference in New Issue
Block a user