mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use compact form for libs () entries
This commit is contained in:
@ -41,8 +41,8 @@ Description
|
||||
\verbatim
|
||||
phaseForces.water
|
||||
{
|
||||
type phaseForces;
|
||||
libs ("libreactingEulerFoamFunctionObjects.so");
|
||||
type phaseForces;
|
||||
libs (reactingEulerFoamFunctionObjects);
|
||||
writeControl writeTime;
|
||||
writeInterval 1;
|
||||
|
||||
|
||||
@ -38,7 +38,7 @@ Description
|
||||
box.all.numberDensity.volume.bubbles
|
||||
{
|
||||
type sizeDistribution;
|
||||
libs ("libreactingEulerFoamFunctionObjects.so");
|
||||
libs (reactingEulerFoamFunctionObjects);
|
||||
writeControl outputTime;
|
||||
writeInterval 1;
|
||||
log true;
|
||||
|
||||
@ -15,7 +15,7 @@ FoamFile
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
libs ("libblockMesh.so");
|
||||
libs (blockMesh);
|
||||
|
||||
application PDRblockMesh;
|
||||
|
||||
|
||||
@ -19,8 +19,7 @@ functions
|
||||
processorField
|
||||
{
|
||||
type processorField;
|
||||
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
enabled true;
|
||||
|
||||
@ -29,8 +28,7 @@ functions
|
||||
cellID
|
||||
{
|
||||
type coded;
|
||||
|
||||
libs ("libutilityFunctionObjects.so");
|
||||
libs (utilityFunctionObjects);
|
||||
|
||||
name cellID;
|
||||
|
||||
|
||||
@ -16,7 +16,7 @@ FoamFile
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
// Make sure all preprocessing tools know about the 'overset' bc
|
||||
libs ("liboverset.so");
|
||||
libs (overset);
|
||||
|
||||
DebugSwitches
|
||||
{
|
||||
|
||||
@ -18,16 +18,10 @@ functions
|
||||
{
|
||||
processorField1
|
||||
{
|
||||
// Type of functionObject
|
||||
type processorField;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
// Where to load it from (if not already in solver)
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
|
||||
// Function object enabled flag
|
||||
enabled true;
|
||||
|
||||
// When to output the average fields
|
||||
writeControl writeTime;
|
||||
}
|
||||
}
|
||||
|
||||
@ -16,16 +16,10 @@ FoamFile
|
||||
|
||||
processorField
|
||||
{
|
||||
// Type of functionObject
|
||||
type processorField;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
// Where to load it from (if not already in solver)
|
||||
libs ("libfieldFunctionObjects.so");
|
||||
|
||||
// Function object enabled flag
|
||||
enabled true;
|
||||
|
||||
// When to output the average fields
|
||||
writeControl timeStep;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user