ENH: add treatment for PDRblockMesh outer region expansions (#1906)

// Treatment of the outer region
   outer
   {
       type        sphere;
       onGround    true;
       expansion   relative;

       ratios      1.1;

       size        3;
       nCells      10;
   }
This commit is contained in:
Mark Olesen
2020-10-28 12:03:13 +01:00
committed by Andrew Heather
parent e2d7ad5c60
commit cf3d983b80
13 changed files with 1870 additions and 88 deletions

View File

@ -74,4 +74,23 @@ boundary
}
);
// Treatment of the outer region
outer
{
type sphere; // (none | extend | box | sphere) [default: none]
onGround true; // Module on the ground? [default: false]
expansion relative; // (uniform | ratio | relative) [default: ratio]
ratios 1.1;
size 3; // Overall outer/inner size
nCells 10; // Number of cells for outer region
// size (3 4);
// nCells (10 12);
}
//***************************************************************************//