STYLE: remove trailing space, use Enum::get()

This commit is contained in:
Mark Olesen
2020-03-12 10:13:27 +01:00
parent 3df281b367
commit 30d9cfa7c2
5 changed files with 9 additions and 11 deletions

View File

@ -225,10 +225,10 @@ turbulentTemperatureTwoPhaseRadCoupledMixedFvPatchScalarField
) )
: :
mixedFvPatchScalarField(p, iF), mixedFvPatchScalarField(p, iF),
regionType_(regionTypeNames_.read(dict.lookup("region"))), regionType_(regionTypeNames_.get("region", dict)),
method_(KMethodTypeNames_.get("kappaMethod", dict)), method_(KMethodTypeNames_.get("kappaMethod", dict)),
kappaName_(dict.lookupOrDefault<word>("kappa", "none")), kappaName_(dict.lookupOrDefault<word>("kappa", "none")),
otherPhaseName_(dict.lookup("otherPhase")), otherPhaseName_(dict.get<word>("otherPhase")),
TnbrName_(dict.lookupOrDefault<word>("Tnbr", "T")), TnbrName_(dict.lookupOrDefault<word>("Tnbr", "T")),
qrNbrName_(dict.lookupOrDefault<word>("qrNbr", "none")), qrNbrName_(dict.lookupOrDefault<word>("qrNbr", "none")),
qrName_(dict.lookupOrDefault<word>("qr", "none")) qrName_(dict.lookupOrDefault<word>("qr", "none"))

View File

@ -148,7 +148,7 @@ private:
//- Name of field on the neighbour region //- Name of field on the neighbour region
const word TnbrName_; const word TnbrName_;
//- Name of the radiative heat flux in the neighbour region //- Name of the radiative heat flux in the neighbour region
const word qrNbrName_; const word qrNbrName_;
//- Name of the radiative heat flux in local region //- Name of the radiative heat flux in local region

View File

@ -35,5 +35,3 @@ EXE_LIBS = \
-lturbulenceModels \ -lturbulenceModels \
-lincompressibleTurbulenceModels \ -lincompressibleTurbulenceModels \
-lfluidThermophysicalModels -lfluidThermophysicalModels

View File

@ -111,8 +111,8 @@ alphatWallBoilingWallFunctionFvPatchScalarField
) )
: :
alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField(p, iF, dict), alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField(p, iF, dict),
otherPhaseName_(dict.lookup("otherPhase")), otherPhaseName_(dict.get<word>("otherPhase")),
phaseType_(phaseTypeNames_.read(dict.lookup("phaseType"))), phaseType_(phaseTypeNames_.get("phaseType", dict)),
relax_(Function1<scalar>::New("relax", dict)), relax_(Function1<scalar>::New("relax", dict)),
AbyV_(p.size(), 0), AbyV_(p.size(), 0),
alphatConv_(p.size(), 0), alphatConv_(p.size(), 0),

View File

@ -290,7 +290,7 @@ private:
phaseType phaseType_; phaseType phaseType_;
//- dmdt relaxationFactor //- dmdt relaxationFactor
autoPtr<Function1<scalar>> relax_; autoPtr<Function1<scalar>> relax_;
//- Patch face area by cell volume //- Patch face area by cell volume
scalarField AbyV_; scalarField AbyV_;