mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Heat transfer BCs: changed messages to avoid confusion about heat-flux
This commit is contained in:
@ -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)
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -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)
|
||||||
|
|||||||
@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user