mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
reintroduce comments
This commit is contained in:
@ -15,10 +15,14 @@ FoamFile
|
|||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
// Seed patches to start layering from
|
||||||
patches ( bottomWall );
|
patches ( bottomWall );
|
||||||
|
|
||||||
|
// Direction in which the layers are
|
||||||
component y;
|
component y;
|
||||||
|
|
||||||
|
// Is the mesh symmetric? If so average(symmetric fields) or
|
||||||
|
// subtract(asymmetric) contributions from both halves
|
||||||
symmetric true;
|
symmetric true;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -43,7 +43,35 @@ timePrecision 6;
|
|||||||
|
|
||||||
runTimeModifiable yes;
|
runTimeModifiable yes;
|
||||||
|
|
||||||
functions ( fieldAverage1 { type fieldAverage ; functionObjectLibs ( "libfieldFunctionObjects.so" ) ; enabled true ; outputControl outputTime ; fields ( U { mean on ; prime2Mean on ; base time ; } p { mean on ; prime2Mean on ; base time ; } ) ; } );
|
functions
|
||||||
|
(
|
||||||
|
fieldAverage1
|
||||||
|
{
|
||||||
|
type fieldAverage;
|
||||||
|
|
||||||
|
functionObjectLibs ( "libfieldFunctionObjects.so" );
|
||||||
|
|
||||||
|
enabled true;
|
||||||
|
|
||||||
|
outputControl outputTime;
|
||||||
|
|
||||||
|
fields
|
||||||
|
(
|
||||||
|
U
|
||||||
|
{
|
||||||
|
mean on;
|
||||||
|
prime2Mean on;
|
||||||
|
base time;
|
||||||
|
}
|
||||||
|
p
|
||||||
|
{
|
||||||
|
mean on;
|
||||||
|
prime2Mean on;
|
||||||
|
base time;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
Reference in New Issue
Block a user