2011-03-09 20:47:04 +05:00
|
|
|
#include <meshing.hpp>
|
|
|
|
|
|
|
|
#ifdef SOCKETS
|
|
|
|
#include "../sockets/sockets.hpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "nginterface.h"
|
|
|
|
#include "nginterface_v2.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace netgen
|
|
|
|
{
|
|
|
|
#include "writeuser.hpp"
|
|
|
|
extern AutoPtr<Mesh> mesh;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace netgen
|
|
|
|
{
|
2014-01-07 16:42:39 +06:00
|
|
|
#define NGX_INLINE
|
|
|
|
#include "nginterface_v2_impl.hpp"
|
2011-03-09 20:47:04 +05:00
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
Ngx_Mesh * LoadMesh (const string & filename)
|
2012-06-25 22:20:01 +06:00
|
|
|
{
|
2013-04-03 02:27:35 +06:00
|
|
|
netgen::mesh.Ptr() = NULL;
|
|
|
|
Ng_LoadMesh (filename.c_str());
|
|
|
|
return new Ngx_Mesh (netgen::mesh.Ptr());
|
2012-06-25 22:20:01 +06:00
|
|
|
}
|
2011-03-09 20:47:04 +05:00
|
|
|
|
2014-01-07 16:42:39 +06:00
|
|
|
void Ngx_Mesh :: LoadMesh (const string & filename)
|
|
|
|
{
|
|
|
|
netgen::mesh.Ptr() = NULL;
|
|
|
|
Ng_LoadMesh (filename.c_str());
|
|
|
|
mesh = netgen::mesh.Ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-04-03 02:27:35 +06:00
|
|
|
Ngx_Mesh :: Ngx_Mesh (Mesh * amesh)
|
|
|
|
: mesh(amesh)
|
|
|
|
{ ; }
|
2014-01-07 16:42:39 +06:00
|
|
|
*/
|
2013-04-03 02:27:35 +06:00
|
|
|
|
|
|
|
Ngx_Mesh :: ~Ngx_Mesh ()
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
2013-04-03 02:27:35 +06:00
|
|
|
if (netgen::mesh.Ptr() == mesh)
|
|
|
|
netgen::mesh.Ptr() = NULL;
|
|
|
|
delete mesh;
|
2011-03-09 20:47:04 +05:00
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
int Ngx_Mesh :: GetDimension() const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
2013-04-03 02:27:35 +06:00
|
|
|
return mesh -> GetDimension();
|
2011-03-09 20:47:04 +05:00
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
int Ngx_Mesh :: GetNLevels() const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
2013-04-03 02:27:35 +06:00
|
|
|
return mesh -> mglevels;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ngx_Mesh :: GetNElements (int dim) const
|
|
|
|
{
|
|
|
|
switch (dim)
|
|
|
|
{
|
2013-05-27 19:01:58 +06:00
|
|
|
case 0: return 0; // mesh -> GetNV();
|
2013-04-03 02:27:35 +06:00
|
|
|
case 1: return mesh -> GetNSeg();
|
|
|
|
case 2: return mesh -> GetNSE();
|
|
|
|
case 3: return mesh -> GetNE();
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ngx_Mesh :: GetNNodes (int nt) const
|
|
|
|
{
|
|
|
|
switch (nt)
|
|
|
|
{
|
|
|
|
case 0: return mesh -> GetNV();
|
|
|
|
case 1: return mesh->GetTopology().GetNEdges();
|
|
|
|
case 2: return mesh->GetTopology().GetNFaces();
|
|
|
|
case 3: return mesh -> GetNE();
|
|
|
|
}
|
|
|
|
return -1;
|
2011-03-09 20:47:04 +05:00
|
|
|
}
|
|
|
|
|
2014-01-07 16:42:39 +06:00
|
|
|
/*
|
2013-04-03 02:27:35 +06:00
|
|
|
Ng_Point Ngx_Mesh :: GetPoint (int nr) const
|
|
|
|
{
|
2014-01-07 16:42:39 +06:00
|
|
|
return Ng_Point (&mesh->Point(nr + PointIndex::BASE)(0));
|
2013-04-03 02:27:35 +06:00
|
|
|
}
|
2014-01-07 16:42:39 +06:00
|
|
|
*/
|
2011-03-09 20:47:04 +05:00
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER Ng_Element Ngx_Mesh :: GetElement<0> (int nr) const
|
2012-06-25 22:20:01 +06:00
|
|
|
{
|
|
|
|
cout << "Netgen does not support 0-D elements" << endl;
|
2012-06-27 19:29:56 +06:00
|
|
|
Ng_Element ret;
|
|
|
|
return ret;
|
2012-06-25 22:20:01 +06:00
|
|
|
}
|
2011-03-09 20:47:04 +05:00
|
|
|
|
2014-01-07 16:42:39 +06:00
|
|
|
/*
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER Ng_Element Ngx_Mesh :: GetElement<1> (int nr) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
const Segment & el = mesh->LineSegment (SegmentIndex(nr));
|
|
|
|
|
|
|
|
Ng_Element ret;
|
|
|
|
ret.type = NG_ELEMENT_TYPE(el.GetType());
|
|
|
|
|
|
|
|
ret.points.num = el.GetNP();
|
|
|
|
ret.points.ptr = (int*)&(el[0]);
|
|
|
|
|
|
|
|
ret.vertices.num = 2;
|
|
|
|
ret.vertices.ptr = (int*)&(el[0]);
|
|
|
|
|
|
|
|
ret.edges.num = 1;
|
|
|
|
ret.edges.ptr = mesh->GetTopology().GetSegmentElementEdgesPtr (nr);
|
|
|
|
|
|
|
|
ret.faces.num = 0;
|
|
|
|
ret.faces.ptr = NULL;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER Ng_Element Ngx_Mesh :: GetElement<2> (int nr) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
const Element2d & el = mesh->SurfaceElement (SurfaceElementIndex (nr));
|
|
|
|
|
|
|
|
Ng_Element ret;
|
|
|
|
ret.type = NG_ELEMENT_TYPE(el.GetType());
|
|
|
|
ret.points.num = el.GetNP();
|
|
|
|
ret.points.ptr = (int*)&el[0];
|
|
|
|
|
|
|
|
ret.vertices.num = el.GetNV();
|
|
|
|
ret.vertices.ptr = (int*)&(el[0]);
|
|
|
|
|
|
|
|
ret.edges.num = MeshTopology::GetNEdges (el.GetType());
|
|
|
|
ret.edges.ptr = mesh->GetTopology().GetSurfaceElementEdgesPtr (nr);
|
|
|
|
|
|
|
|
ret.faces.num = MeshTopology::GetNFaces (el.GetType());
|
|
|
|
ret.faces.ptr = mesh->GetTopology().GetSurfaceElementFacesPtr (nr);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER Ng_Element Ngx_Mesh :: GetElement<3> (int nr) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
const Element & el = mesh->VolumeElement (ElementIndex (nr));
|
|
|
|
|
|
|
|
Ng_Element ret;
|
|
|
|
ret.type = NG_ELEMENT_TYPE(el.GetType());
|
|
|
|
ret.points.num = el.GetNP();
|
|
|
|
ret.points.ptr = (int*)&el[0];
|
|
|
|
|
|
|
|
ret.vertices.num = el.GetNV();
|
|
|
|
ret.vertices.ptr = (int*)&(el[0]);
|
|
|
|
|
|
|
|
ret.edges.num = MeshTopology::GetNEdges (el.GetType());
|
|
|
|
ret.edges.ptr = mesh->GetTopology().GetElementEdgesPtr (nr);
|
|
|
|
|
|
|
|
ret.faces.num = MeshTopology::GetNFaces (el.GetType());
|
|
|
|
ret.faces.ptr = mesh->GetTopology().GetElementFacesPtr (nr);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2014-01-07 16:42:39 +06:00
|
|
|
*/
|
2011-03-09 20:47:04 +05:00
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <>
|
|
|
|
DLL_HEADER int Ngx_Mesh :: GetElementIndex<0> (int nr) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-07 16:42:39 +06:00
|
|
|
/*
|
2013-04-03 02:27:35 +06:00
|
|
|
template <>
|
|
|
|
DLL_HEADER int Ngx_Mesh :: GetElementIndex<1> (int nr) const
|
|
|
|
{
|
|
|
|
return (*mesh)[SegmentIndex(nr)].si;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
DLL_HEADER int Ngx_Mesh :: GetElementIndex<2> (int nr) const
|
|
|
|
{
|
|
|
|
int ind = (*mesh)[SurfaceElementIndex(nr)].GetIndex();
|
|
|
|
return mesh->GetFaceDescriptor(ind).BCProperty();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
DLL_HEADER int Ngx_Mesh :: GetElementIndex<3> (int nr) const
|
|
|
|
{
|
|
|
|
return (*mesh)[ElementIndex(nr)].GetIndex();
|
|
|
|
}
|
2014-01-07 16:42:39 +06:00
|
|
|
*/
|
2013-04-03 02:27:35 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2011-03-09 20:47:04 +05:00
|
|
|
DLL_HEADER Ng_Point Ng_GetPoint (int nr)
|
|
|
|
{
|
|
|
|
Ng_Point ret;
|
|
|
|
ret.pt = &mesh->Point(nr + PointIndex::BASE)(0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
DLL_HEADER int Ng_GetElementIndex<1> (int nr)
|
|
|
|
{
|
|
|
|
return (*mesh)[SegmentIndex(nr)].si;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
DLL_HEADER int Ng_GetElementIndex<2> (int nr)
|
|
|
|
{
|
|
|
|
int ind = (*mesh)[SurfaceElementIndex(nr)].GetIndex();
|
|
|
|
return mesh->GetFaceDescriptor(ind).BCProperty();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
DLL_HEADER int Ng_GetElementIndex<3> (int nr)
|
|
|
|
{
|
|
|
|
return (*mesh)[ElementIndex(nr)].GetIndex();
|
|
|
|
}
|
2013-04-03 02:27:35 +06:00
|
|
|
|
|
|
|
template <> int DLL_HEADER Ng_GetNElements<0> ()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> int DLL_HEADER Ng_GetNElements<1> ()
|
|
|
|
{
|
|
|
|
return mesh->GetNSeg();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> DLL_HEADER int Ng_GetNElements<2> ()
|
|
|
|
{
|
|
|
|
return mesh->GetNSE();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> DLL_HEADER int Ng_GetNElements<3> ()
|
|
|
|
{
|
|
|
|
return mesh->GetNE();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> DLL_HEADER Ng_Element Ng_GetElement<0> (int nr)
|
|
|
|
{
|
|
|
|
cout << "Netgen does not support 0-D elements" << endl;
|
|
|
|
Ng_Element ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> DLL_HEADER Ng_Element Ng_GetElement<1> (int nr)
|
|
|
|
{
|
|
|
|
const Segment & el = mesh->LineSegment (SegmentIndex(nr));
|
|
|
|
|
|
|
|
Ng_Element ret;
|
|
|
|
ret.type = NG_ELEMENT_TYPE(el.GetType());
|
|
|
|
|
|
|
|
ret.points.num = el.GetNP();
|
|
|
|
ret.points.ptr = (int*)&(el[0]);
|
|
|
|
|
|
|
|
ret.vertices.num = 2;
|
|
|
|
ret.vertices.ptr = (int*)&(el[0]);
|
|
|
|
|
|
|
|
ret.edges.num = 1;
|
|
|
|
ret.edges.ptr = mesh->GetTopology().GetSegmentElementEdgesPtr (nr);
|
|
|
|
|
|
|
|
ret.faces.num = 0;
|
|
|
|
ret.faces.ptr = NULL;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> DLL_HEADER Ng_Element Ng_GetElement<2> (int nr)
|
|
|
|
{
|
|
|
|
const Element2d & el = mesh->SurfaceElement (SurfaceElementIndex (nr));
|
2011-03-09 20:47:04 +05:00
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
Ng_Element ret;
|
|
|
|
ret.type = NG_ELEMENT_TYPE(el.GetType());
|
|
|
|
ret.points.num = el.GetNP();
|
|
|
|
ret.points.ptr = (int*)&el[0];
|
|
|
|
|
|
|
|
ret.vertices.num = el.GetNV();
|
|
|
|
ret.vertices.ptr = (int*)&(el[0]);
|
|
|
|
|
|
|
|
ret.edges.num = MeshTopology::GetNEdges (el.GetType());
|
|
|
|
ret.edges.ptr = mesh->GetTopology().GetSurfaceElementEdgesPtr (nr);
|
|
|
|
|
|
|
|
ret.faces.num = MeshTopology::GetNFaces (el.GetType());
|
|
|
|
ret.faces.ptr = mesh->GetTopology().GetSurfaceElementFacesPtr (nr);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> DLL_HEADER Ng_Element Ng_GetElement<3> (int nr)
|
|
|
|
{
|
|
|
|
const Element & el = mesh->VolumeElement (ElementIndex (nr));
|
2011-03-09 20:47:04 +05:00
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
Ng_Element ret;
|
|
|
|
ret.type = NG_ELEMENT_TYPE(el.GetType());
|
|
|
|
ret.points.num = el.GetNP();
|
|
|
|
ret.points.ptr = (int*)&el[0];
|
|
|
|
|
|
|
|
ret.vertices.num = el.GetNV();
|
|
|
|
ret.vertices.ptr = (int*)&(el[0]);
|
|
|
|
|
|
|
|
ret.edges.num = MeshTopology::GetNEdges (el.GetType());
|
|
|
|
ret.edges.ptr = mesh->GetTopology().GetElementEdgesPtr (nr);
|
|
|
|
|
|
|
|
ret.faces.num = MeshTopology::GetNFaces (el.GetType());
|
|
|
|
ret.faces.ptr = mesh->GetTopology().GetElementFacesPtr (nr);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
ElementTransformation<3,3> (int elnr,
|
|
|
|
const double * xi,
|
|
|
|
double * x,
|
|
|
|
double * dxdxi) const
|
|
|
|
{
|
|
|
|
Point<3> xl(xi[0], xi[1], xi[2]);
|
|
|
|
Point<3> xg;
|
|
|
|
Mat<3,3> dx;
|
|
|
|
mesh->GetCurvedElements().CalcElementTransformation (xl, elnr, xg, dx);
|
|
|
|
|
|
|
|
if (x)
|
|
|
|
for (int i = 0; i < 3; i++) x[i] = xg(i);
|
|
|
|
|
|
|
|
if (dxdxi)
|
|
|
|
for (int i=0; i<3; i++)
|
|
|
|
{
|
|
|
|
dxdxi[3*i] = dx(i,0);
|
|
|
|
dxdxi[3*i+1] = dx(i,1);
|
|
|
|
dxdxi[3*i+2] = dx(i,2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
ElementTransformation<2,3> (int elnr,
|
|
|
|
const double * xi,
|
|
|
|
double * x,
|
|
|
|
double * dxdxi) const
|
|
|
|
{
|
|
|
|
Point<2> xl(xi[0], xi[1]);
|
|
|
|
Point<3> xg;
|
|
|
|
Mat<3,2> dx;
|
|
|
|
|
|
|
|
mesh->GetCurvedElements().CalcSurfaceTransformation (xl, elnr, xg, dx);
|
|
|
|
|
|
|
|
if (x)
|
|
|
|
for (int i = 0; i < 3; i++) x[i] = xg(i);
|
|
|
|
|
|
|
|
if (dxdxi)
|
|
|
|
for (int i=0; i<3; i++)
|
|
|
|
{
|
|
|
|
dxdxi[2*i] = dx(i,0);
|
|
|
|
dxdxi[2*i+1] = dx(i,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
ElementTransformation<2,2> (int elnr,
|
|
|
|
const double * xi,
|
|
|
|
double * x,
|
|
|
|
double * dxdxi) const
|
|
|
|
{
|
|
|
|
Point<2> xl(xi[0], xi[1]);
|
|
|
|
Point<3> xg;
|
|
|
|
Mat<3,2> dx;
|
|
|
|
|
|
|
|
mesh->GetCurvedElements().CalcSurfaceTransformation (xl, elnr, xg, dx);
|
|
|
|
|
|
|
|
if (x)
|
|
|
|
for (int i = 0; i < 2; i++) x[i] = xg(i);
|
|
|
|
|
|
|
|
if (dxdxi)
|
|
|
|
for (int i=0; i<2; i++)
|
|
|
|
{
|
|
|
|
dxdxi[2*i] = dx(i,0);
|
|
|
|
dxdxi[2*i+1] = dx(i,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
ElementTransformation<1,2> (int elnr,
|
|
|
|
const double * xi,
|
|
|
|
double * x,
|
|
|
|
double * dxdxi) const
|
|
|
|
{
|
|
|
|
Point<3> xg;
|
|
|
|
Vec<3> dx;
|
|
|
|
|
|
|
|
mesh->GetCurvedElements().CalcSegmentTransformation (xi[0], elnr, xg, dx);
|
|
|
|
|
|
|
|
if (x)
|
|
|
|
for (int i = 0; i < 2; i++) x[i] = xg(i);
|
|
|
|
|
|
|
|
if (dxdxi)
|
|
|
|
for (int i=0; i < 2; i++)
|
|
|
|
dxdxi[i] = dx(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
ElementTransformation<1,1> (int elnr,
|
|
|
|
const double * xi,
|
|
|
|
double * x,
|
|
|
|
double * dxdxi) const
|
|
|
|
{
|
2013-05-27 19:01:58 +06:00
|
|
|
Point<3> xg;
|
|
|
|
Vec<3> dx;
|
|
|
|
|
|
|
|
mesh->GetCurvedElements().CalcSegmentTransformation (xi[0], elnr, xg, dx);
|
|
|
|
|
|
|
|
if (x) x[0] = xg(0);
|
|
|
|
if (dxdxi) dxdxi[0] = dx(0);
|
2013-04-03 02:27:35 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
ElementTransformation<0,1> (int elnr,
|
|
|
|
const double * xi,
|
|
|
|
double * x,
|
|
|
|
double * dxdxi) const
|
|
|
|
{
|
|
|
|
cout << "1D not supported" << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
MultiElementTransformation<3,3> (int elnr, int npts,
|
|
|
|
const double * xi, size_t sxi,
|
|
|
|
double * x, size_t sx,
|
|
|
|
double * dxdxi, size_t sdxdxi) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
mesh->GetCurvedElements().CalcMultiPointElementTransformation (elnr, npts, xi, sxi, x, sx, dxdxi, sdxdxi);
|
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
MultiElementTransformation<2,2> (int elnr, int npts,
|
|
|
|
const double * xi, size_t sxi,
|
|
|
|
double * x, size_t sx,
|
|
|
|
double * dxdxi, size_t sdxdxi) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
mesh->GetCurvedElements().CalcMultiPointSurfaceTransformation<2> (elnr, npts, xi, sxi, x, sx, dxdxi, sdxdxi);
|
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
MultiElementTransformation<2,3> (int elnr, int npts,
|
|
|
|
const double * xi, size_t sxi,
|
|
|
|
double * x, size_t sx,
|
|
|
|
double * dxdxi, size_t sdxdxi) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
mesh->GetCurvedElements().CalcMultiPointSurfaceTransformation<3> (elnr, npts, xi, sxi, x, sx, dxdxi, sdxdxi);
|
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
MultiElementTransformation<1,2> (int elnr, int npts,
|
|
|
|
const double * xi, size_t sxi,
|
|
|
|
double * x, size_t sx,
|
|
|
|
double * dxdxi, size_t sdxdxi) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
mesh->GetCurvedElements().CalcMultiPointSegmentTransformation<2> (elnr, npts, xi, sxi, x, sx, dxdxi, sdxdxi);
|
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
MultiElementTransformation<1,1> (int elnr, int npts,
|
|
|
|
const double * xi, size_t sxi,
|
|
|
|
double * x, size_t sx,
|
|
|
|
double * dxdxi, size_t sdxdxi) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
2013-05-27 19:01:58 +06:00
|
|
|
for (int i = 0; i < npts; i++)
|
|
|
|
ElementTransformation<1,1> (elnr, xi + i*sxi, x+i*sx, dxdxi+i*sdxdxi);
|
2011-03-09 20:47:04 +05:00
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
|
|
|
|
template <> DLL_HEADER void Ngx_Mesh ::
|
|
|
|
MultiElementTransformation<0,1> (int elnr, int npts,
|
|
|
|
const double * xi, size_t sxi,
|
|
|
|
double * x, size_t sx,
|
|
|
|
double * dxdxi, size_t sdxdxi) const
|
2012-07-09 15:50:48 +06:00
|
|
|
{
|
|
|
|
cout << "1D not supported" << endl;
|
|
|
|
}
|
|
|
|
|
2011-03-09 20:47:04 +05:00
|
|
|
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <> DLL_HEADER int Ngx_Mesh :: GetNNodes<1> ()
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
return mesh->GetTopology().GetNEdges();
|
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
template <> DLL_HEADER int Ngx_Mesh :: GetNNodes<2> ()
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
return mesh->GetTopology().GetNFaces();
|
|
|
|
}
|
|
|
|
|
2014-01-07 16:42:39 +06:00
|
|
|
template <> DLL_HEADER Ng_Node<1> Ngx_Mesh :: GetNode<1> (int nr) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
Ng_Node<1> node;
|
|
|
|
node.vertices.ptr = mesh->GetTopology().GetEdgeVerticesPtr(nr);
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2014-01-07 16:42:39 +06:00
|
|
|
template <> DLL_HEADER Ng_Node<2> Ngx_Mesh :: GetNode<2> (int nr) const
|
2011-03-09 20:47:04 +05:00
|
|
|
{
|
|
|
|
Ng_Node<2> node;
|
|
|
|
node.vertices.ptr = mesh->GetTopology().GetFaceVerticesPtr(nr);
|
|
|
|
node.vertices.nv = (node.vertices.ptr[3] == 0) ? 3 : 4;
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2013-04-03 02:27:35 +06:00
|
|
|
|
|
|
|
template <>
|
2014-01-07 16:42:39 +06:00
|
|
|
DLL_HEADER int Ngx_Mesh :: FindElementOfPoint <2>
|
2013-04-03 02:27:35 +06:00
|
|
|
(double * p, double * lami,
|
|
|
|
bool build_searchtree,
|
2014-01-07 16:42:39 +06:00
|
|
|
int * const indices, int numind) const
|
2013-04-03 02:27:35 +06:00
|
|
|
|
|
|
|
{
|
|
|
|
Array<int> dummy(numind);
|
|
|
|
for (int i = 0; i < numind; i++) dummy[i] = indices[i]+1;
|
|
|
|
|
|
|
|
double lam3[3];
|
|
|
|
Point<3> p2d(p[0], p[1], 0);
|
|
|
|
int ind =
|
|
|
|
mesh->GetElementOfPoint(p2d, lam3, &dummy, build_searchtree);
|
|
|
|
|
|
|
|
if (ind > 0)
|
|
|
|
{
|
|
|
|
if(mesh->SurfaceElement(ind).GetType()==QUAD)
|
|
|
|
{
|
|
|
|
lami[0] = lam3[0];
|
|
|
|
lami[1] = lam3[1];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lami[0] = 1-lam3[0]-lam3[1];
|
|
|
|
lami[1] = lam3[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ind-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
DLL_HEADER int Ngx_Mesh :: FindElementOfPoint <3>
|
|
|
|
(double * p, double * lami,
|
|
|
|
bool build_searchtree,
|
2014-01-07 16:42:39 +06:00
|
|
|
int * const indices, int numind) const
|
2013-04-03 02:27:35 +06:00
|
|
|
|
|
|
|
{
|
|
|
|
Array<int> dummy(numind);
|
|
|
|
for (int i = 0; i < numind; i++) dummy[i] = indices[i]+1;
|
|
|
|
|
|
|
|
Point<3> p3d(p[0], p[1], p[2]);
|
|
|
|
int ind =
|
|
|
|
mesh->GetElementOfPoint(p3d, lami, &dummy, build_searchtree);
|
|
|
|
return ind-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-03-09 20:47:04 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int link_it_nginterface_v2;
|
|
|
|
|