ENH: Tutorial updates

This commit is contained in:
Andrew Heather
2016-04-26 15:04:42 +01:00
parent f84c4ba8a2
commit 58513c63bb
4 changed files with 19 additions and 2 deletions

View File

@ -26,10 +26,12 @@ boundaryField
inlet inlet
{ {
type calculated; type calculated;
value $internalField;
} }
outlet outlet
{ {
type calculated; type calculated;
value $internalField;
} }
wall wall
{ {
@ -38,6 +40,7 @@ boundaryField
//value $internalField; //value $internalField;
type calculated; type calculated;
value $internalField;
} }
} }

View File

@ -34,6 +34,11 @@ boundaryField
absorptivity uniform 1.0; absorptivity uniform 1.0;
transmissivity uniform 0.0; transmissivity uniform 0.0;
} }
"procBoundary.*"
{
type processor;
value $internalField;
}
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -27,11 +27,15 @@ boundaryField
emissivity uniform 1.0; emissivity uniform 1.0;
value uniform 0; value uniform 0;
} }
frontAndBack frontAndBack
{ {
type empty; type empty;
} }
"procBoundary.*"
{
type processor;
value $internalField;
}
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -28,6 +28,11 @@ boundaryField
absorptivity uniform 0.0; absorptivity uniform 0.0;
value uniform 0.0; value uniform 0.0;
} }
"procBoundary.*"
{
type processor;
value $internalField;
}
} }
// ************************************************************************* // // ************************************************************************* //