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
4b375230
Commit
4b375230
authored
May 26, 2011
by
andy
Browse files
STYLE: Minor code mods
parent
7a20b147
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lagrangian/spray/clouds/Templates/SprayCloud/SprayCloud.C
View file @
4b375230
...
...
@@ -315,8 +315,16 @@ void Foam::SprayCloud<CloudType>::motion(TrackData& td)
scalarField
Xq
(
liqMix
.
X
(
q
.
Y
()));
q
.
rho
()
=
liqMix
.
rho
(
q
.
pc
(),
q
.
T
(),
Xq
);
q
.
Cp
()
=
liqMix
.
Cp
(
q
.
pc
(),
q
.
T
(),
Xq
);
scalar
rhs
=
6
.
0
*
mq
/
(
q
.
nParticle
()
*
q
.
rho
()
*
constant
::
mathematical
::
pi
);
q
.
d
()
=
pow
(
rhs
,
1
.
0
/
3
.
0
);
q
.
d
()
=
cbrt
(
6
.
0
*
mq
/
(
q
.
nParticle
()
*
q
.
rho
()
*
constant
::
mathematical
::
pi
)
);
}
}
}
...
...
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