ENH: extrudeModel: generic radial extrusion (radii specified through interpolation table)

This commit is contained in:
mattijs
2013-01-08 12:16:01 +00:00
parent 685e885d81
commit 80e5beb6e2
4 changed files with 190 additions and 1 deletions

View File

@ -47,6 +47,9 @@ extrudeModel wedge;
//- Extrudes into sphere around (0 0 0)
//extrudeModel linearRadial;
//- Extrudes into sphere around (0 0 0) with specified radii
//extrudeModel radial;
//- Extrudes into sphere with grading according to pressure (atmospherics)
//extrudeModel sigmaRadial;
@ -74,9 +77,18 @@ linearDirectionCoeffs
linearRadialCoeffs
{
R 0.1;
R 0.1;
// Optional inner radius
Rsurface 0.01;
}
radialCoeffs
{
// Radii specified through interpolation table
R table ((0 0.01)(3 0.03)(10 0.1));
}
sigmaRadialCoeffs
{
RTbyg 1;