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
b6b7943f
Commit
b6b7943f
authored
Jun 19, 2009
by
Andrew Heather
Browse files
using constructor form for DpDt field
parent
3def6efd
Changes
3
Hide whitespace changes
Inline
Side-by-side
applications/solvers/lagrangian/coalChemistryFoam/createFields.H
View file @
b6b7943f
...
...
@@ -113,8 +113,11 @@
);
Info
<<
"Creating field DpDt
\n
"
<<
endl
;
volScalarField
DpDt
=
fvc
::
DDt
(
surfaceScalarField
(
"phiU"
,
phi
/
fvc
::
interpolate
(
rho
)),
p
);
volScalarField
DpDt
(
"DpDt"
,
fvc
::
DDt
(
surfaceScalarField
(
"phiU"
,
phi
/
fvc
::
interpolate
(
rho
)),
p
)
);
Info
<<
"
\n
Constructing explicit enthalpy cell source"
<<
endl
;
timeActivatedExplicitCellSource
enthalpySource
...
...
applications/solvers/lagrangian/reactingParcelFoam/createFields.H
View file @
b6b7943f
...
...
@@ -74,8 +74,11 @@
);
Info
<<
"Creating field DpDt
\n
"
<<
endl
;
volScalarField
DpDt
=
fvc
::
DDt
(
surfaceScalarField
(
"phiU"
,
phi
/
fvc
::
interpolate
(
rho
)),
p
);
volScalarField
DpDt
(
"DpDt"
,
fvc
::
DDt
(
surfaceScalarField
(
"phiU"
,
phi
/
fvc
::
interpolate
(
rho
)),
p
)
);
multivariateSurfaceInterpolationScheme
<
scalar
>::
fieldTable
fields
;
...
...
applications/solvers/lagrangian/trackedReactingParcelFoam/createFields.H
View file @
b6b7943f
...
...
@@ -74,8 +74,11 @@
);
Info
<<
"Creating field DpDt
\n
"
<<
endl
;
volScalarField
DpDt
=
fvc
::
DDt
(
surfaceScalarField
(
"phiU"
,
phi
/
fvc
::
interpolate
(
rho
)),
p
);
volScalarField
DpDt
(
"DpDt"
,
fvc
::
DDt
(
surfaceScalarField
(
"phiU"
,
phi
/
fvc
::
interpolate
(
rho
)),
p
)
);
multivariateSurfaceInterpolationScheme
<
scalar
>::
fieldTable
fields
;
...
...
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