mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
TUT: use simpler syntax for libs entries
This commit is contained in:
committed by
Andrew Heather
parent
6eaa326cec
commit
880d81475b
@ -15,7 +15,7 @@ FoamFile
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
libs ("libblockMesh.so");
|
||||
libs (blockMesh);
|
||||
|
||||
application PDRblockMesh;
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@ FoamFile
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
libs ("libblockMesh.so");
|
||||
libs (blockMesh);
|
||||
|
||||
DebugSwitches
|
||||
{
|
||||
|
||||
@ -46,7 +46,7 @@ timePrecision 6;
|
||||
|
||||
runTimeModifiable yes;
|
||||
|
||||
libs ("libdistributed.so");
|
||||
libs (distributed);
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -15,7 +15,7 @@ FoamFile
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
libs ("libfvMotionSolvers.so");
|
||||
libs (fvMotionSolvers);
|
||||
|
||||
application moveDynamicMesh;
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@ FoamFile
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
libs ("libfvMotionSolvers.so");
|
||||
libs (fvMotionSolvers);
|
||||
|
||||
application moveDynamicMesh;
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@ FoamFile
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
// Where to load it from (if not already in solver)
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
DebugSwitches
|
||||
{
|
||||
@ -61,7 +61,7 @@ functions
|
||||
type processorField;
|
||||
|
||||
// Where to load it from (if not already in solver)
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
// Function object enabled flag
|
||||
enabled true;
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
cuttingPlane
|
||||
{
|
||||
type surfaces;
|
||||
libs ("libsampling.so");
|
||||
libs (sampling);
|
||||
writeControl writeTime;
|
||||
|
||||
surfaceFormat vtk;
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
ensightWrite
|
||||
{
|
||||
type ensightWrite;
|
||||
libs ("libutilityFunctionObjects.so");
|
||||
libs (utilityFunctionObjects);
|
||||
log true;
|
||||
|
||||
// Fields to output (words or regex)
|
||||
|
||||
@ -10,7 +10,7 @@ forceCoeffs1
|
||||
{
|
||||
type forceCoeffs;
|
||||
|
||||
libs ("libforces.so");
|
||||
libs (forces);
|
||||
|
||||
writeControl timeStep;
|
||||
timeInterval 1;
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
streamLines
|
||||
{
|
||||
// Where to load it from
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
type streamLine;
|
||||
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
near
|
||||
{
|
||||
// Where to load it from
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
type nearWallFields;
|
||||
|
||||
@ -39,7 +39,7 @@ near
|
||||
wallBoundedStreamLines
|
||||
{
|
||||
// Where to load it from (if not already in solver)
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
libs (fieldFunctionObjects);
|
||||
type wallBoundedStreamLine;
|
||||
|
||||
// Output every
|
||||
|
||||
Reference in New Issue
Block a user