mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
Removed debugging info / moved it into verbose mode.
This commit is contained in:
@ -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");
|
||||
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user