Skip to content
Snippets Groups Projects
Commit 7a1ee2ea authored by Philipp Nuske's avatar Philipp Nuske
Browse files

fixed typo : temperature was send to output although enthalpy was

supposed to


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12213 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 0c6a6472
No related branches found
No related tags found
No related merge requests found
......@@ -193,7 +193,7 @@ public:
if (temperatureOutput_) temperature_[gobalIdx] = volVars.fluidState().temperature(/*phaseIdx=*/0);
for (int phaseIdx = 0; phaseIdx < numPhases; ++ phaseIdx) {
if (enthalpyOutput_)
enthalpy_[phaseIdx][gobalIdx] = volVars.fluidState().temperature(phaseIdx);
enthalpy_[phaseIdx][gobalIdx] = volVars.fluidState().enthalpy(phaseIdx);
if (internalEnergyOutput_)
internalEnergy_[phaseIdx][gobalIdx] = volVars.fluidState().internalEnergy(phaseIdx);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment