mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
@ -17,7 +17,6 @@ FoamFile
|
||||
|
||||
dimensions [ 0 1 -1 0 0 0 0 ];
|
||||
|
||||
// Re = 395, L = pi, utau = 1, nu = pi/395 = 7.9534e-3
|
||||
// Ub/utau = 17.55
|
||||
internalField uniform ( 17.55 0 0 );
|
||||
|
||||
|
||||
@ -52,5 +52,6 @@ maxAlphaCo 1;
|
||||
|
||||
maxDeltaT 1;
|
||||
|
||||
#includeIfPresent "sampling"
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -0,0 +1,54 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object sampling;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
functions
|
||||
{
|
||||
sampleSets
|
||||
{
|
||||
type sets;
|
||||
libs ("libsampling.so");
|
||||
|
||||
writeControl timeStep;
|
||||
writeInterval 1;
|
||||
|
||||
setFormat vtk;
|
||||
interpolationScheme cellPointFace;
|
||||
fields ( alpha.water );
|
||||
|
||||
sets
|
||||
(
|
||||
gauge_1
|
||||
{
|
||||
type face;
|
||||
axis y;
|
||||
start (0.02 0.20 0.005);
|
||||
end (0.02 0.25 0.005);
|
||||
nPoints 100;
|
||||
}
|
||||
|
||||
gauge_2
|
||||
{
|
||||
type face;
|
||||
axis y;
|
||||
start (0.2 0.03 0.005);
|
||||
end (0.2 0.55 0.005);
|
||||
nPoints 100;
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user