BUG: Switching off radiationProperties in heater. Adding boundaryRadiationProperties

and adding transmissivity keyword in radiationProperties.
This commit is contained in:
sergio
2015-12-14 10:43:31 -08:00
parent 1da26a34b7
commit cdbe0e31a8
6 changed files with 90 additions and 15 deletions

View File

@ -16,21 +16,8 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
radiation on; radiation off;
radiationModel opaqueSolid; radiationModel none;
absorptionEmissionModel constantAbsorptionEmission;
constantAbsorptionEmissionCoeffs
{
absorptivity absorptivity [0 -1 0 0 0 0 0] 0.0; //opaque
emissivity emissivity [0 -1 0 0 0 0 0] 0.1;
E E [1 -1 -3 0 0 0 0] 0;
}
scatterModel none;
sootModel none;
// ************************************************************************* // // ************************************************************************* //

View File

@ -25,11 +25,16 @@ rm -f constant/bottomAir/constructMap*
rm -f constant/bottomAir/finalAgglom rm -f constant/bottomAir/finalAgglom
rm -f constant/bottomAir/globalFaceFaces rm -f constant/bottomAir/globalFaceFaces
rm -f constant/bottomAir/subMap rm -f constant/bottomAir/subMap
rm -f constant/bottomAir/visibleFaceFaces
rm -f constant/bottomAir/mapDist
rm -f constant/topAir/F rm -f constant/topAir/F
rm -f constant/topAir/constructMap* rm -f constant/topAir/constructMap*
rm -f constant/topAir/finalAgglom rm -f constant/topAir/finalAgglom
rm -f constant/topAir/globalFaceFaces rm -f constant/topAir/globalFaceFaces
rm -f constant/topAir/subMap rm -f constant/topAir/subMap
rm -f constant/topAir/visibleFaceFaces
rm -f constant/topAir/mapDist
# ----------------------------------------------------------------- end-of-file # ----------------------------------------------------------------- end-of-file

View File

@ -0,0 +1,40 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object boundaryRadiationProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField uniform 0;
boundaryField
{
".*"
{
type boundaryRadiation;
mode lookup;
emissivity uniform 1.0;
absorptivity uniform 1.0;
value uniform 0; // Dummy value
}
"bottomAir_to_.*"
{
type boundaryRadiation;
mode solidRadiation;
value uniform 0; // Dummy value
}
}
// ************************************************************************* //

View File

@ -42,4 +42,7 @@ scatterModel none;
sootModel none; sootModel none;
transmissivityModel none;
// ************************************************************************* // // ************************************************************************* //

View File

@ -33,4 +33,5 @@ scatterModel none;
sootModel none; sootModel none;
transmissivityModel none;
// ************************************************************************* // // ************************************************************************* //

View File

@ -0,0 +1,39 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object boundaryRadiationProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField uniform 0;
boundaryField
{
".*"
{
type boundaryRadiation;
mode lookup;
emissivity uniform 1.0;
value uniform 0; // Dummy value
}
"topAir_to_.*"
{
type boundaryRadiation;
mode solidRadiation;
value uniform 0; // Dummy value
}
}
// ************************************************************************* //