mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: forces - removed unused entry
This commit is contained in:
@ -512,7 +512,6 @@ Foam::forces::forces
|
|||||||
binDx_(0.0),
|
binDx_(0.0),
|
||||||
binMin_(GREAT),
|
binMin_(GREAT),
|
||||||
binPoints_(),
|
binPoints_(),
|
||||||
binFormat_("undefined"),
|
|
||||||
binCumulative_(true),
|
binCumulative_(true),
|
||||||
initialised_(false)
|
initialised_(false)
|
||||||
{
|
{
|
||||||
@ -573,7 +572,6 @@ Foam::forces::forces
|
|||||||
binDx_(0.0),
|
binDx_(0.0),
|
||||||
binMin_(GREAT),
|
binMin_(GREAT),
|
||||||
binPoints_(),
|
binPoints_(),
|
||||||
binFormat_("undefined"),
|
|
||||||
binCumulative_(true),
|
binCumulative_(true),
|
||||||
initialised_(false)
|
initialised_(false)
|
||||||
{
|
{
|
||||||
@ -702,8 +700,6 @@ void Foam::forces::read(const dictionary& dict)
|
|||||||
binPoints_[i] = (i + 0.5)*binDir_*binDx_;
|
binPoints_[i] = (i + 0.5)*binDir_*binDx_;
|
||||||
}
|
}
|
||||||
|
|
||||||
binDict.lookup("format") >> binFormat_;
|
|
||||||
|
|
||||||
binDict.lookup("cumulative") >> binCumulative_;
|
binDict.lookup("cumulative") >> binCumulative_;
|
||||||
|
|
||||||
// allocate storage for forces and moments
|
// allocate storage for forces and moments
|
||||||
|
|||||||
@ -208,9 +208,6 @@ protected:
|
|||||||
//- Bin positions along binDir
|
//- Bin positions along binDir
|
||||||
List<point> binPoints_;
|
List<point> binPoints_;
|
||||||
|
|
||||||
//- Write format for bin data
|
|
||||||
word binFormat_;
|
|
||||||
|
|
||||||
//- Should bin data be cumulative?
|
//- Should bin data be cumulative?
|
||||||
bool binCumulative_;
|
bool binCumulative_;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user