Skip to content
Snippets Groups Projects
Commit 012dc7ec authored by Henry's avatar Henry
Browse files

Changes to keep clang happy.

parent 4c8b4d41
No related merge requests found
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_;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment