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
ed4564a8
Commit
ed4564a8
authored
Apr 18, 2018
by
Andrew Heather
Browse files
STYLE: Added backwards compatibility for old keywords
parent
622cde7e
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/solvers/combustion/PDRFoam/laminarFlameSpeed/SCOPE/SCOPELaminarFlameSpeed.C
View file @
ed4564a8
...
...
@@ -73,17 +73,37 @@ Foam::laminarFlameSpeedModels::SCOPE::SCOPE
(
dictionary
(
IFstream
(
fileName
(
dict
.
lookup
(
"fuelFile"
)
)
)()
IFstream
(
fileName
(
dict
.
lookup
(
"fuelFile"
)
)
)()
).
optionalSubDict
(
typeName
+
"Coeffs"
)
),
LFL_
(
readScalar
(
coeffsDict_
.
lookup
(
"lowerFlammabilityLimit"
))),
UFL_
(
readScalar
(
coeffsDict_
.
lookup
(
"upperFlammabilityLimit"
))),
LFL_
(
readScalar
(
coeffsDict_
.
lookupCompat
(
"lowerFlammabilityLimit"
,
{{
"lowerFlamabilityLimit"
,
1712
}}
)
)
),
UFL_
(
readScalar
(
coeffsDict_
.
lookupCompat
(
"upperFlammabilityLimit"
,
{{
"upperFlamabilityLimit"
,
1712
}}
)
)
),
SuPolyL_
(
coeffsDict_
.
subDict
(
"lowerSuPolynomial"
)),
SuPolyU_
(
coeffsDict_
.
subDict
(
"upperSuPolynomial"
)),
Texp_
(
readScalar
(
coeffsDict_
.
lookup
(
"Texp"
))),
...
...
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