Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
de32813f
Commit
de32813f
authored
May 11, 2011
by
andy
Browse files
STYLE: Minor code style updates
parent
ca492058
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lagrangian/dieselSpray/parcel/setRelaxationTimes.C
View file @
de32813f
...
...
@@ -232,20 +232,20 @@ void Foam::parcel::setRelaxationTimes
tBoilingSurface
);
scalar
dp
=
pBoil
-
pressure
;
if
(
(
dp
>
0
.
0
)
&&
(
dp0
>
0
.
0
)
)
if
((
dp
>
0
.
0
)
&&
(
dp0
>
0
.
0
))
{
tBoilingSurface
-=
deltaT
;
}
else
{
if
(
(
dp
<
0
.
0
)
&&
(
dp0
<
0
.
0
)
)
if
((
dp
<
0
.
0
)
&&
(
dp0
<
0
.
0
))
{
tBoilingSurface
+=
deltaT
;
}
else
{
deltaT
*=
0
.
5
;
if
(
(
dp
>
0
.
0
)
&&
(
dp0
<
0
.
0
)
)
if
((
dp
>
0
.
0
)
&&
(
dp0
<
0
.
0
))
{
tBoilingSurface
-=
deltaT
;
}
...
...
src/lagrangian/intermediate/submodels/Reacting/PhaseChangeModel/LiquidEvaporation/LiquidEvaporation.C
View file @
de32813f
...
...
@@ -194,6 +194,7 @@ void Foam::LiquidEvaporation<CloudType>::calculate
}
}
template
<
class
CloudType
>
Foam
::
scalar
Foam
::
LiquidEvaporation
<
CloudType
>::
dh
(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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