BUG: Adding boundaryRadiationProperties in oppositeBurningPanels tutorial
Adding decompose boundaryRadiationProperties in constant folder in Allrun for oppositeBurningPanels and smallPoolFire3D
This commit is contained in:
parent
cf97c5d71c
commit
8924b4ca86
@ -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
|
||||
|
||||
|
@ -0,0 +1,38 @@
|
||||
/*--------------------------------*- 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
|
||||
|
Loading…
Reference in New Issue
Block a user