mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Changes to keep clang happy.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
volScalarField rAUrel = 1.0/UrelEqn().A();
|
||||
volScalarField rAUrel(1.0/UrelEqn().A());
|
||||
Urel = rAUrel*UrelEqn().H();
|
||||
|
||||
if (pimple.nCorr() <= 1)
|
||||
|
||||
@ -83,10 +83,8 @@ class fanPressureFvPatchScalarField
|
||||
:
|
||||
public totalPressureFvPatchScalarField
|
||||
{
|
||||
// Private data
|
||||
|
||||
//- Tabulated fan curve
|
||||
interpolationTable<scalar> fanCurve_;
|
||||
public:
|
||||
|
||||
//- Fan flow direction
|
||||
enum fanFlowDirection
|
||||
@ -97,6 +95,13 @@ class fanPressureFvPatchScalarField
|
||||
|
||||
static const NamedEnum<fanFlowDirection, 2> fanFlowDirectionNames_;
|
||||
|
||||
private:
|
||||
|
||||
// Private data
|
||||
|
||||
//- Tabulated fan curve
|
||||
interpolationTable<scalar> fanCurve_;
|
||||
|
||||
//- Direction of flow through the fan relative to patch
|
||||
fanFlowDirection direction_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user