netgen/libsrc/meshing/boundarylayer.hpp

28 lines
517 B
C++
Raw Normal View History

2009-01-13 04:40:13 +05:00
#ifndef FILE_BOUNDARYLAYER
#define FILE_BOUNDARYLAYER
///
extern void InsertVirtualBoundaryLayer (Mesh & mesh);
/// Create a typical prismatic boundary layer on the given
/// surfaces
2014-12-18 19:00:58 +05:00
class BoundaryLayerParameters
{
public:
// parameters by Philippose ..
Array<int> surfid;
int prismlayers = 1;
2015-01-09 02:18:22 +05:00
int bulk_matnr = 1;
int new_matnr = 1;
2014-12-18 19:00:58 +05:00
double hfirst = 0.01;
double growthfactor = 1;
2015-01-07 15:58:09 +05:00
bool optimize = true;
2014-12-18 19:00:58 +05:00
};
extern void GenerateBoundaryLayer (Mesh & mesh, BoundaryLayerParameters & blp);
2009-01-13 04:40:13 +05:00
#endif