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

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