STYLE: use compact form for libs () entries

This commit is contained in:
Mark Olesen
2020-05-23 17:44:25 +02:00
parent b68ab9bd5a
commit 997c9a232c
101 changed files with 193 additions and 203 deletions

View File

@ -41,8 +41,8 @@ Description
\verbatim
phaseForces.water
{
type phaseForces;
libs ("libreactingEulerFoamFunctionObjects.so");
type phaseForces;
libs (reactingEulerFoamFunctionObjects);
writeControl writeTime;
writeInterval 1;

View File

@ -38,7 +38,7 @@ Description
box.all.numberDensity.volume.bubbles
{
type sizeDistribution;
libs ("libreactingEulerFoamFunctionObjects.so");
libs (reactingEulerFoamFunctionObjects);
writeControl outputTime;
writeInterval 1;
log true;

View File

@ -15,7 +15,7 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("libblockMesh.so");
libs (blockMesh);
application PDRblockMesh;

View File

@ -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;

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Make sure all preprocessing tools know about the 'overset' bc
libs ("liboverset.so");
libs (overset);
DebugSwitches
{

View File

@ -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;
}
}

View File

@ -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;
}