Removed debugging info / moved it into verbose mode.

This commit is contained in:
tlichtenegger
2019-11-07 12:22:49 +01:00
parent 7f0c4f8efe
commit db465c334a
2 changed files with 3 additions and 10 deletions

View File

@ -50,9 +50,6 @@
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");

View File

@ -458,6 +458,9 @@ void heatTransferGunn::calcEnergyContribution()
particleCloud_.averagingM().UsWeightField(),
NULL
);
Info << "Minimum particle temperature: " << gMin(partTempField_) << endl;
Info << "Maximum particle temperature: " << gMax(partTempField_) << endl;
}
// limit source term in explicit treatment
@ -476,13 +479,6 @@ void heatTransferGunn::calcEnergyContribution()
}
QPartFluid_.correctBoundaryConditions();
volScalarField minParticleWeights = particleCloud_.averagingM().UsWeightField();
Info << "Minimum Particle Weight " << gMin(minParticleWeights) << endl;
Info << "Minimum Particle Temperature: " << gMin(partTempField_) << endl;
Info << "Maximum Particle Temperature: " << gMax(partTempField_) << endl;
Info << "Minimum Fluid Temperature: " << gMin(tempField_) << endl;
Info << "Maximum Fluid Temperature: " << gMax(tempField_) << endl;
}
void heatTransferGunn::addEnergyContribution(volScalarField& Qsource) const