From bd444010bcc64b161af8461cc00ada690843d1dc Mon Sep 17 00:00:00 2001 From: ekinaci Date: Thu, 8 Nov 2018 16:06:56 +0100 Subject: [PATCH] Add info output about heat source and specific heat --- applications/solvers/cfdemSolverRhoPimple/EEqn.H | 3 +++ 1 file changed, 3 insertions(+) diff --git a/applications/solvers/cfdemSolverRhoPimple/EEqn.H b/applications/solvers/cfdemSolverRhoPimple/EEqn.H index b2a30416..7ff73c1c 100644 --- a/applications/solvers/cfdemSolverRhoPimple/EEqn.H +++ b/applications/solvers/cfdemSolverRhoPimple/EEqn.H @@ -51,6 +51,9 @@ thermo.correct(); + Info << "Qsource" << max(Qsource).value() << " " << min(Qsource).value() << endl; + Info << "QCoeff" << max(QCoeff).value() << " " << min(QCoeff).value() << endl; + Info << "Cpv" << max(Cpv).value() << " " << min(Cpv).value() << endl; Info<< "T max/min : " << max(T).value() << " " << min(T).value() << endl; particleCloud.clockM().start(31,"energySolve");