Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
30d9cfa7
Commit
30d9cfa7
authored
Mar 12, 2020
by
Mark Olesen
Browse files
STYLE: remove trailing space, use Enum::get()
parent
3df281b3
Changes
5
Show whitespace changes
Inline
Side-by-side
applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionTwoPhaseEulerFoam/derivedFvPatchFields/turbulentTemperatureTwoPhaseRadCoupledMixed/turbulentTemperatureTwoPhaseRadCoupledMixedFvPatchScalarField.C
View file @
30d9cfa7
...
...
@@ -225,10 +225,10 @@ turbulentTemperatureTwoPhaseRadCoupledMixedFvPatchScalarField
)
:
mixedFvPatchScalarField
(
p
,
iF
),
regionType_
(
regionTypeNames_
.
read
(
dict
.
lookup
(
"region"
)
)),
regionType_
(
regionTypeNames_
.
get
(
"region"
,
dict
)),
method_
(
KMethodTypeNames_
.
get
(
"kappaMethod"
,
dict
)),
kappaName_
(
dict
.
lookupOrDefault
<
word
>
(
"kappa"
,
"none"
)),
otherPhaseName_
(
dict
.
lookup
(
"otherPhase"
)),
otherPhaseName_
(
dict
.
get
<
word
>
(
"otherPhase"
)),
TnbrName_
(
dict
.
lookupOrDefault
<
word
>
(
"Tnbr"
,
"T"
)),
qrNbrName_
(
dict
.
lookupOrDefault
<
word
>
(
"qrNbr"
,
"none"
)),
qrName_
(
dict
.
lookupOrDefault
<
word
>
(
"qr"
,
"none"
))
...
...
applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionTwoPhaseEulerFoam/derivedFvPatchFields/turbulentTemperatureTwoPhaseRadCoupledMixed/turbulentTemperatureTwoPhaseRadCoupledMixedFvPatchScalarField.H
View file @
30d9cfa7
applications/solvers/multiphase/interCondensatingEvaporatingFoam/Make/options
View file @
30d9cfa7
...
...
@@ -35,5 +35,3 @@ EXE_LIBS = \
-lturbulenceModels \
-lincompressibleTurbulenceModels \
-lfluidThermophysicalModels
src/phaseSystemModels/reactingEulerFoam/derivedFvPatchFields/alphatWallBoilingWallFunction/alphatWallBoilingWallFunctionFvPatchScalarField.C
View file @
30d9cfa7
...
...
@@ -111,8 +111,8 @@ alphatWallBoilingWallFunctionFvPatchScalarField
)
:
alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField
(
p
,
iF
,
dict
),
otherPhaseName_
(
dict
.
lookup
(
"otherPhase"
)),
phaseType_
(
phaseTypeNames_
.
read
(
dict
.
lookup
(
"phaseType"
)
)),
otherPhaseName_
(
dict
.
get
<
word
>
(
"otherPhase"
)),
phaseType_
(
phaseTypeNames_
.
get
(
"phaseType"
,
dict
)),
relax_
(
Function1
<
scalar
>::
New
(
"relax"
,
dict
)),
AbyV_
(
p
.
size
(),
0
),
alphatConv_
(
p
.
size
(),
0
),
...
...
src/phaseSystemModels/reactingEulerFoam/derivedFvPatchFields/alphatWallBoilingWallFunction/alphatWallBoilingWallFunctionFvPatchScalarField.H
View file @
30d9cfa7
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment