TUT: use simpler syntax for libs entries

This commit is contained in:
OpenFOAM bot 2019-08-30 16:45:45 +02:00 committed by Andrew Heather
parent 6eaa326cec
commit 880d81475b
212 changed files with 311 additions and 311 deletions

View File

@ -3,7 +3,7 @@
system system
{ {
type systemCall; type systemCall;
libs ("utilityFunctionObjects"); libs (utilityFunctionObjects);
// Execute on the master process only // Execute on the master process only
master true; master true;

View File

@ -15,7 +15,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Make sure all preprocessing tools know about the 'overset' bc // Make sure all preprocessing tools know about the 'overset' bc
libs ("liboverset.so" "libfvMotionSolvers.so"); libs (overset fvMotionSolvers);
application overLaplacianDyMFoam; application overLaplacianDyMFoam;

View File

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

View File

@ -51,7 +51,7 @@ functions
{ {
name error; name error;
type coded; type coded;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
codeEnd codeEnd
#{ #{

View File

@ -49,7 +49,7 @@ adjustTimeStep yes;
maxCo 0.4; maxCo 0.4;
libs ( "libfvMotionSolvers.so" ); libs (fvMotionSolvers);
// ************************************************************************* // // ************************************************************************* //

View File

@ -57,7 +57,7 @@ functions
{ {
name setDeltaT; name setDeltaT;
type coded; type coded;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
code code
#{ #{

View File

@ -3,7 +3,7 @@
momentum momentum
{ {
type momentum; type momentum;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log true; log true;
writeControl writeTime; writeControl writeTime;

View File

@ -56,7 +56,7 @@ functions
{ {
sensitivityAnalysis sensitivityAnalysis
{ {
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
type psiReactionsSensitivityAnalysis; type psiReactionsSensitivityAnalysis;
writeControl writeTime; writeControl writeTime;
} }

View File

@ -59,7 +59,7 @@ functions
patchInlet_phi patchInlet_phi
{ {
type surfaceFieldValue; type surfaceFieldValue;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl timeStep; writeControl timeStep;
writeInterval 200; writeInterval 200;
log true; log true;
@ -73,7 +73,7 @@ functions
wallPanel_qin wallPanel_qin
{ {
type patchProbes; type patchProbes;
libs ("libsampling.so"); libs (sampling);
writeControl timeStep; writeControl timeStep;
writeInterval 200; writeInterval 200;
log true; log true;
@ -90,7 +90,7 @@ functions
inletqr_qin inletqr_qin
{ {
type patchProbes; type patchProbes;
libs ("libsampling.so"); libs (sampling);
writeControl timeStep; writeControl timeStep;
writeInterval 200; writeInterval 200;
log true; log true;
@ -109,7 +109,7 @@ functions
thermoCouple thermoCouple
{ {
type thermoCoupleProbes; type thermoCoupleProbes;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
writeControl timeStep; writeControl timeStep;
writeInterval 100; writeInterval 100;
@ -153,7 +153,7 @@ functions
probes_O2 probes_O2
{ {
type probes; type probes;
libs ("libsampling.so"); libs (sampling);
writeControl timeStep; writeControl timeStep;
writeInterval 200; writeInterval 200;
probeLocations probeLocations

View File

@ -18,7 +18,7 @@ FoamFile
radiation radiation
{ {
type radiation; type radiation;
libs ("libradiationModels.so"); libs (radiationModels);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -49,7 +49,7 @@ adjustTimeStep yes;
maxCo 1; maxCo 1;
libs ( "libsemiPermeableBaffle.so" ); libs (semiPermeableBaffle);
// ************************************************************************* // // ************************************************************************* //

View File

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("liboverset.so" "libfvMotionSolvers.so"); libs (overset fvMotionSolvers);
DebugSwitches DebugSwitches
{ {
@ -63,7 +63,7 @@ functions
probes probes
{ {
type probes; type probes;
libs ("libsampling.so"); libs (sampling);
// Name of the directory for probe data // Name of the directory for probe data
name probes; name probes;
@ -88,7 +88,7 @@ functions
mass mass
{ {
type volFieldValue; type volFieldValue;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl timeStep; writeControl timeStep;
writeInterval 1; writeInterval 1;
@ -105,7 +105,7 @@ functions
rhoVol rhoVol
{ {
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
type coded; type coded;
name rhoVolume; name rhoVolume;
writeControl timeStep; writeControl timeStep;

View File

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

View File

@ -9,7 +9,7 @@
cuttingPlane cuttingPlane
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
interpolationScheme cellPointFace; interpolationScheme cellPointFace;

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
interpolationScheme cellPointFace; interpolationScheme cellPointFace;

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
interpolationScheme cellPoint; interpolationScheme cellPoint;

View File

@ -51,7 +51,7 @@ functions
{ {
type probes; type probes;
libs ("libsampling.so"); libs (sampling);
probeLocations probeLocations
( (

View File

@ -21,7 +21,7 @@ functions
{ {
name createVortices; name createVortices;
type coded; type coded;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
enabled yes; enabled yes;
codeInclude codeInclude

View File

@ -54,7 +54,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields fields

View File

@ -15,7 +15,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Library defines new boundary conditions // Library defines new boundary conditions
libs ("libOpenFOAM.so" "libfieldFunctionObjects.so"); libs (OpenFOAM fieldFunctionObjects);
application rhoPimpleFoam; application rhoPimpleFoam;
@ -56,7 +56,7 @@ functions
minMax minMax
{ {
type fieldMinMax; type fieldMinMax;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
fields (T); fields (T);
} }
} }

View File

@ -4,7 +4,7 @@
externalCoupled externalCoupled
{ {
type externalCoupled; type externalCoupled;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log true; log true;
executeControl timeStep; executeControl timeStep;

View File

@ -53,7 +53,7 @@ functions
{ {
probes probes
{ {
libs ("libsampling.so"); libs (sampling);
type probes; type probes;
name probes; name probes;
writeControl timeStep; writeControl timeStep;

View File

@ -57,7 +57,7 @@ functions
fieldAverage fieldAverage
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields fields
( (

View File

@ -9,7 +9,7 @@
cellZoneID cellZoneID
{ {
type coded; type coded;
libs ("utilityFunctionObjects"); libs (utilityFunctionObjects);
name cellZoneID; name cellZoneID;
executeControl writeTime; executeControl writeTime;
@ -96,7 +96,7 @@ cellZoneID
plane plane
{ {
type surfaces; type surfaces;
libs ("sampling"); libs (sampling);
writeControl writeTime; writeControl writeTime;

View File

@ -3,7 +3,7 @@
ABORT ABORT
{ {
type abort; type abort;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
//file "<case>/ABORT"; // default name //file "<case>/ABORT"; // default name
// action writeNow; // action writeNow;
action nextWrite; action nextWrite;

View File

@ -6,7 +6,7 @@
derivedFields derivedFields
{ {
type derivedFields; type derivedFields;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log true; log true;
writeControl none; writeControl none;

View File

@ -4,7 +4,7 @@
sampled sampled
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
log true; log true;
verbose true; verbose true;

View File

@ -5,7 +5,7 @@
flux flux
{ {
type fluxSummary; type fluxSummary;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log on; log on;
enabled true; enabled true;

View File

@ -3,7 +3,7 @@
tracer0 tracer0
{ {
type scalarTransport; type scalarTransport;
libs ("libsolverFunctionObjects.so"); libs (solverFunctionObjects);
log off; log off;
resetOnStartUp false; resetOnStartUp false;

View File

@ -19,7 +19,7 @@
__settings_avg __settings_avg
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log on; log on;
enabled true; enabled true;
@ -80,7 +80,7 @@ __settings_avg
__settings_stats __settings_stats
{ {
type surfaceFieldValue; type surfaceFieldValue;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log on; log on;
enabled true; enabled true;

View File

@ -6,7 +6,7 @@
derivedFields derivedFields
{ {
type derivedFields; type derivedFields;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log true; log true;
writeControl none; writeControl none;

View File

@ -1,7 +1,7 @@
isentropicPressure isentropicPressure
{ {
type pressure; type pressure;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
enabled yes; enabled yes;
writeControl writeTime; writeControl writeTime;
mode isentropic; mode isentropic;

View File

@ -3,7 +3,7 @@
sampleSets sampleSets
{ {
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
log on; log on;
enabled true; enabled true;

View File

@ -36,7 +36,7 @@ FoamFile
__surfaceFieldValue __surfaceFieldValue
{ {
type surfaceFieldValue; type surfaceFieldValue;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log on; log on;
enabled true; enabled true;
@ -60,7 +60,7 @@ __surfaceFieldValue
sampled sampled
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
log true; log true;
executeControl timeStep; executeControl timeStep;

View File

@ -5,7 +5,7 @@
debug debug
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
log true; log true;
writeControl timeStep; writeControl timeStep;
writeInterval 1; writeInterval 1;

View File

@ -3,7 +3,7 @@
abort abort
{ {
type abort; type abort;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
file "<case>/ABORT"; // Instead of default name file "<case>/ABORT"; // Instead of default name

View File

@ -9,7 +9,7 @@
cuttingPlane cuttingPlane
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;

View File

@ -50,7 +50,7 @@ functions
forces forces
{ {
type forceCoeffs; type forceCoeffs;
libs ("libforces.so"); libs (forces);
writeControl writeTime; writeControl writeTime;
patches patches

View File

@ -47,7 +47,7 @@ runTimeModifiable true;
functions functions
{ {
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
Ma Ma
{ {

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
interpolationScheme cellPoint; interpolationScheme cellPoint;

View File

@ -52,7 +52,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields fields
@ -116,7 +116,7 @@ functions
dsmcFields1 dsmcFields1
{ {
type dsmcFields; type dsmcFields;
libs ("liblagrangianFunctionObjects.so"); libs (lagrangianFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
} }

View File

@ -52,7 +52,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
restartOnOutput off; restartOnOutput off;
@ -117,7 +117,7 @@ functions
dsmcFields1 dsmcFields1
{ {
type dsmcFields; type dsmcFields;
libs ("liblagrangianFunctionObjects.so"); libs (lagrangianFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
} }

View File

@ -52,7 +52,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields fields
@ -117,7 +117,7 @@ functions
dsmcFields1 dsmcFields1
{ {
type dsmcFields; type dsmcFields;
libs ("liblagrangianFunctionObjects.so"); libs (lagrangianFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
} }

View File

@ -52,7 +52,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields fields
@ -117,14 +117,14 @@ functions
dsmcFields1 dsmcFields1
{ {
type dsmcFields; type dsmcFields;
libs ("liblagrangianFunctionObjects.so"); libs (lagrangianFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
forces1 forces1
{ {
type forces; type forces;
libs ("libforces.so"); libs (forces);
writeControl writeTime; writeControl writeTime;
patches (obstacle); patches (obstacle);
directForceDensity true; directForceDensity true;

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
interpolationScheme cellPoint; interpolationScheme cellPoint;

View File

@ -4,7 +4,7 @@
areaWrite areaWrite
{ {
type areaWrite; type areaWrite;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
log true; log true;
writeControl writeTime; writeControl writeTime;

View File

@ -54,7 +54,7 @@ functions
probes probes
{ {
type thermoCoupleProbes; type thermoCoupleProbes;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
writeControl timeStep; writeControl timeStep;
writeInterval 1; writeInterval 1;

View File

@ -17,7 +17,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
interpolationScheme cellPointFace; interpolationScheme cellPointFace;

View File

@ -44,6 +44,6 @@ timePrecision 6;
runTimeModifiable true; runTimeModifiable true;
libs ("libthermalBaffleModels.so"); libs (thermalBaffleModels);
// ************************************************************************* // // ************************************************************************* //

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Library defines new boundary conditions // Library defines new boundary conditions
libs ("libOpenFOAM.so" "libfieldFunctionObjects.so"); libs (OpenFOAM fieldFunctionObjects);
application chtMultiRegionFoam; application chtMultiRegionFoam;

View File

@ -4,7 +4,7 @@
externalCoupled externalCoupled
{ {
type externalCoupled; type externalCoupled;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log true; log true;
// Directory to use for communication // Directory to use for communication

View File

@ -4,7 +4,7 @@
vtkWrite vtkWrite
{ {
type vtkWrite; type vtkWrite;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
log true; log true;
writeControl writeTime; writeControl writeTime;
@ -41,7 +41,7 @@ vtkWrite
walls walls
{ {
type vtkWrite; type vtkWrite;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
log true; log true;
writeControl writeTime; writeControl writeTime;

View File

@ -17,7 +17,7 @@ FoamFile
#include "solverControls" #include "solverControls"
libs ("libliquidPropertiesFvPatchFields.so"); libs (liquidPropertiesFvPatchFields);
application chtMultiRegionFoam; application chtMultiRegionFoam;
@ -56,7 +56,7 @@ functions
H2O H2O
{ {
type scalarTransport; type scalarTransport;
libs ("libsolverFunctionObjects.so"); libs (solverFunctionObjects);
resetOnStartUp no; resetOnStartUp no;
region cabin; region cabin;
field H2O; field H2O;
@ -69,7 +69,7 @@ functions
fileUpdate fileUpdate
{ {
type timeActivatedFileUpdate; type timeActivatedFileUpdate;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
writeControl timeStep; writeControl timeStep;
writeInterval 1; writeInterval 1;
region cabin; region cabin;

View File

@ -56,7 +56,7 @@ functions
massFlux massFlux
{ {
type surfaceFieldValue; type surfaceFieldValue;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
enabled yes; enabled yes;
writeControl timeStep; //writeTime; writeControl timeStep; //writeTime;
writeInterval 1; writeInterval 1;

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Library defines new boundary conditions // Library defines new boundary conditions
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
application chtMultiRegionSimpleFoam; application chtMultiRegionSimpleFoam;

View File

@ -4,7 +4,7 @@
externalCoupled externalCoupled
{ {
type externalCoupled; type externalCoupled;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log true; log true;
// Directory to use for communication // Directory to use for communication

View File

@ -50,7 +50,7 @@ functions
sample1 sample1
{ {
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
writeControl outputTime; writeControl outputTime;
region solid; region solid;
fields (T jouleHeatingSource:V jouleHeatingSource:sigma); fields (T jouleHeatingSource:V jouleHeatingSource:sigma);

View File

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("liboverset.so" "libfvMotionSolvers.so"); libs (overset fvMotionSolvers);
DebugSwitches DebugSwitches
{ {

View File

@ -50,7 +50,7 @@ functions
meshInterp1 meshInterp1
{ {
type mapFields; type mapFields;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl timeStep; writeControl timeStep;
writeInterval 1; writeInterval 1;

View File

@ -16,7 +16,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("liboverset.so" "libfvMotionSolvers.so"); libs (overset fvMotionSolvers);
application overPimpleDyMFoam; application overPimpleDyMFoam;

View File

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("liboverset.so" "libfvMotionSolvers.so"); libs (overset fvMotionSolvers);
application overPimpleDyMFoam; application overPimpleDyMFoam;

View File

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("liboverset.so" "libfvMotionSolvers.so"); libs (overset fvMotionSolvers);
DebugSwitches DebugSwitches
{ {
@ -63,7 +63,7 @@ functions
probes probes
{ {
type probes; type probes;
libs ("libsampling.so"); libs (sampling);
// Name of the directory for probe data // Name of the directory for probe data
name probes; name probes;

View File

@ -49,7 +49,7 @@ functions
forces forces
{ {
type forces; type forces;
libs ( "libforces.so" ); libs (forces);
outputControl timeStep; outputControl timeStep;
outputInterval 10; outputInterval 10;
patches (wing); patches (wing);

View File

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("liboverset.so" "libfvMotionSolvers.so"); libs (overset fvMotionSolvers);
application overSimpleFoam; application overSimpleFoam;

View File

@ -22,7 +22,7 @@ functions
type processorField; type processorField;
// Where to load it from (if not already in solver) // Where to load it from (if not already in solver)
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
// Function object enabled flag // Function object enabled flag
enabled true; enabled true;

View File

@ -50,7 +50,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields fields

View File

@ -50,39 +50,39 @@ functions
Q1 Q1
{ {
type Q; type Q;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
vorticity1 vorticity1
{ {
type vorticity; type vorticity;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
yPlus yPlus
{ {
type yPlus; type yPlus;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
lambVector1 lambVector1
{ {
type lambVector; type lambVector;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
field U; field U;
} }
div1 div1
{ {
type div; type div;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
field lambVector; field lambVector;
} }
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
timeStart 8.5; timeStart 8.5;

View File

@ -52,7 +52,7 @@ functions
energySpectrum1 energySpectrum1
{ {
type energySpectrum; type energySpectrum;
libs ("librandomProcessesFunctionObjects.so"); libs (randomProcessesFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
} }

View File

@ -15,7 +15,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("libturbulenceModelSchemes.so"); libs (turbulenceModelSchemes);
application pimpleFoam; application pimpleFoam;
@ -54,7 +54,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
timeStart 1500.5; // approx 2x flow-throughs timeStart 1500.5; // approx 2x flow-throughs
fields fields
@ -78,7 +78,7 @@ functions
columnAverage columnAverage
{ {
type columnAverage; type columnAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
executeControl writeTime; executeControl writeTime;
writeControl none; writeControl none;
@ -98,7 +98,7 @@ functions
sample sample
{ {
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;
timeStart 1500.5; // approx 2x flow-throughs timeStart 1500.5; // approx 2x flow-throughs

View File

@ -20,7 +20,7 @@ functions
cuttingPlane cuttingPlane
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;
surfaceFormat vtk; surfaceFormat vtk;

View File

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("libturbulenceModelSchemes.so"); libs (turbulenceModelSchemes);
application pimpleFoam; application pimpleFoam;
@ -51,38 +51,38 @@ functions
minMax minMax
{ {
type fieldMinMax; type fieldMinMax;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
fields (U p); fields (U p);
} }
DESField DESField
{ {
type DESModelRegions; type DESModelRegions;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
//region "region0"; //region "region0";
writeControl writeTime; writeControl writeTime;
} }
Q1 Q1
{ {
type Q; type Q;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
vorticity1 vorticity1
{ {
type vorticity; type vorticity;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
yPlus yPlus
{ {
type yPlus; type yPlus;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
} }
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
timeStart 10; timeStart 10;

View File

@ -17,7 +17,7 @@ FoamFile
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;
interpolationScheme cellPoint; interpolationScheme cellPoint;

View File

@ -52,7 +52,7 @@ functions
turbulenceFields turbulenceFields
{ {
type turbulenceFields; type turbulenceFields;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields (R nuTilda k epsilon omega L); fields (R nuTilda k epsilon omega L);
} }

View File

@ -49,14 +49,14 @@ functions
{ {
minMax1 minMax1
{ {
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
type fieldMinMax; type fieldMinMax;
fields (U p); fields (U p);
} }
curle curle
{ {
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
type Curle; type Curle;
writeControl writeTime; writeControl writeTime;
timeStart 0.1; timeStart 0.1;
@ -68,7 +68,7 @@ functions
cuttingPlane cuttingPlane
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
writeControl timeStep; writeControl timeStep;
writeInterval 2; writeInterval 2;
timeStart 0.1; timeStart 0.1;
@ -105,7 +105,7 @@ functions
forces forces
{ {
type forces; type forces;
libs ("libforces.so"); libs (forces);
writeControl writeTime; writeControl writeTime;
timeStart 0.1; timeStart 0.1;
@ -120,7 +120,7 @@ functions
probes probes
{ {
type patchProbes; type patchProbes;
libs ("libsampling.so"); libs (sampling);
writeControl timeStep; writeControl timeStep;
timeStart 0.1; timeStart 0.1;

View File

@ -54,7 +54,7 @@ functions
probes probes
{ {
// Where to load it from // Where to load it from
libs ("libsampling.so"); libs (sampling);
type probes; type probes;
@ -83,7 +83,7 @@ functions
sTransport sTransport
{ {
type scalarTransport; type scalarTransport;
libs ("libsolverFunctionObjects.so"); libs (solverFunctionObjects);
enabled true; enabled true;
writeControl outputTime; writeControl outputTime;

View File

@ -55,7 +55,7 @@ functions
sTransport sTransport
{ {
type energyTransport; type energyTransport;
libs ("libsolverFunctionObjects.so"); libs (solverFunctionObjects);
enabled true; enabled true;
writeControl outputTime; writeControl outputTime;

View File

@ -54,7 +54,7 @@ functions
probes probes
{ {
// Where to load it from // Where to load it from
libs ("libsampling.so"); libs (sampling);
type probes; type probes;

View File

@ -15,7 +15,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("libOpenFOAM.so" "libfieldFunctionObjects.so"); libs (OpenFOAM fieldFunctionObjects);
application pimpleFoam; application pimpleFoam;

View File

@ -9,7 +9,7 @@
planes planes
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
// Time control etc // Time control etc
${_visualization}; ${_visualization};

View File

@ -9,7 +9,7 @@
AMIWeights AMIWeights
{ {
type AMIWeights; type AMIWeights;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
writeFields no; writeFields no;
// writeFields yes; // writeFields yes;

View File

@ -10,7 +10,7 @@ forces
{ {
type forces; type forces;
libs ("libforces.so"); libs (forces);
writeControl timeStep; writeControl timeStep;
timeInterval 1; timeInterval 1;

View File

@ -9,7 +9,7 @@
surfaces surfaces
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;
surfaceFormat vtk; surfaceFormat vtk;

View File

@ -16,7 +16,7 @@ FoamFile
dynamicFvMesh dynamicMotionSolverFvMesh; dynamicFvMesh dynamicMotionSolverFvMesh;
motionSolverLibs ("libsixDoFRigidBodyMotion.so"); motionSolverLibs ("sixDoFRigidBodyMotion");
motionSolver sixDoFRigidBodyMotion; motionSolver sixDoFRigidBodyMotion;

View File

@ -54,7 +54,7 @@ functions
sixDoFRigidBodyState sixDoFRigidBodyState
{ {
type sixDoFRigidBodyState; type sixDoFRigidBodyState;
libs ("libsixDoFRigidBodyState.so"); libs (sixDoFRigidBodyState);
angleFormat degrees; angleFormat degrees;
} }

View File

@ -9,7 +9,7 @@
ensightWrite ensightWrite
{ {
type ensightWrite; type ensightWrite;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
log true; log true;
fields (U p); fields (U p);

View File

@ -9,7 +9,7 @@
forces forces
{ {
type forces; type forces;
libs ("libforces.so"); libs (forces);
writeControl timeStep; writeControl timeStep;
writeInterval 10; writeInterval 10;

View File

@ -9,7 +9,7 @@
cuttingPlane cuttingPlane
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;

View File

@ -3,7 +3,7 @@
vtkWrite vtkWrite
{ {
type vtkWrite; type vtkWrite;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
writeControl writeTime; writeControl writeTime;
boundary false; boundary false;

View File

@ -19,7 +19,7 @@ Description
// setConfig { type midPoint; } // setConfig { type midPoint; }
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;

View File

@ -19,7 +19,7 @@ Description
// setConfig { type midPoint; } // setConfig { type midPoint; }
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;

View File

@ -14,7 +14,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("libOpenFOAM.so" "libfieldFunctionObjects.so"); libs (OpenFOAM fieldFunctionObjects);
application pisoFoam; application pisoFoam;

View File

@ -15,7 +15,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs ("libOpenFOAM.so" "libfieldFunctionObjects.so"); libs (OpenFOAM fieldFunctionObjects);
application simpleFoam; application simpleFoam;

View File

@ -9,7 +9,7 @@
forces forces
{ {
type forceCoeffs; type forceCoeffs;
libs ("libforces.so"); libs (forces);
writeControl timeStep; writeControl timeStep;
writeInterval 1; writeInterval 1;

View File

@ -9,7 +9,7 @@
samples samples
{ {
type surfaces; type surfaces;
libs ("libsampling.so"); libs (sampling);
// Time control etc // Time control etc
${_visualization}; ${_visualization};

View File

@ -9,7 +9,7 @@
residuals residuals
{ {
type solverInfo; type solverInfo;
libs ("libutilityFunctionObjects.so"); libs (utilityFunctionObjects);
writeResidualFields true; writeResidualFields true;
writeControl outputTime; writeControl outputTime;
fields (p); fields (p);
@ -18,7 +18,7 @@ residuals
blendingFactor blendingFactor
{ {
type stabilityBlendingFactor; type stabilityBlendingFactor;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
log true; log true;
writeToFile false; writeToFile false;

View File

@ -50,7 +50,7 @@ functions
probes probes
{ {
type probes; type probes;
libs ("libsampling.so"); libs (sampling);
writeControl timeStep; writeControl timeStep;
writeInterval 1; writeInterval 1;
@ -75,7 +75,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields fields
@ -103,7 +103,7 @@ functions
type surfaces; type surfaces;
// Where to load it from (if not already in solver) // Where to load it from (if not already in solver)
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;
interpolationScheme cellPoint; interpolationScheme cellPoint;

View File

@ -50,7 +50,7 @@ functions
probes probes
{ {
type probes; type probes;
libs ("libsampling.so"); libs (sampling);
writeControl timeStep; writeControl timeStep;
writeInterval 1; writeInterval 1;
@ -75,7 +75,7 @@ functions
fieldAverage1 fieldAverage1
{ {
type fieldAverage; type fieldAverage;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;
fields fields
@ -103,7 +103,7 @@ functions
type surfaces; type surfaces;
// Where to load it from (if not already in solver) // Where to load it from (if not already in solver)
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;
interpolationScheme cellPoint; interpolationScheme cellPoint;

View File

@ -1,5 +1,5 @@
type pressure; type pressure;
libs ("libfieldFunctionObjects.so"); libs (fieldFunctionObjects);
writeControl writeTime; writeControl writeTime;

View File

@ -1,5 +1,5 @@
type sets; type sets;
libs ("libsampling.so"); libs (sampling);
writeControl writeTime; writeControl writeTime;

Some files were not shown because too many files have changed in this diff Show More