mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: binModel: make decomposePatchValues entry optional (#2530)
DOC: forceCoeffs: correct the header file content (#2530)
This commit is contained in:
@ -180,7 +180,7 @@ bool Foam::binModel::read(const dictionary& dict)
|
|||||||
cellZoneIDs_.transfer(zoneIDs);
|
cellZoneIDs_.transfer(zoneIDs);
|
||||||
}
|
}
|
||||||
|
|
||||||
decomposePatchValues_ = dict.get<bool>("decomposePatchValues");
|
decomposePatchValues_ = dict.getOrDefault("decomposePatchValues", false);
|
||||||
|
|
||||||
filePtrs_.setSize(fieldNames_.size());
|
filePtrs_.setSize(fieldNames_.size());
|
||||||
forAll(filePtrs_, i)
|
forAll(filePtrs_, i)
|
||||||
|
|||||||
@ -185,12 +185,12 @@ Usage
|
|||||||
CmRoll | Roll-moment coefficient
|
CmRoll | Roll-moment coefficient
|
||||||
CmPitch | Pitch-moment coefficient
|
CmPitch | Pitch-moment coefficient
|
||||||
CmYaw | Yaw-moment coefficient
|
CmYaw | Yaw-moment coefficient
|
||||||
Cdf | Front-axle drag coefficient
|
Cd(f) | Front-axle drag coefficient
|
||||||
Csf | Front-axle side-force coefficient
|
Cs(f) | Front-axle side-force coefficient
|
||||||
Clf | Front-axle lift coefficient
|
Cl(f) | Front-axle lift coefficient
|
||||||
Cdr | Rear-axle drag coefficient
|
Cd(r) | Rear-axle drag coefficient
|
||||||
Csr | Rear-axle side-force coefficient
|
Cs(r) | Rear-axle side-force coefficient
|
||||||
Clr | Rear-axle lift coefficient
|
Cl(r) | Rear-axle lift coefficient
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|
||||||
The inherited entries are elaborated in:
|
The inherited entries are elaborated in:
|
||||||
|
|||||||
Reference in New Issue
Block a user