CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   turbulentHeatFluxTemperature incompressible version (https://www.cfd-online.com/Forums/openfoam-solving/166796-turbulentheatfluxtemperature-incompressible-version.html)

Ohbuchi February 16, 2016 15:52

turbulentHeatFluxTemperature incompressible version
 
Hi,

I could not find incompressible version of turbulentHeatFluxTemperature in OF3.0.x.
Does somebody know where it is?

Best regards,

ohbuchi.

himanshu28 November 14, 2017 14:58

Facing the Same Problem
 
Hi,

Does anyone knows how to use
"turbulentHeatFluxTemperature" with buoyantBoussinesqSimpleFoam which is an incompressible solver.

I am solving a 2D problem using OF-4.1 and getting following error
Code:

--> FOAM FATAL IO ERROR:
Unknown patchField type turbulentHeatFluxTemperature for patch type wall

Valid patchField types are :

113
(
MarshakRadiation
MarshakRadiationFixedTemperature
advective
alphatJayatillekeWallFunction
atmBoundaryLayerInletEpsilon
atmBoundaryLayerInletK
calculated
codedFixedValue
codedMixed
compressible::alphatJayatillekeWallFunction
compressible::alphatWallFunction
compressible::thermalBaffle1D<hConstSolidThermoPhysics>
compressible::thermalBaffle1D<hPowerSolidThermoPhysics>
compressible::turbulentHeatFluxTemperature
compressible::turbulentTemperatureCoupledBaffleMixed
compressible::turbulentTemperatureRadCoupledMixed
convectiveHeatTransfer
cyclic
cyclicACMI
cyclicAMI
cyclicSlip
directionMixed
empty
:
:
)


gouravjee March 12, 2018 02:52

Probem with temperature profile
 
Quote:

Originally Posted by himanshu28 (Post 671593)
Hi,

Does anyone knows how to use
"turbulentHeatFluxTemperature" with buoyantBoussinesqSimpleFoam which is an incompressible solver.

I am solving a 2D problem using OF-4.1 and getting following error
Code:

--> FOAM FATAL IO ERROR:
Unknown patchField type turbulentHeatFluxTemperature for patch type wall

Valid patchField types are :

113
(
MarshakRadiation
MarshakRadiationFixedTemperature
advective
alphatJayatillekeWallFunction
atmBoundaryLayerInletEpsilon
atmBoundaryLayerInletK
calculated
codedFixedValue
codedMixed
compressible::alphatJayatillekeWallFunction
compressible::alphatWallFunction
compressible::thermalBaffle1D<hConstSolidThermoPhysics>
compressible::thermalBaffle1D<hPowerSolidThermoPhysics>
compressible::turbulentHeatFluxTemperature
compressible::turbulentTemperatureCoupledBaffleMixed
compressible::turbulentTemperatureRadCoupledMixed
convectiveHeatTransfer
cyclic
cyclicACMI
cyclicAMI
cyclicSlip
directionMixed
empty
:
:
)


hello,
i have been working on a solidification/melting problem in which i am supposed to give a gaussian profile as a input heat flux i have written a code for that.but it is not giving me desired profile.
can you tell me where is the problem??
[CODE]
input
{
type codedFixedValue;
value uniform 573;
redirectType temperatureProfile;

code
#{

fixedValueFvPatchScalarField myPatch(*this);
forAll(this->patch().Cf(),i)
{
myPatch[i]=2076000*exp(-Foam:ow((this->patch().Cf()[i].x()-122.5)/6.067,2));
}
operator==(myPatch);
#};
}

[\CODE]


All times are GMT -4. The time now is 21:17.