Skip to content
GitLab
Menu
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
5866b3a1
Commit
5866b3a1
authored
May 20, 2009
by
Andrew Heather
Browse files
correcting signs for return heat of reaction
parent
6ec44522
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/lagrangian/coalCombustion/submodels/surfaceReactionModel/COxidationDiffusionLimitedRate/COxidationDiffusionLimitedRate.C
View file @
5866b3a1
...
...
@@ -143,7 +143,7 @@ Foam::scalar Foam::COxidationDiffusionLimitedRate::calculate
dMassSRCarrier
[
CO2GlobalId_
]
+=
dmCO2
;
// Heat of reaction [J]
return
HcCO2_
*
dmCO2
;
return
-
HcCO2_
*
dmCO2
;
}
...
...
src/lagrangian/coalCombustion/submodels/surfaceReactionModel/COxidationKineticDiffusionLimitedRate/COxidationKineticDiffusionLimitedRate.C
View file @
5866b3a1
...
...
@@ -155,7 +155,7 @@ Foam::scalar Foam::COxidationKineticDiffusionLimitedRate::calculate
dMassSRCarrier
[
CO2GlobalId_
]
+=
dmCO2
;
// Heat of reaction [J]
return
HcCO2_
*
dmCO2
;
return
-
HcCO2_
*
dmCO2
;
}
...
...
src/lagrangian/coalCombustion/submodels/surfaceReactionModel/COxidationMurphyShaddix/COxidationMurphyShaddix.C
View file @
5866b3a1
...
...
@@ -201,7 +201,7 @@ Foam::scalar Foam::COxidationMurphyShaddix::calculate
dMassSolid
[
CsLocalId_
]
+=
dOmega
*
WC_
;
// Heat of reaction
return
HcCO2_
*
dOmega
*
WC_
;
return
-
HcCO2_
*
dOmega
*
WC_
;
}
...
...
Write
Preview
Supports
Markdown
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