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
Branches
Tags
No related merge requests found
......@@ -24,7 +24,8 @@ runApplication topoSet -dict system/fBurner.topoSetDict
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
......
/*--------------------------------*- 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`
runApplication blockMesh
runApplication topoSet
runApplication createPatch -overwrite
runApplication decomposePar -force
runApplication decomposePar -force -constant
# Run
runParallel $application 4
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment