mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
forceCoeffs1
|
|
{
|
|
type forceCoeffs;
|
|
|
|
functionObjectLibs ( "libforces.so" );
|
|
|
|
outputControl timeStep;
|
|
timeInterval 1;
|
|
|
|
log yes;
|
|
|
|
patches ( motorBikeGroup );
|
|
rhoName rhoInf; // Indicates incompressible
|
|
rhoInf 1; // Redundant for incompressible
|
|
liftDir (0 0 1);
|
|
dragDir (1 0 0);
|
|
CofR (0.72 0 0); // Axle midpoint on ground
|
|
pitchAxis (0 1 0);
|
|
magUInf 20;
|
|
lRef 1.42; // Wheelbase length
|
|
Aref 0.75; // Estimated
|
|
/*
|
|
binData
|
|
{
|
|
nBin 20; // output data into 20 bins
|
|
direction (1 0 0); // bin direction
|
|
cumulative yes;
|
|
}
|
|
*/
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|