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();
|
Urel = rAUrel*UrelEqn().H();
|
||||||
|
|
||||||
if (pimple.nCorr() <= 1)
|
if (pimple.nCorr() <= 1)
|
||||||
|
|||||||
@ -83,10 +83,8 @@ class fanPressureFvPatchScalarField
|
|||||||
:
|
:
|
||||||
public totalPressureFvPatchScalarField
|
public totalPressureFvPatchScalarField
|
||||||
{
|
{
|
||||||
// Private data
|
|
||||||
|
|
||||||
//- Tabulated fan curve
|
public:
|
||||||
interpolationTable<scalar> fanCurve_;
|
|
||||||
|
|
||||||
//- Fan flow direction
|
//- Fan flow direction
|
||||||
enum fanFlowDirection
|
enum fanFlowDirection
|
||||||
@ -97,6 +95,13 @@ class fanPressureFvPatchScalarField
|
|||||||
|
|
||||||
static const NamedEnum<fanFlowDirection, 2> fanFlowDirectionNames_;
|
static const NamedEnum<fanFlowDirection, 2> fanFlowDirectionNames_;
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
// Private data
|
||||||
|
|
||||||
|
//- Tabulated fan curve
|
||||||
|
interpolationTable<scalar> fanCurve_;
|
||||||
|
|
||||||
//- Direction of flow through the fan relative to patch
|
//- Direction of flow through the fan relative to patch
|
||||||
fanFlowDirection direction_;
|
fanFlowDirection direction_;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user