Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
997c9a23
Commit
997c9a23
authored
May 23, 2020
by
Mark OLESEN
Browse files
STYLE: use compact form for libs () entries
parent
b68ab9bd
Changes
101
Hide whitespace changes
Inline
Side-by-side
applications/solvers/multiphase/reactingEulerFoam/functionObjects/phaseForces/phaseForces.H
View file @
997c9a23
...
...
@@ -41,8 +41,8 @@ Description
\verbatim
phaseForces.water
{
type
phaseForces;
libs (
"lib
reactingEulerFoamFunctionObjects
.so"
);
type phaseForces;
libs (reactingEulerFoamFunctionObjects);
writeControl writeTime;
writeInterval 1;
...
...
applications/solvers/multiphase/reactingEulerFoam/functionObjects/sizeDistribution/sizeDistribution.H
View file @
997c9a23
...
...
@@ -38,7 +38,7 @@ Description
box.all.numberDensity.volume.bubbles
{
type sizeDistribution;
libs (
"lib
reactingEulerFoamFunctionObjects
.so"
);
libs (reactingEulerFoamFunctionObjects);
writeControl outputTime;
writeInterval 1;
log true;
...
...
applications/test/PDRblockMesh/box0/system/controlDict
View file @
997c9a23
...
...
@@ -15,7 +15,7 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs (
"lib
blockMesh
.so"
);
libs (blockMesh);
application PDRblockMesh;
...
...
applications/test/mapDistributePolyMesh/cavity/system/processorField
View file @
997c9a23
...
...
@@ -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;
...
...
applications/test/parallelOverset/heatTransfer/system/controlDict
View file @
997c9a23
...
...
@@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Make sure all preprocessing tools know about the 'overset' bc
libs (
"lib
overset
.so"
);
libs (overset);
DebugSwitches
{
...
...
applications/test/parallelOverset/heatTransfer/system/postProcessingDict
View file @
997c9a23
...
...
@@ -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;
}
}
...
...
applications/test/parallelOverset/heatTransfer/system/processorField
View file @
997c9a23
...
...
@@ -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;
}
...
...
etc/caseDicts/annotated/runTimePostProcessingDict
View file @
997c9a23
...
...
@@ -19,7 +19,7 @@ FoamFile
type runTimePostProcessing;
// Where to load it from
libs (
"
runTimePostProcessing
"
);
libs (runTimePostProcessing);
// Function object enabled flag
enabled true;
...
...
src/OpenFOAM/db/functionObjects/functionObject/functionObject.H
View file @
997c9a23
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2017-20
18
OpenCFD Ltd.
Copyright (C) 2017-20
20
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -48,7 +48,7 @@ Description
<functionObjectName>
{
type functionObjectType;
libs (
"libM
yFunctionObject
l
ib
.so"
);
libs (
m
yFunctionObject
L
ib);
region defaultRegion;
enabled yes;
timeStart 0;
...
...
src/functionObjects/doc/functionObjects.dox
View file @
997c9a23
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2012-2014 OpenFOAM Foundation
Copyright (C) 2015-20
17
OpenCFD Ltd.
Copyright (C) 2015-20
20
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -61,7 +61,7 @@ functions
myFunctionObject // user-defined name of function object entry
{
type functionObjectType;
libs (
"libM
yFunctionObject
l
ib
.so"
);
libs (
m
yFunctionObject
L
ib);
region defaultRegion;
enabled yes;
timeStart 0;
...
...
src/functionObjects/field/AMIWeights/AMIWeights.H
View file @
997c9a23
...
...
@@ -5,7 +5,7 @@
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2018 OpenCFD Ltd.
Copyright (C) 2018
-2020
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -40,7 +40,7 @@ Usage
AMIWeights1
{
type AMIWeights;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
writeFields yes;
}
\endverbatim
...
...
src/functionObjects/field/CourantNo/CourantNo.H
View file @
997c9a23
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2013-2016 OpenFOAM Foundation
Copyright (C) 2015-20
16
OpenCFD Ltd.
Copyright (C) 2015-20
20
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -41,7 +41,7 @@ Usage
CourantNo1
{
type CourantNo;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
...
}
\endverbatim
...
...
src/functionObjects/field/Curle/Curle.H
View file @
997c9a23
...
...
@@ -57,7 +57,7 @@ Usage
Curle1
{
type Curle;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
...
patches (surface1 surface2);
c0 330;
...
...
src/functionObjects/field/DESModelRegions/DESModelRegions.H
View file @
997c9a23
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2013-2015 OpenFOAM Foundation
Copyright (C) 2016 OpenCFD Ltd.
Copyright (C) 2016
-2020
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -45,7 +45,7 @@ Usage
DESModelRegions1
{
type DESModelRegions;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
...
}
\endverbatim
...
...
src/functionObjects/field/PecletNo/PecletNo.H
View file @
997c9a23
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2013-2016 OpenFOAM Foundation
Copyright (C) 2015 OpenCFD Ltd.
Copyright (C) 2015
-2020
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -39,7 +39,7 @@ Usage
PecletNo1
{
type PecletNo;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
...
}
\endverbatim
...
...
src/functionObjects/field/Q/Q.H
View file @
997c9a23
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2013-2016 OpenFOAM Foundation
Copyright (C) 2016 OpenCFD Ltd.
Copyright (C) 2016
-2020
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -49,7 +49,7 @@ Usage
Q1
{
type Q;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
...
}
\endverbatim
...
...
src/functionObjects/field/XiReactionRate/XiReactionRate.H
View file @
997c9a23
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2016 OpenFOAM Foundation
Copyright (C) 2016 OpenCFD Ltd.
Copyright (C) 2016
-2020
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -40,7 +40,7 @@ Usage
XiReactionRate
{
type XiReactionRate;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
...
}
\endverbatim
...
...
src/functionObjects/field/add/add.H
View file @
997c9a23
...
...
@@ -6,6 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2016 OpenFOAM Foundation
Copyright (C) 2020 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -40,7 +41,7 @@ Description
Ttot
{
type add;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
fields (T Tdelta);
result Ttot;
executeControl writeTime;
...
...
src/functionObjects/field/blendingFactor/blendingFactor.H
View file @
997c9a23
...
...
@@ -6,7 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2013-2016 OpenFOAM Foundation
Copyright (C) 2016 OpenCFD Ltd.
Copyright (C) 2016
-2020
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -60,7 +60,7 @@ Usage
blendingFactor1
{
type blendingFactor;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
...
...
...
src/functionObjects/field/columnAverage/columnAverage.H
View file @
997c9a23
...
...
@@ -5,7 +5,7 @@
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2018 OpenCFD Ltd.
Copyright (C) 2018
-2020
OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
...
...
@@ -45,7 +45,7 @@ Usage
columnAverage1
{
type columnAverage;
libs (
"lib
fieldFunctionObjects
.so"
);
libs (fieldFunctionObjects);
...
patches (front side);
fields (U p);
...
...
Prev
1
2
3
4
5
6
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment