2009-01-18 19:47:12 +05:00
|
|
|
#ifndef NGLIB
|
|
|
|
#define NGLIB
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
/* File: nglib.hh */
|
|
|
|
/* Author: Joachim Schoeberl */
|
|
|
|
/* Date: 7. May. 2000 */
|
|
|
|
/**************************************************************************/
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
/*!
|
|
|
|
\file nglib.h
|
|
|
|
\brief Library interface to the netgen meshing kernel
|
|
|
|
\author Joachim Schoeberl
|
|
|
|
\date 7. May 2000
|
|
|
|
|
|
|
|
This header file provides access to the core functionality of the Netgen
|
|
|
|
Mesher via a library interface, without an interactive User Interface.
|
|
|
|
|
|
|
|
The intention of providing these set of functions is to allow system
|
|
|
|
developers to integrate Netgen into top-level code, to act as the low
|
|
|
|
level mesh generation / optimisation kernel.
|
2009-01-18 19:47:12 +05:00
|
|
|
*/
|
|
|
|
|
2009-02-16 01:22:04 +05:00
|
|
|
// Philippose - 14.02.2009
|
|
|
|
// Modifications for creating a DLL in Windows
|
|
|
|
#ifdef WIN32
|
|
|
|
#ifdef NGLIB_EXPORTS
|
|
|
|
#define DLL_HEADER __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define DLL_HEADER __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define DLL_HEADER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
// ** Constants used within Netgen *********************
|
|
|
|
/// Maximum allowed number of nodes per volume element
|
|
|
|
#define NG_VOLUME_ELEMENT_MAXPOINTS 10
|
|
|
|
|
|
|
|
/// Maximum allowed number of nodes per surface element
|
|
|
|
#define NG_SURFACE_ELEMENT_MAXPOINTS 6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// *** Data-types for accessing Netgen functionality ***
|
2009-01-18 19:47:12 +05:00
|
|
|
/// Data type for NETGEN mesh
|
|
|
|
typedef void * Ng_Mesh;
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
/// Data type for NETGEN CSG geometry
|
2009-01-18 19:47:12 +05:00
|
|
|
typedef void * Ng_CSG_Geometry;
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
/// Data type for NETGEN 2D geometry
|
2009-01-18 19:47:12 +05:00
|
|
|
typedef void * Ng_Geometry_2D;
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
/// Data type for NETGEN STL geometry
|
2009-01-18 19:47:12 +05:00
|
|
|
typedef void * Ng_STL_Geometry;
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
// *** Special Enum types used within Netgen ***********
|
|
|
|
/// Currently implemented surface element types
|
|
|
|
enum Ng_Surface_Element_Type
|
|
|
|
{ NG_TRIG = 1, NG_QUAD = 2, NG_TRIG6 = 3 };
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
/// Currently implemented volume element types
|
|
|
|
enum Ng_Volume_Element_Type
|
|
|
|
{ NG_TET = 1, NG_PYRAMID = 2, NG_PRISM = 3, NG_TET10 = 4 };
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
/// Values returned by Netgen functions
|
|
|
|
enum Ng_Result
|
|
|
|
{ NG_OK = 0,
|
|
|
|
NG_SURFACE_INPUT_ERROR = 1,
|
|
|
|
NG_VOLUME_FAILURE = 2,
|
|
|
|
NG_STL_INPUT_ERROR = 3,
|
|
|
|
NG_SURFACE_FAILURE = 4,
|
|
|
|
NG_FILE_NOT_FOUND = 5
|
|
|
|
};
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
// *** Classes required for use within Netgen **********
|
|
|
|
/// Netgen Meshing Parameters class
|
2009-01-18 19:47:12 +05:00
|
|
|
class Ng_Meshing_Parameters
|
|
|
|
{
|
2009-02-17 03:27:43 +05:00
|
|
|
public:
|
|
|
|
double maxh; //!< Maximum global mesh size limit
|
|
|
|
double fineness; //!< Mesh density: 0...1 (0 => coarse; 1 => fine)
|
|
|
|
int secondorder; //!< Generate second-order surface and volume elements
|
|
|
|
char * meshsize_filename; //!< Optional external mesh size file
|
|
|
|
int quad_dominated; //!< Creates a Quad-dominated mesh
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Default constructor for the Mesh Parameters class
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
Note: This constructor initialises the variables in the
|
|
|
|
class with the following default values
|
|
|
|
- #maxh: 1000.0
|
|
|
|
- #fineness: 0.5
|
|
|
|
- #secondorder: 0.0
|
|
|
|
- #meshsize_filename: 0
|
|
|
|
- #quad_dominated: 0
|
|
|
|
*/
|
|
|
|
DLL_HEADER Ng_Meshing_Parameters();
|
2009-01-18 19:47:12 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
// *** Functions Exported by this Library *************
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Netgen library initialisation / destruction functions
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
/*! \brief Initialise the Netgen library and prepare for use
|
|
|
|
|
|
|
|
This function needs to be called by the third-party
|
|
|
|
program before beginning to use the other Netgen
|
|
|
|
specific functions.
|
|
|
|
*/
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_Init ();
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Exit the Netgen meshing kernel in a clean manner
|
|
|
|
|
|
|
|
Use this function to exit the meshing sub-system in
|
|
|
|
a clean and orderly manner.
|
|
|
|
*/
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_Exit ();
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
/*! \brief Create a new (and empty) Netgen Mesh Structure
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
This function creates a new Netgen Mesh, initialises
|
|
|
|
it, and returns a pointer to the created mesh structure.
|
|
|
|
|
|
|
|
Use the returned pointer for subsequent operations
|
|
|
|
which involve mesh operations.
|
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
\return Ng_Mesh Pointer to a Netgen Mesh type #Ng_Mesh
|
2009-02-17 03:27:43 +05:00
|
|
|
*/
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Mesh * Ng_NewMesh ();
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Delete an existing Netgen Mesh Structure
|
|
|
|
|
|
|
|
Use this function to delete an existing Netgen mesh
|
|
|
|
structure and release the used memory.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure
|
|
|
|
of type #Ng_Mesh
|
|
|
|
*/
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_DeleteMesh (Ng_Mesh * mesh);
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
/*! \brief Save a Netgen Mesh to disk
|
2009-02-17 03:27:43 +05:00
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
This function allows a generated mesh structure to be saved
|
|
|
|
to disk.
|
|
|
|
|
|
|
|
A Mesh saved using this function, will be written to disk
|
|
|
|
in the Netgen VOL file format.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure
|
|
|
|
of type #Ng_Mesh
|
|
|
|
\param filename Pointer to a character array containing the
|
|
|
|
name of the file to which the mesh should
|
|
|
|
be saved
|
|
|
|
*/
|
|
|
|
DLL_HEADER void Ng_SaveMesh(Ng_Mesh * mesh, const char* filename);
|
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Load a Netgen VOL Mesh from disk into memory
|
|
|
|
|
|
|
|
A Netgen mesh saved in the internal VOL format can be loaded
|
|
|
|
into a Netgen Mesh structure using this function.
|
|
|
|
|
|
|
|
\param filename Pointer to a character array containing the
|
|
|
|
name of the file to load
|
|
|
|
\return Ng_Mesh Pointer to a Netgen Mesh type #Ng_Mesh containing
|
|
|
|
the mesh loaded from disk
|
|
|
|
*/
|
|
|
|
DLL_HEADER Ng_Mesh * Ng_LoadMesh(const char* filename);
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Basic Meshing functions for manually adding points, surface elements
|
|
|
|
// and volume elements to a Netgen Mesh structure
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
/*! \brief Add a point to a given Netgen Mesh Structure
|
|
|
|
|
|
|
|
This function allows points to be directly added to a Netgen
|
|
|
|
mesh structure by providing the co-ordinates.
|
|
|
|
|
|
|
|
Each call to the function allows only one point to be added.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\param x Pointer to an array of type double containing the co-ordinates
|
|
|
|
of the point to be added in the form: \n
|
|
|
|
- x[0] = X co-ordinate
|
|
|
|
- x[1] = Y co-ordinate
|
|
|
|
- x[2] = Z co-ordinate
|
|
|
|
*/
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_AddPoint (Ng_Mesh * mesh, double * x);
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Add a surface element to a given Netgen Mesh Structure
|
|
|
|
|
|
|
|
This function allows the top-level code to directly add individual
|
|
|
|
Surface Elements to a Netgen Mesh Structure by providing the type of
|
|
|
|
element to be added and the indices of the points which constitute the
|
|
|
|
element.
|
|
|
|
|
|
|
|
<i>Note:</i>
|
|
|
|
- The points referred to by the surface elements must have been
|
|
|
|
added prior to calling this function.
|
|
|
|
- Currently only triangular elements are supported, and the Surface Element
|
|
|
|
Type argument is not used.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\param et Surface Element type provided via the enumerated type
|
|
|
|
#Ng_Surface_Element_Type
|
|
|
|
\param pi Pointer to an array of integers containing the indices of the
|
|
|
|
points which constitute the surface element being added
|
|
|
|
*/
|
|
|
|
DLL_HEADER void Ng_AddSurfaceElement (Ng_Mesh * mesh, Ng_Surface_Element_Type et, int * pi);
|
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Add a volume element to a given Netgen Mesh Structure
|
|
|
|
|
|
|
|
This function allows the top-level code to directly add individual
|
|
|
|
Volume Elements to a Netgen Mesh Structure by providing the type of
|
|
|
|
element to be added and the indices of the points which constitute the
|
|
|
|
element.
|
|
|
|
|
|
|
|
<i>Note:</i>
|
|
|
|
- The points referred to by the volume elements must have been
|
|
|
|
added prior to calling this function.
|
|
|
|
- Currently only tetrahedral elements are supported, and the Volume Element
|
|
|
|
Type argument is not used.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\param et Volume Element type provided via the enumerated type
|
|
|
|
#Ng_Volume_Element_Type
|
|
|
|
\param pi Pointer to an array of integers containing the indices of the
|
|
|
|
points which constitute the volume element being added
|
|
|
|
|
|
|
|
*/
|
|
|
|
DLL_HEADER void Ng_AddVolumeElement (Ng_Mesh * mesh, Ng_Volume_Element_Type et, int * pi);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Local Mesh Size restriction / limiting utilities
|
|
|
|
|
|
|
|
/*! \brief Apply a global restriction on mesh element size
|
|
|
|
|
|
|
|
This utility allows the user to apply a global mesh element
|
|
|
|
size limitation.
|
|
|
|
|
|
|
|
During mesh creation, in the absence of an explicit local
|
|
|
|
size restriction around the neighbourhood of a point within
|
|
|
|
the meshing domain, this global size restriction will be
|
|
|
|
utilised.
|
|
|
|
|
|
|
|
<b>Note</b>: This function only limits the <b>Maximum</b>
|
|
|
|
size of an element within the mesh.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\param h Variable of type <i>double</i>, specifying the maximum
|
|
|
|
allowable mesh size
|
|
|
|
*/
|
|
|
|
DLL_HEADER void Ng_RestrictMeshSizeGlobal (Ng_Mesh * mesh, double h);
|
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Locally restrict the mesh element size at the given point
|
|
|
|
|
|
|
|
Unlike the function #Ng_RestrictMeshSizeGlobal, this function
|
|
|
|
allows the user to locally restrict the maximum allowable mesh
|
|
|
|
size at a given point.
|
|
|
|
|
|
|
|
The point is specified via its three cartesian co-ordinates.
|
|
|
|
|
|
|
|
<b>Note</b>: This function only limits the <b>Maximum</b> size
|
|
|
|
of the elements around the specified point.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\param p Pointer to an Array of type <i>double</i>, containing
|
|
|
|
the three co-ordinates of the point in the form: \n
|
|
|
|
- p[0] = X co-ordinate
|
|
|
|
- p[1] = Y co-ordinate
|
|
|
|
- p[2] = Z co-ordinate
|
|
|
|
\param h Variable of type <i>double</i>, specifying the maximum
|
|
|
|
allowable mesh size at that point
|
|
|
|
*/
|
|
|
|
DLL_HEADER void Ng_RestrictMeshSizePoint (Ng_Mesh * mesh, double * p, double h);
|
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Locally restrict the mesh element size within a specified box
|
2009-02-17 03:27:43 +05:00
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
Similar to the function #Ng_RestrictMeshSizePoint, this function
|
|
|
|
allows the size of elements within a mesh to be locally limited.
|
|
|
|
|
|
|
|
However, rather than limit the mesh size at a single point, this
|
|
|
|
utility restricts the local mesh size within a 3D Box region, specified
|
|
|
|
via the co-ordinates of the two diagonally opposite points of a cuboid.
|
|
|
|
|
|
|
|
<b>Note</b>: This function only limits the <b>Maximum</b> size
|
|
|
|
of the elements within the specified region.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\param pmin Pointer to an Array of type <i>double</i>, containing
|
|
|
|
the three co-ordinates of the first point of the cuboid: \n
|
|
|
|
- pmin[0] = X co-ordinate
|
|
|
|
- pmin[1] = Y co-ordinate
|
|
|
|
- pmin[2] = Z co-ordinate
|
|
|
|
\param pmax Pointer to an Array of type <i>double</i>, containing
|
|
|
|
the three co-ordinates of the opposite point of the
|
|
|
|
cuboid: \n
|
|
|
|
- pmax[0] = X co-ordinate
|
|
|
|
- pmax[1] = Y co-ordinate
|
|
|
|
- pmax[2] = Z co-ordinate
|
|
|
|
\param h Variable of type <i>double</i>, specifying the maximum
|
|
|
|
allowable mesh size at that point
|
|
|
|
*/
|
|
|
|
DLL_HEADER void Ng_RestrictMeshSizeBox (Ng_Mesh * mesh, double * pmin, double * pmax, double h);
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// 3D Mesh Generation functions
|
|
|
|
|
|
|
|
/*! \brief Create a 3D Volume Mesh given a Surface Mesh
|
|
|
|
|
|
|
|
After creating a surface mesh, this function can be utilised
|
|
|
|
to automatically generate the corresponding 3D Volume Mesh.
|
|
|
|
|
|
|
|
Mesh generation parameters (such as grading, maximum element size,
|
|
|
|
etc.) are specified via the meshing parameters class which also
|
|
|
|
needs to be passed to this function.
|
|
|
|
|
|
|
|
<b>Note</b>: Currently, Netgen generates pure tetrahedral volume
|
|
|
|
meshes.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\param mp Pointer to a copy of the Meshing Parameters class
|
|
|
|
(#Ng_Meshing_Parameters), filled up with the
|
|
|
|
required values
|
|
|
|
|
|
|
|
\return Ng_Result Status of the Mesh Generation routine. More
|
|
|
|
details regarding the return value can be
|
|
|
|
found in the description of #Ng_Result
|
|
|
|
*/
|
|
|
|
DLL_HEADER Ng_Result Ng_GenerateVolumeMesh (Ng_Mesh * mesh, Ng_Meshing_Parameters * mp);
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Basic Mesh information functions
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
/*! \brief Returns the Number of Points present in the specified Mesh
|
|
|
|
|
|
|
|
Given an already existent Netgen Mesh Structure, this function
|
|
|
|
returns the number of points currently present within the Mesh.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\return
|
|
|
|
Integer Data-type with the number of points in the Mesh
|
|
|
|
*/
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER int Ng_GetNP (Ng_Mesh * mesh);
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Returns the Number of Surface Elements present in the specified Mesh
|
|
|
|
|
|
|
|
Given an already existent Netgen Mesh Structure, this function
|
|
|
|
returns the number of surface elements currently present within
|
|
|
|
the Mesh.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\return
|
|
|
|
Integer Data-type with the number of surface elements in the Mesh
|
|
|
|
*/
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER int Ng_GetNSE (Ng_Mesh * mesh);
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
|
|
|
|
/*! \brief Returns the Number of Volume Elements present in the specified Mesh
|
|
|
|
|
|
|
|
Given an already existent Netgen Mesh Structure, this function
|
|
|
|
returns the number of volume elements currently present within
|
|
|
|
the Mesh.
|
|
|
|
|
|
|
|
\param mesh Pointer to an existing Netgen Mesh structure of
|
|
|
|
type #Ng_Mesh
|
|
|
|
\return
|
|
|
|
Integer Data-type with the number of volume elements in the Mesh
|
|
|
|
*/
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER int Ng_GetNE (Ng_Mesh * mesh);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Mesh Topology functions
|
|
|
|
// Use these functions to extract points, surface / volume elements,
|
|
|
|
// perform topological searches, etc..etc...
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
// Return the Point Coordinates of a specified Point
|
|
|
|
// The x, y and z co-ordinates are returned in the array pointer as
|
|
|
|
// x[0] = x ; x[1] = y ; x[2] = z
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_GetPoint (Ng_Mesh * mesh, int num, double * x);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-02-17 03:27:43 +05:00
|
|
|
|
|
|
|
|
2009-01-18 19:47:12 +05:00
|
|
|
// return surface and volume element in pi
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Surface_Element_Type
|
2009-01-18 19:47:12 +05:00
|
|
|
Ng_GetSurfaceElement (Ng_Mesh * mesh, int num, int * pi);
|
|
|
|
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Volume_Element_Type
|
2009-01-18 19:47:12 +05:00
|
|
|
Ng_GetVolumeElement (Ng_Mesh * mesh, int num, int * pi);
|
|
|
|
|
2009-03-10 04:01:50 +05:00
|
|
|
// ------------------------------------------------------------------
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// **********************************************************
|
|
|
|
// ** 2D Meshing **
|
|
|
|
// **********************************************************
|
|
|
|
|
|
|
|
|
|
|
|
// feeds points and boundary to mesh
|
|
|
|
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_AddPoint_2D (Ng_Mesh * mesh, double * x);
|
|
|
|
DLL_HEADER void Ng_AddBoundarySeg_2D (Ng_Mesh * mesh, int pi1, int pi2);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
// ask for number of points, elements and boundary segments
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER int Ng_GetNP_2D (Ng_Mesh * mesh);
|
|
|
|
DLL_HEADER int Ng_GetNE_2D (Ng_Mesh * mesh);
|
|
|
|
DLL_HEADER int Ng_GetNSeg_2D (Ng_Mesh * mesh);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
// return point coordinates
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_GetPoint_2D (Ng_Mesh * mesh, int num, double * x);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
// return 2d triangles
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_GetElement_2D (Ng_Mesh * mesh, int num, int * pi, int * matnum = NULL);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
// return 2d boundary segment
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_GetSegment_2D (Ng_Mesh * mesh, int num, int * pi, int * matnum = NULL);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
|
|
|
|
// load 2d netgen spline geometry
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Geometry_2D * Ng_LoadGeometry_2D (const char * filename);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
// generate 2d mesh, mesh is allocated by function
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Result Ng_GenerateMesh_2D (Ng_Geometry_2D * geom,
|
|
|
|
Ng_Mesh ** mesh,
|
|
|
|
Ng_Meshing_Parameters * mp);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_HP_Refinement (Ng_Geometry_2D * geom,
|
|
|
|
Ng_Mesh * mesh,
|
|
|
|
int levels);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// **********************************************************
|
|
|
|
// ** STL Meshing **
|
|
|
|
// **********************************************************
|
|
|
|
|
|
|
|
|
|
|
|
// loads geometry from STL file
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_STL_Geometry * Ng_STL_LoadGeometry (const char * filename, int binary = 0);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
|
|
|
|
// generate new STL Geometry
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_STL_Geometry * Ng_STL_NewGeometry ();
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
|
|
|
|
// fills STL Geometry
|
|
|
|
// positive orientation
|
|
|
|
// normal vector may be null-pointer
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_STL_AddTriangle (Ng_STL_Geometry * geom,
|
2009-01-18 19:47:12 +05:00
|
|
|
double * p1, double * p2, double * p3,
|
|
|
|
double * nv = NULL);
|
|
|
|
|
|
|
|
// add (optional) edges :
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER void Ng_STL_AddEdge (Ng_STL_Geometry * geom,
|
2009-01-18 19:47:12 +05:00
|
|
|
double * p1, double * p2);
|
|
|
|
|
|
|
|
// after adding triangles (and edges) initialize
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Result Ng_STL_InitSTLGeometry (Ng_STL_Geometry * geom);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
// automatically generates edges:
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Result Ng_STL_MakeEdges (Ng_STL_Geometry * geom,
|
2009-01-18 19:47:12 +05:00
|
|
|
Ng_Mesh* mesh,
|
|
|
|
Ng_Meshing_Parameters * mp);
|
|
|
|
|
|
|
|
|
|
|
|
// generates mesh, empty mesh must be already created.
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Result Ng_STL_GenerateSurfaceMesh (Ng_STL_Geometry * geom,
|
2009-01-18 19:47:12 +05:00
|
|
|
Ng_Mesh * mesh,
|
|
|
|
Ng_Meshing_Parameters * mp);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ACIS
|
|
|
|
|
|
|
|
// **********************************************************
|
|
|
|
// ** ACIS Meshing **
|
|
|
|
// **********************************************************
|
|
|
|
|
|
|
|
/// Data type for NETGEN STL geomty
|
|
|
|
typedef void * Ng_ACIS_Geometry;
|
|
|
|
|
|
|
|
// loads geometry from STL file
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_ACIS_Geometry * Ng_ACIS_LoadGeometry (const char * filename);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
// generates mesh, empty mesh must be already created.
|
2009-02-16 01:22:04 +05:00
|
|
|
DLL_HEADER Ng_Result Ng_ACIS_GenerateSurfaceMesh (Ng_ACIS_Geometry * geom,
|
|
|
|
Ng_Mesh * mesh,
|
|
|
|
Ng_Meshing_Parameters * mp);
|
2009-01-18 19:47:12 +05:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-01-25 17:35:25 +05:00
|
|
|
#endif
|