Skip to content
Snippets Groups Projects
Commit 7e4ed0c0 authored by andy's avatar andy
Browse files

STYLE: Corrected code formatting

parent 602c5875
No related merge requests found
...@@ -54,10 +54,6 @@ externalWallHeatFluxTemperatureFvPatchScalarField::operationModeNames; ...@@ -54,10 +54,6 @@ externalWallHeatFluxTemperatureFvPatchScalarField::operationModeNames;
} // End namespace Foam } // End namespace Foam
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::externalWallHeatFluxTemperatureFvPatchScalarField:: Foam::externalWallHeatFluxTemperatureFvPatchScalarField::
...@@ -118,7 +114,7 @@ externalWallHeatFluxTemperatureFvPatchScalarField ...@@ -118,7 +114,7 @@ externalWallHeatFluxTemperatureFvPatchScalarField
oldMode_ = fixedHeatFlux; oldMode_ = fixedHeatFlux;
q_ = scalarField("q", dict, p.size()); q_ = scalarField("q", dict, p.size());
} }
else if(dict.found("h") && dict.found("Ta") && !dict.found("q")) else if (dict.found("h") && dict.found("Ta") && !dict.found("q"))
{ {
oldMode_ = fixedHeatTransferCoeff; oldMode_ = fixedHeatTransferCoeff;
h_ = scalarField("h", dict, p.size()); h_ = scalarField("h", dict, p.size());
...@@ -209,7 +205,7 @@ void Foam::externalWallHeatFluxTemperatureFvPatchScalarField::updateCoeffs() ...@@ -209,7 +205,7 @@ void Foam::externalWallHeatFluxTemperatureFvPatchScalarField::updateCoeffs()
{ {
q = q_; q = q_;
} }
else if(oldMode_ == fixedHeatTransferCoeff) else if (oldMode_ == fixedHeatTransferCoeff)
{ {
q = (Ta_ - *this)*h_; q = (Ta_ - *this)*h_;
} }
......
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