Heat transfer BCs: changed messages to avoid confusion about heat-flux

This commit is contained in:
Henry
2012-03-21 17:37:37 +00:00
parent 061511e3de
commit 89acb1900c
4 changed files with 6 additions and 6 deletions

View File

@ -132,7 +132,7 @@ greyDiffusiveViewFactorFixedValueFvPatchScalarField
void Foam::radiation::greyDiffusiveViewFactorFixedValueFvPatchScalarField:: void Foam::radiation::greyDiffusiveViewFactorFixedValueFvPatchScalarField::
updateCoeffs() updateCoeffs()
{ {
//Do nothing // Do nothing
if (debug) if (debug)
{ {
@ -141,7 +141,7 @@ updateCoeffs()
Info<< patch().boundaryMesh().mesh().name() << ':' Info<< patch().boundaryMesh().mesh().name() << ':'
<< patch().name() << ':' << patch().name() << ':'
<< this->dimensionedInternalField().name() << " <- " << this->dimensionedInternalField().name() << " <- "
<< " heat[W]:" << Q << " heat transfer rate:" << Q
<< " wall radiative heat flux " << " wall radiative heat flux "
<< " min:" << gMin(*this) << " min:" << gMin(*this)
<< " max:" << gMax(*this) << " max:" << gMax(*this)

View File

@ -590,9 +590,9 @@ void Foam::radiation::viewFactor::calculate()
const scalarField& Qrp = Qr_.boundaryField()[patchID]; const scalarField& Qrp = Qr_.boundaryField()[patchID];
const scalarField& magSf = mesh_.magSf().boundaryField()[patchID]; const scalarField& magSf = mesh_.magSf().boundaryField()[patchID];
scalar heatFlux = gSum(Qrp*magSf); scalar heatFlux = gSum(Qrp*magSf);
Info<< "Total heat flux at patch: " Info<< "Total heat transfer rate at patch: "
<< patchID << " " << patchID << " "
<< heatFlux << " [W]" << endl; << heatFlux << endl;
} }
} }

View File

@ -244,7 +244,7 @@ void Foam::externalWallHeatFluxTemperatureFvPatchScalarField::updateCoeffs()
Info<< patch().boundaryMesh().mesh().name() << ':' Info<< patch().boundaryMesh().mesh().name() << ':'
<< patch().name() << ':' << patch().name() << ':'
<< this->dimensionedInternalField().name() << " :" << this->dimensionedInternalField().name() << " :"
<< " heatFlux:" << Q << " heat transfer rate:" << Q
<< " walltemperature " << " walltemperature "
<< " min:" << gMin(*this) << " min:" << gMin(*this)
<< " max:" << gMax(*this) << " max:" << gMax(*this)

View File

@ -227,7 +227,7 @@ void turbulentTemperatureCoupledBaffleMixedFvPatchScalarField::updateCoeffs()
<< nbrMesh.name() << ':' << nbrMesh.name() << ':'
<< nbrPatch.name() << ':' << nbrPatch.name() << ':'
<< this->dimensionedInternalField().name() << " :" << this->dimensionedInternalField().name() << " :"
<< " heat[W]:" << Q << " heat transfer rate:" << Q
<< " walltemperature " << " walltemperature "
<< " min:" << gMin(*this) << " min:" << gMin(*this)
<< " max:" << gMax(*this) << " max:" << gMax(*this)