Skip to content
Snippets Groups Projects
Commit 8924b4ca authored by sergio's avatar sergio
Browse files

BUG: Adding boundaryRadiationProperties in oppositeBurningPanels tutorial

     Adding decompose boundaryRadiationProperties in constant folder in Allrun for oppositeBurningPanels and smallPoolFire3D
parent cf97c5d7
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,8 @@ runApplication topoSet -dict system/fBurner.topoSetDict ...@@ -24,7 +24,8 @@ runApplication topoSet -dict system/fBurner.topoSetDict
runApplication createPatch -overwrite runApplication createPatch -overwrite
decomposePar -force > log.decomposePar 2>&1 # Decompose mesh, constant/boundaryRadiationProperties and fields
decomposePar -force -constant > log.decomposePar 2>&1
decomposePar -region panelRegion > log.decomposeParPanelRegion 2>&1 decomposePar -region panelRegion > log.decomposeParPanelRegion 2>&1
......
/*--------------------------------*- 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;
}
"(region0_to.*)"
{
type boundaryRadiation;
mode solidRadiation;
value uniform 0;
}
}
// ************************************************************************* //
...@@ -9,7 +9,7 @@ application=`getApplication` ...@@ -9,7 +9,7 @@ application=`getApplication`
runApplication blockMesh runApplication blockMesh
runApplication topoSet runApplication topoSet
runApplication createPatch -overwrite runApplication createPatch -overwrite
runApplication decomposePar -force runApplication decomposePar -force -constant
# Run # Run
runParallel $application 4 runParallel $application 4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment