mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Initial testing updates
This commit is contained in:
@ -50,26 +50,26 @@ functions
|
||||
Q1
|
||||
{
|
||||
type Q;
|
||||
functionObjectLibs ("libutilityFunctionObjects.so");
|
||||
outputControl outputTime;
|
||||
functionObjectLibs ("libfieldFunctionObjects.so");
|
||||
writeControl writeTime;
|
||||
}
|
||||
vorticity1
|
||||
{
|
||||
type vorticity;
|
||||
functionObjectLibs ("libutilityFunctionObjects.so");
|
||||
outputControl outputTime;
|
||||
functionObjectLibs ("libfieldFunctionObjects.so");
|
||||
writeControl writeTime;
|
||||
}
|
||||
yPlus
|
||||
{
|
||||
type yPlus;
|
||||
functionObjectLibs ("libutilityFunctionObjects.so");
|
||||
outputControl outputTime;
|
||||
functionObjectLibs ("libfieldFunctionObjects.so");
|
||||
writeControl writeTime;
|
||||
}
|
||||
fieldAverage1
|
||||
{
|
||||
type fieldAverage;
|
||||
functionObjectLibs ( "libfieldFunctionObjects.so" );
|
||||
outputControl outputTime;
|
||||
writeControl writeTime;
|
||||
timeStart 8.5;
|
||||
|
||||
fields
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
postPro1
|
||||
{
|
||||
type runTimePostProcessing;
|
||||
functionObjectLibs ("librunTimePostProcessing.so");
|
||||
outputControl outputTime;
|
||||
libs ("librunTimePostProcessing.so");
|
||||
writeControl writeTime;
|
||||
output
|
||||
{
|
||||
name image;
|
||||
|
||||
@ -14,6 +14,7 @@ nLines 10;
|
||||
start (-0.0205 0.001 0.00001);
|
||||
end (-0.0205 0.0251 0.00001);
|
||||
fields (p k U);
|
||||
U U;
|
||||
|
||||
// Must be last entry
|
||||
#includeEtc "caseDicts/postProcessing/visualization/streamlines.cfg"
|
||||
|
||||
@ -49,32 +49,31 @@ functions
|
||||
{
|
||||
forceCoeffs1
|
||||
{
|
||||
type forceCoeffs;
|
||||
type forceCoeffs;
|
||||
libs ("libforces.so" );
|
||||
writeControl writeTime;
|
||||
writeFields true;
|
||||
|
||||
functionObjectLibs ( "libforces.so" );
|
||||
outputControl outputTime;
|
||||
writeFields true;
|
||||
|
||||
patches (body);
|
||||
pName p;
|
||||
UName U;
|
||||
rhoName rhoInf; // Indicates incompressible
|
||||
log true;
|
||||
rhoInf 1; // Redundant for incompressible
|
||||
liftDir (0 1 0);
|
||||
dragDir (1 0 0);
|
||||
CofR (3.5 0 0); // Axle midpoint on ground
|
||||
pitchAxis (0 0 1);
|
||||
magUInf 10;
|
||||
lRef 4; // Wheelbase length
|
||||
Aref 1; // Estimated
|
||||
porosity on;
|
||||
patches (body);
|
||||
p p;
|
||||
U U;
|
||||
rho rhoInf; // Indicates incompressible
|
||||
log true;
|
||||
rhoInf 1; // Redundant for incompressible
|
||||
liftDir (0 1 0);
|
||||
dragDir (1 0 0);
|
||||
CofR (3.5 0 0); // Axle midpoint on ground
|
||||
pitchAxis (0 0 1);
|
||||
magUInf 10;
|
||||
lRef 4; // Wheelbase length
|
||||
Aref 1; // Estimated
|
||||
porosity on;
|
||||
|
||||
binData
|
||||
{
|
||||
nBin 20; // output data into 20 bins
|
||||
direction (1 0 0); // bin direction
|
||||
cumulative yes;
|
||||
nBin 20; // output data into 20 bins
|
||||
direction (1 0 0); // bin direction
|
||||
cumulative yes;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,34 +8,31 @@
|
||||
|
||||
forceCoeffs1
|
||||
{
|
||||
type forceCoeffs;
|
||||
type forceCoeffs;
|
||||
libs ("libforces.so");
|
||||
writeControl writeTime;
|
||||
writeFields true;
|
||||
|
||||
functionObjectLibs ( "libforces.so" );
|
||||
|
||||
outputControl outputTime;
|
||||
|
||||
writeFields true;
|
||||
|
||||
patches (body);
|
||||
pName p;
|
||||
UName U;
|
||||
rhoName rhoInf; // Indicates incompressible
|
||||
log true;
|
||||
rhoInf 1; // Redundant for incompressible
|
||||
liftDir (0 1 0);
|
||||
dragDir (1 0 0);
|
||||
CofR (3.5 0 0); // Axle midpoint on ground
|
||||
pitchAxis (0 0 1);
|
||||
magUInf 10;
|
||||
lRef 4; // Wheelbase length
|
||||
Aref 1; // Estimated
|
||||
porosity on;
|
||||
patches (body);
|
||||
p p;
|
||||
U U;
|
||||
rho rhoInf; // Indicates incompressible
|
||||
log true;
|
||||
rhoInf 1; // Redundant for incompressible
|
||||
liftDir (0 1 0);
|
||||
dragDir (1 0 0);
|
||||
CofR (3.5 0 0); // Axle midpoint on ground
|
||||
pitchAxis (0 0 1);
|
||||
magUInf 10;
|
||||
lRef 4; // Wheelbase length
|
||||
Aref 1; // Estimated
|
||||
porosity on;
|
||||
|
||||
binData
|
||||
{
|
||||
nBin 20; // output data into 20 bins
|
||||
direction (1 0 0); // bin direction
|
||||
cumulative yes;
|
||||
nBin 20; // output data into 20 bins
|
||||
direction (1 0 0); // bin direction
|
||||
cumulative yes;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user