Merge branch 'master' of data.asc.tuwien.ac.at:jschoeberl/netgen

This commit is contained in:
Gerhard Kitzler 2016-08-11 17:29:38 +02:00
commit 982fee589e
34 changed files with 1754 additions and 422 deletions

181
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,181 @@
stages:
- build
- test
- deploy
- cleanup
############################################
# System templates
############################################
# Windows
.template_windows_32: &win32
tags:
- windows
- x86
before_script:
- "echo off"
- 'call "%VS140COMNTOOLS%\..\..\VC\bin\vcvars32.bat"'
- set EXT_LIBS=C:\external_libs\x86
- set CMAKE_GENERATOR=Visual Studio 14 2015
- set INSTALL_DIR=C:/install32_%CI_BUILD_REF_NAME%
- set NETGENDIR=C:\install32_%CI_BUILD_REF_NAME%\bin
- set PYTHONPATH=C:\install32_%CI_BUILD_REF_NAME%\lib\site-packages
- set PYTHON_LIB=C:/Python3.5_32/libs/python35.lib
- set PYTHON_CONFIG=-DPYTHON_LIBRARY=C:/Python3.5_32/libs/python35.lib -DPYTHON_INCLUDE_DIR=C:/Python3.5_32/include -DPYTHON_INCLUDE_DIR2=C:/Python3.5_32/include
.template_windows_64: &win64
tags:
- windows
- x64
before_script:
- "echo off"
- 'call "%VS140COMNTOOLS%\..\..\VC\bin\amd64\vcvars64.bat"'
- set EXT_LIBS=C:\external_libs\x64
- set CMAKE_GENERATOR=Visual Studio 14 2015 Win64
- set INSTALL_DIR=C:/install64_%CI_BUILD_REF_NAME%
- set NETGENDIR=C:\install64_%CI_BUILD_REF_NAME%\bin
- set PYTHONPATH=C:\install64_%CI_BUILD_REF_NAME%\lib\site-packages
- set PYTHON_LIB=C:/Python3.5/libs/python35.lib
- set PYTHON_CONFIG=-DPYTHON_LIBRARY=C:/Python3.5/libs/python35.lib
# Linux
.template_ubuntu: &ubuntu
tags:
- linux
before_script:
- pwd
- ls
- docker info
.template_ubuntu_1510: &ubuntu_1510
<<: *ubuntu
variables:
UBUNTU_VERSION: "15.10"
.template_ubuntu_1604: &ubuntu_1604
<<: *ubuntu
variables:
UBUNTU_VERSION: "16.04"
############################################
# Build stage
############################################
# Windows
.template_build_win: &tbuild_netgen_win
stage: build
script:
- if not exist build MKDIR build
- cd build
- DEL CMakeCache.txt
- RD /S /Q CMakeFiles
- >-
cmake ..\
-DADDITIONAL_PATHS="%EXT_LIBS%\ext_libs;%EXT_LIBS%\occ"
%PYTHON_CONFIG%
-G"%CMAKE_GENERATOR%"
-DINSTALL_DIR="%INSTALL_DIR%"
-DUSE_OCC=ON
-DCMAKE_CXX_FLAGS_RELEASE="/W0"
- cmake --build . --target INSTALL --config Release
build_netgen_win32:
<<: *win32
<<: *tbuild_netgen_win
cache:
paths:
- build/
- src/
key: "netgen_win32_${CI_BUILD_REF_NAME}"
build_netgen_win64:
<<: *win64
<<: *tbuild_netgen_win
cache:
paths:
- build/
- src/
key: "netgen_win64_${CI_BUILD_REF_NAME}"
# Linux
.template_build_linux: &build_linux
stage: build
script:
- docker build -t netgen_${CI_BUILD_REF_NAME}:${UBUNTU_VERSION} -f tests/docker_${UBUNTU_VERSION} .
- rm -f netgen_${CI_BUILD_REF_NAME}_$UBUNTU_VERSION.id
- docker run --cidfile netgen_${CI_BUILD_REF_NAME}_${UBUNTU_VERSION}.id -e CCACHE_DIR=/ccache -v /mnt/ccache:/ccache netgen_${CI_BUILD_REF_NAME}:${UBUNTU_VERSION} bash /root/src/netgen/tests/build.sh
- docker commit `cat netgen_${CI_BUILD_REF_NAME}_${UBUNTU_VERSION}.id` netgen_${CI_BUILD_REF_NAME}_installed:${UBUNTU_VERSION}
- rm netgen_${CI_BUILD_REF_NAME}_${UBUNTU_VERSION}.id
build_ubuntu_1510:
<<: *ubuntu_1510
<<: *build_linux
build_ubuntu_1604:
<<: *ubuntu_1604
<<: *build_linux
############################################
# Test stage
############################################
# Windows
.template_test_win: &ttest_netgen_win
stage: test
script:
- cd build
- ctest -C Release -V
# skip since we have no machine with 32 bits
.test_netgen_win32:
<<: *win32
<<: *ttest_netgen_win
cache:
paths:
- build/
- src/
key: "netgen_win32"
test_netgen_win64:
<<: *win64
<<: *ttest_netgen_win
cache:
paths:
- build/
- src/
key: "netgen_win64"
# Linux
.template_test_linux: &test_linux
stage: test
script:
- docker run netgen_${CI_BUILD_REF_NAME}_installed:${UBUNTU_VERSION} bash -c 'cd /root/build/netgen && make test ARGS="-V"'
test_ubuntu_1510:
<<: *ubuntu_1510
<<: *test_linux
test_ubuntu_1604:
<<: *ubuntu_1604
<<: *test_linux
############################################
# Deploy stage
############################################
############################################
# Cleanup stage
############################################
linux_cleanup:
stage: cleanup
tags:
- linux
script:
# remove intermediate and old docker images and containers
- docker rm -f `docker ps --no-trunc -aq`
- docker images --no-trunc -aqf "dangling=true" | xargs docker rmi -f
when: always
allow_failure: true

3
README.md Normal file
View File

@ -0,0 +1,3 @@
Netgen mesh generator
NETGEN is an automatic 3d tetrahedral mesh generator. It accepts input from constructive solid geometry (CSG) or boundary representation (BRep) from STL file format. The connection to a geometry kernel allows the handling of IGES and STEP files. NETGEN contains modules for mesh optimization and hierarchical mesh refinement. Netgen 6.x supports scripting via a Python interface. Netgen is open source based on the LGPL license. It is available for Unix/Linux, Windows, and OSX.

View File

@ -210,7 +210,7 @@ DLL_HEADER void ExportCSG()
([] (double x, double y) { return Vec<2>(x,y); })); ([] (double x, double y) { return Vec<2>(x,y); }));
#if BOOST_VERSION >= 106000 #if (BOOST_VERSION >= 106000) && (BOOST_VERSION < 106100)
bp::register_ptr_to_python<shared_ptr<SPSolid>>(); bp::register_ptr_to_python<shared_ptr<SPSolid>>();
#endif #endif
bp::class_<SPSolid, shared_ptr<SPSolid>, boost::noncopyable> ("Solid", bp::no_init) bp::class_<SPSolid, shared_ptr<SPSolid>, boost::noncopyable> ("Solid", bp::no_init)

View File

@ -416,9 +416,9 @@ namespace netgen
using Array<T>::data; using Array<T>::data;
using Array<T>::ownmem; using Array<T>::ownmem;
// T mem[S]; // Intel C++ calls dummy constructor T mem[S]; // Intel C++ calls dummy constructor
// char mem[S*sizeof(T)]; // char mem[S*sizeof(T)];
double mem[(S*sizeof(T)+7) / 8]; // double mem[(S*sizeof(T)+7) / 8];
public: public:
/// Generate array of logical and physical size asize /// Generate array of logical and physical size asize
explicit ArrayMem(int asize = 0) explicit ArrayMem(int asize = 0)

View File

@ -39,9 +39,9 @@ namespace netgen
{ return MPI_DOUBLE; } { return MPI_DOUBLE; }
template <int S> class Vec; template <int S, typename T> class Vec;
template <> template <>
inline MPI_Datatype MyGetMPIType<Vec<3> > () inline MPI_Datatype MyGetMPIType<Vec<3, double> > ()
{ {
static MPI_Datatype MPI_T = 0; static MPI_Datatype MPI_T = 0;
if (!MPI_T) if (!MPI_T)

View File

@ -46,4 +46,7 @@
#include "gzstream.h" #include "gzstream.h"
#include "archive_base.hpp" #include "archive_base.hpp"
#include "mysimd.hpp"
#endif #endif

367
libsrc/general/mysimd.hpp Normal file
View File

@ -0,0 +1,367 @@
#ifndef FILE_MYSIMD
#define FILE_MYSIMD
/**************************************************************************/
/* File: mysimd.hpp */
/* Author: Joachim Schoeberl */
/* Date: 25. Mar. 16 */
/**************************************************************************/
#include <immintrin.h>
#ifdef WIN32
inline __m128d operator- (__m128d a) { return _mm_xor_pd(a, _mm_set1_pd(-0.0)); }
inline __m128d operator+ (__m128d a, __m128d b) { return _mm_add_pd(a,b); }
inline __m128d operator- (__m128d a, __m128d b) { return _mm_sub_pd(a,b); }
inline __m128d operator* (__m128d a, __m128d b) { return _mm_mul_pd(a,b); }
inline __m128d operator/ (__m128d a, __m128d b) { return _mm_div_pd(a,b); }
inline __m128d operator* (double a, __m128d b) { return _mm_set1_pd(a)*b; }
inline __m128d operator* (__m128d b, double a) { return _mm_set1_pd(a)*b; }
inline __m128d operator+= (__m128d &a, __m128d b) { return a = a+b; }
inline __m128d operator-= (__m128d &a, __m128d b) { return a = a-b; }
inline __m128d operator*= (__m128d &a, __m128d b) { return a = a*b; }
inline __m128d operator/= (__m128d &a, __m128d b) { return a = a/b; }
inline __m256d operator- (__m256d a) { return _mm256_xor_pd(a, _mm256_set1_pd(-0.0)); }
inline __m256d operator+ (__m256d a, __m256d b) { return _mm256_add_pd(a,b); }
inline __m256d operator- (__m256d a, __m256d b) { return _mm256_sub_pd(a,b); }
inline __m256d operator* (__m256d a, __m256d b) { return _mm256_mul_pd(a,b); }
inline __m256d operator/ (__m256d a, __m256d b) { return _mm256_div_pd(a,b); }
inline __m256d operator* (double a, __m256d b) { return _mm256_set1_pd(a)*b; }
inline __m256d operator* (__m256d b, double a) { return _mm256_set1_pd(a)*b; }
inline __m256d operator+= (__m256d &a, __m256d b) { return a = a+b; }
inline __m256d operator-= (__m256d &a, __m256d b) { return a = a-b; }
inline __m256d operator*= (__m256d &a, __m256d b) { return a = a*b; }
inline __m256d operator/= (__m256d &a, __m256d b) { return a = a/b; }
#endif
namespace netgen
{
template <typename T> class SIMD;
template <typename T>
struct has_call_operator
{
template <typename C> static std::true_type check( decltype( sizeof(&C::operator() )) ) { return std::true_type(); }
template <typename> static std::false_type check(...) { return std::false_type(); }
typedef decltype( check<T>(sizeof(char)) ) type;
static constexpr type value = type();
};
#ifdef __AVX__
template<>
class alignas(32) SIMD<double>
{
__m256d data;
public:
static constexpr int Size() { return 4; }
SIMD () = default;
SIMD (const SIMD &) = default;
SIMD & operator= (const SIMD &) = default;
SIMD (double val)
{
data = _mm256_set1_pd(val);
}
SIMD (__m256d adata)
: data(adata)
{ ; }
/*
template <typename T>
SIMD (const T & val)
{
// SIMD_function(val, std::is_convertible<T, std::function<double(int)>>());
SIMD_function(val, has_call_operator<T>::value);
}
*/
/*
template <typename T>
SIMD & operator= (const T & val)
{
// SIMD_function(val, std::is_convertible<T, std::function<double(int)>>());
SIMD_function(val, has_call_operator<T>::value);
return *this;
}
*/
template <typename Function>
void SIMD_function (const Function & func, std::true_type)
{
data = _mm256_set_pd(func(3), func(2), func(1), func(0));
}
// not a function
void SIMD_function (double const * p, std::false_type)
{
data = _mm256_loadu_pd(p);
}
void SIMD_function (double val, std::false_type)
{
data = _mm256_set1_pd(val);
}
void SIMD_function (__m256d _data, std::false_type)
{
data = _data;
}
inline double operator[] (int i) const { return ((double*)(&data))[i]; }
inline __m256d Data() const { return data; }
inline __m256d & Data() { return data; }
};
inline SIMD<double> operator+ (SIMD<double> a, SIMD<double> b) { return a.Data()+b.Data(); }
inline SIMD<double> operator- (SIMD<double> a, SIMD<double> b) { return a.Data()-b.Data(); }
inline SIMD<double> operator- (SIMD<double> a) { return -a.Data(); }
inline SIMD<double> operator* (SIMD<double> a, SIMD<double> b) { return a.Data()*b.Data(); }
inline SIMD<double> operator/ (SIMD<double> a, SIMD<double> b) { return a.Data()/b.Data(); }
inline SIMD<double> operator* (double a, SIMD<double> b) { return SIMD<double>(a)*b; }
inline SIMD<double> operator* (SIMD<double> b, double a) { return SIMD<double>(a)*b; }
inline SIMD<double> operator+= (SIMD<double> & a, SIMD<double> b) { return a.Data()+=b.Data(); }
inline SIMD<double> operator-= (SIMD<double> & a, SIMD<double> b) { return a.Data()-=b.Data(); }
inline SIMD<double> operator*= (SIMD<double> & a, SIMD<double> b) { return a.Data()*=b.Data(); }
inline SIMD<double> operator/= (SIMD<double> & a, SIMD<double> b) { return a.Data()/=b.Data(); }
using std::sqrt;
using std::fabs;
inline SIMD<double> sqrt (SIMD<double> a) { return _mm256_sqrt_pd(a.Data()); }
inline SIMD<double> fabs (SIMD<double> a) { return _mm256_max_pd(a.Data(), -a.Data()); }
inline SIMD<double> L2Norm2 (SIMD<double> a) { return a.Data()*a.Data(); }
inline SIMD<double> Trans (SIMD<double> a) { return a; }
inline SIMD<double> IfPos (SIMD<double> a, SIMD<double> b, SIMD<double> c)
{
auto cp = _mm256_cmp_pd (a.Data(), _mm256_setzero_pd(), _CMP_GT_OS);
return _mm256_blendv_pd(c.Data(), b.Data(), cp);
}
inline double HSum (SIMD<double> sd)
{
__m128d hv = _mm_add_pd (_mm256_extractf128_pd(sd.Data(),0), _mm256_extractf128_pd(sd.Data(),1));
return _mm_cvtsd_f64 (_mm_hadd_pd (hv, hv));
}
#else
template<>
class SIMD<double>
{
double data;
public:
static constexpr int Size() { return 1; }
SIMD () = default;
SIMD (const SIMD &) = default;
SIMD & operator= (const SIMD &) = default;
SIMD (double val)
: data(val) { ; }
/*
template <typename T>
SIMD (const T & val)
{
// SIMD_function(val, std::is_convertible<T, std::function<double(int)>>());
SIMD_function(val, has_call_operator<T>::value);
}
*/
template <typename T>
SIMD & operator= (const T & val)
{
// SIMD_function(val, std::is_convertible<T, std::function<double(int)>>());
SIMD_function(val, has_call_operator<T>::value);
return *this;
}
template <typename Function>
void SIMD_function (const Function & func, std::true_type)
{
data = func(0);
}
// not a function
void SIMD_function (double const * p, std::false_type)
{
data = *p;
}
void SIMD_function (double val, std::false_type)
{
data = val;
}
double operator[] (int i) const { return ((double*)(&data))[i]; }
double Data() const { return data; }
double & Data() { return data; }
};
inline SIMD<double> operator+ (SIMD<double> a, SIMD<double> b) { return a.Data()+b.Data(); }
inline SIMD<double> operator- (SIMD<double> a, SIMD<double> b) { return a.Data()-b.Data(); }
inline SIMD<double> operator- (SIMD<double> a) { return -a.Data(); }
inline SIMD<double> operator* (SIMD<double> a, SIMD<double> b) { return a.Data()*b.Data(); }
inline SIMD<double> operator/ (SIMD<double> a, SIMD<double> b) { return a.Data()/b.Data(); }
inline SIMD<double> operator* (double a, SIMD<double> b) { return SIMD<double>(a)*b; }
inline SIMD<double> operator* (SIMD<double> b, double a) { return SIMD<double>(a)*b; }
inline SIMD<double> operator+= (SIMD<double> & a, SIMD<double> b) { return a.Data()+=b.Data(); }
inline SIMD<double> operator-= (SIMD<double> & a, SIMD<double> b) { return a.Data()-=b.Data(); }
inline SIMD<double> operator*= (SIMD<double> & a, SIMD<double> b) { return a.Data()*=b.Data(); }
inline SIMD<double> operator/= (SIMD<double> & a, SIMD<double> b) { return a.Data()/=b.Data(); }
using std::sqrt;
using std::fabs;
inline SIMD<double> sqrt (SIMD<double> a) { return std::sqrt(a.Data()); }
inline SIMD<double> fabs (SIMD<double> a) { return std::fabs(a.Data()); }
inline SIMD<double> L2Norm2 (SIMD<double> a) { return a.Data()*a.Data(); }
inline SIMD<double> Trans (SIMD<double> a) { return a; }
inline SIMD<double> IfPos (SIMD<double> a, SIMD<double> b, SIMD<double> c)
{
return (a.Data() > 0) ? b : c;
}
inline double HSum (SIMD<double> sd)
{ return sd.Data(); }
#endif
template <typename T>
ostream & operator<< (ostream & ost, SIMD<T> simd)
{
ost << simd[0];
for (int i = 1; i < simd.Size(); i++)
ost << " " << simd[i];
return ost;
}
/*
using std::exp;
inline netgen::SIMD<double> exp (netgen::SIMD<double> a) {
return netgen::SIMD<double>([&](int i)->double { return exp(a[i]); } );
}
using std::log;
inline netgen::SIMD<double> log (netgen::SIMD<double> a) {
return netgen::SIMD<double>([&](int i)->double { return log(a[i]); } );
}
using std::pow;
inline netgen::SIMD<double> pow (netgen::SIMD<double> a, double x) {
return netgen::SIMD<double>([&](int i)->double { return pow(a[i],x); } );
}
*/
template <int D, typename T>
class MultiSIMD
{
SIMD<T> head;
MultiSIMD<D-1,T> tail;
public:
MultiSIMD () = default;
MultiSIMD (const MultiSIMD & ) = default;
MultiSIMD (T v) : head(v), tail(v) { ; }
MultiSIMD (SIMD<T> _head, MultiSIMD<D-1,T> _tail)
: head(_head), tail(_tail) { ; }
SIMD<T> Head() const { return head; }
MultiSIMD<D-1,T> Tail() const { return tail; }
SIMD<T> & Head() { return head; }
MultiSIMD<D-1,T> & Tail() { return tail; }
template <int NR>
SIMD<T> Get() const { return NR==0 ? head : tail.template Get<NR-1>(); }
template <int NR>
SIMD<T> & Get() { return NR==0 ? head : tail.template Get<NR-1>(); }
};
template <typename T>
class MultiSIMD<2,T>
{
SIMD<T> v0, v1;
public:
MultiSIMD () = default;
MultiSIMD (const MultiSIMD & ) = default;
MultiSIMD (T v) : v0(v), v1(v) { ; }
MultiSIMD (SIMD<T> _v0, SIMD<T> _v1) : v0(_v0), v1(_v1) { ; }
SIMD<T> Head() const { return v0; }
SIMD<T> Tail() const { return v1; }
SIMD<T> & Head() { return v0; }
SIMD<T> & Tail() { return v1; }
template <int NR>
SIMD<T> Get() const { return NR==0 ? v0 : v1; }
template <int NR>
SIMD<T> & Get() { return NR==0 ? v0 : v1; }
};
template <int D> inline MultiSIMD<D,double> operator+ (MultiSIMD<D,double> a, MultiSIMD<D,double> b)
{ return MultiSIMD<D,double> (a.Head()+b.Head(), a.Tail()+b.Tail()); }
template <int D> inline MultiSIMD<D,double> operator+ (double a, MultiSIMD<D,double> b)
{ return MultiSIMD<D,double> (a+b.Head(), a+b.Tail()); }
template <int D> inline MultiSIMD<D,double> operator+ (MultiSIMD<D,double> b, double a)
{ return MultiSIMD<D,double> (a+b.Head(), a+b.Tail()); }
template <int D> inline MultiSIMD<D,double> operator- (MultiSIMD<D,double> a, MultiSIMD<D,double> b)
{ return MultiSIMD<D,double> (a.Head()-b.Head(), a.Tail()-b.Tail()); }
template <int D> inline MultiSIMD<D,double> operator- (double a, MultiSIMD<D,double> b)
{ return MultiSIMD<D,double> (a-b.Head(), a-b.Tail()); }
template <int D> inline MultiSIMD<D,double> operator- (MultiSIMD<D,double> b, double a)
{ return MultiSIMD<D,double> (b.Head()-a, b.Tail()-a); }
template <int D> inline MultiSIMD<D,double> operator- (MultiSIMD<D,double> a)
{ return MultiSIMD<D,double> (-a.Head(), -a.Tail()); }
template <int D> inline MultiSIMD<D,double> operator* (MultiSIMD<D,double> a, MultiSIMD<D,double> b)
{ return MultiSIMD<D,double> (a.Head()*b.Head(), a.Tail()*b.Tail()); }
template <int D> inline MultiSIMD<D,double> operator/ (MultiSIMD<D,double> a, MultiSIMD<D,double> b)
{ return MultiSIMD<D,double> (a.Head()/b.Head(), a.Tail()/b.Tail()); }
template <int D> inline MultiSIMD<D,double> operator* (double a, MultiSIMD<D,double> b)
{ return MultiSIMD<D,double> ( a*b.Head(), a*b.Tail()); }
template <int D> inline MultiSIMD<D,double> operator* (MultiSIMD<D,double> b, double a)
{ return MultiSIMD<D,double> ( a*b.Head(), a*b.Tail()); }
template <int D> inline MultiSIMD<D,double> & operator+= (MultiSIMD<D,double> & a, MultiSIMD<D,double> b)
{ a.Head()+=b.Head(); a.Tail()+=b.Tail(); return a; }
template <int D> inline MultiSIMD<D,double> operator-= (MultiSIMD<D,double> & a, double b)
{ a.Head()-=b; a.Tail()-=b; return a; }
template <int D> inline MultiSIMD<D,double> operator-= (MultiSIMD<D,double> & a, MultiSIMD<D,double> b)
{ a.Head()-=b.Head(); a.Tail()-=b.Tail(); return a; }
template <int D> inline MultiSIMD<D,double> & operator*= (MultiSIMD<D,double> & a, MultiSIMD<D,double> b)
{ a.Head()*=b.Head(); a.Tail()*=b.Tail(); return a; }
template <int D> inline MultiSIMD<D,double> & operator*= (MultiSIMD<D,double> & a, double b)
{ a.Head()*=b; a.Tail()*=b; return a; }
// inline MultiSIMD<double> operator/= (MultiSIMD<double> & a, MultiSIMD<double> b) { return a.Data()/=b.Data(); }
template <int D, typename T>
ostream & operator<< (ostream & ost, MultiSIMD<D,T> multi)
{
ost << multi.Head() << " " << multi.Tail();
return ost;
}
}
#endif

View File

@ -36,18 +36,19 @@ DLL_HEADER void ExportGeom2d()
.def("Load",&SplineGeometry2d::Load) .def("Load",&SplineGeometry2d::Load)
.def("AppendPoint", FunctionPointer .def("AppendPoint", FunctionPointer
([](SplineGeometry2d &self, double px, double py, double maxh) ([](SplineGeometry2d &self, double px, double py, double maxh, bool hpref)
{ {
Point<2> p; Point<2> p;
p(0) = px; p(0) = px;
p(1) = py; p(1) = py;
GeomPoint<2> gp(p); GeomPoint<2> gp(p);
gp.hmax = maxh; gp.hmax = maxh;
gp.hpref = hpref;
self.geompoints.Append(gp); self.geompoints.Append(gp);
return self.geompoints.Size()-1; return self.geompoints.Size()-1;
}), }),
(bp::arg("self"), bp::arg("x"), bp::arg("y"), bp::arg("maxh") = 1e99)) (bp::arg("self"), bp::arg("x"), bp::arg("y"), bp::arg("maxh") = 1e99, bp::arg("hpref")=false))
.def("Append", FunctionPointer([](SplineGeometry2d &self, bp::list segment, int leftdomain, int rightdomain, bp::object bc, double maxh) .def("Append", FunctionPointer([](SplineGeometry2d &self, bp::list segment, int leftdomain, int rightdomain, bp::object bc, double maxh, bool hpref)
{ {
bp::extract<std::string> segtype(segment[0]); bp::extract<std::string> segtype(segment[0]);
@ -77,6 +78,8 @@ DLL_HEADER void ExportGeom2d()
seg->leftdom = leftdomain; seg->leftdom = leftdomain;
seg->rightdom = rightdomain; seg->rightdom = rightdomain;
seg->hmax = maxh; seg->hmax = maxh;
seg->hpref_left = hpref;
seg->hpref_right = hpref;
seg->reffak = 1; seg->reffak = 1;
seg->copyfrom = -1; seg->copyfrom = -1;
if (bp::extract<int>(bc).check()) if (bp::extract<int>(bc).check())
@ -93,7 +96,7 @@ DLL_HEADER void ExportGeom2d()
seg->bc = self.GetNSplines()+1; seg->bc = self.GetNSplines()+1;
self.AppendSegment(seg); self.AppendSegment(seg);
}), (bp::arg("self"), bp::arg("point_indices"), bp::arg("leftdomain") = 1, bp::arg("rightdomain") = 0, }), (bp::arg("self"), bp::arg("point_indices"), bp::arg("leftdomain") = 1, bp::arg("rightdomain") = 0,
bp::arg("bc")=bp::object(), bp::arg("maxh")=1e99 bp::arg("bc")=bp::object(), bp::arg("maxh")=1e99, bp::arg("hpref")=false
)) ))

View File

@ -12,31 +12,31 @@ namespace netgen
{ {
template <int D> class Vec; template <int D, typename T = double> class Vec;
template <int D> class Point; template <int D, typename T = double> class Point;
template <int D> template <int D, typename T>
class Point class Point
{ {
protected: protected:
double x[D]; T x[D];
public: public:
Point () { ; } Point () { ; }
Point (double ax) { for (int i = 0; i < D; i++) x[i] = ax; } Point (T ax) { for (int i = 0; i < D; i++) x[i] = ax; }
Point (double ax, double ay) Point (T ax, T ay)
{ {
// static_assert(D==2, "Point<D> constructor with 2 args called"); // static_assert(D==2, "Point<D> constructor with 2 args called");
x[0] = ax; x[1] = ay; x[0] = ax; x[1] = ay;
} }
Point (double ax, double ay, double az) Point (T ax, T ay, T az)
{ {
// static_assert(D==3, "Point<D> constructor with 3 args called"); // static_assert(D==3, "Point<D> constructor with 3 args called");
x[0] = ax; x[1] = ay; x[2] = az; x[0] = ax; x[1] = ay; x[2] = az;
} }
Point (double ax, double ay, double az, double au) Point (T ax, T ay, T az, T au)
{ x[0] = ax; x[1] = ay; x[2] = az; x[3] = au;} { x[0] = ax; x[1] = ay; x[2] = az; x[3] = au;}
Point (const Point<D> & p2) Point (const Point<D> & p2)
@ -52,39 +52,39 @@ namespace netgen
return *this; return *this;
} }
Point & operator= (double val) Point & operator= (T val)
{ {
for (int i = 0; i < D; i++) x[i] = val; for (int i = 0; i < D; i++) x[i] = val;
return *this; return *this;
} }
double & operator() (int i) { return x[i]; } T & operator() (int i) { return x[i]; }
const double & operator() (int i) const { return x[i]; } const T & operator() (int i) const { return x[i]; }
operator const double* () const { return x; } operator const T* () const { return x; }
}; };
template <int D> template <int D, typename T>
class Vec class Vec
{ {
protected: protected:
double x[D]; T x[D];
public: public:
Vec () { ; } // for (int i = 0; i < D; i++) x[i] = 0; } Vec () { ; } // for (int i = 0; i < D; i++) x[i] = 0; }
Vec (double ax) { for (int i = 0; i < D; i++) x[i] = ax; } Vec (T ax) { for (int i = 0; i < D; i++) x[i] = ax; }
Vec (double ax, double ay) Vec (T ax, T ay)
{ {
// static_assert(D==2, "Vec<D> constructor with 2 args called"); // static_assert(D==2, "Vec<D> constructor with 2 args called");
x[0] = ax; x[1] = ay; x[0] = ax; x[1] = ay;
} }
Vec (double ax, double ay, double az) Vec (T ax, T ay, T az)
{ {
// static_assert(D==3, "Vec<D> constructor with 3 args called"); // static_assert(D==3, "Vec<D> constructor with 3 args called");
x[0] = ax; x[1] = ay; x[2] = az; x[0] = ax; x[1] = ay; x[2] = az;
} }
Vec (double ax, double ay, double az, double au) Vec (T ax, T ay, T az, T au)
{ x[0] = ax; x[1] = ay; x[2] = az; x[3] = au; } { x[0] = ax; x[1] = ay; x[2] = az; x[3] = au; }
Vec (const Vec<D> & p2) Vec (const Vec<D> & p2)
@ -104,28 +104,28 @@ namespace netgen
return *this; return *this;
} }
Vec & operator= (double s) Vec & operator= (T s)
{ {
for (int i = 0; i < D; i++) x[i] = s; for (int i = 0; i < D; i++) x[i] = s;
return *this; return *this;
} }
double & operator() (int i) { return x[i]; } T & operator() (int i) { return x[i]; }
const double & operator() (int i) const { return x[i]; } const T & operator() (int i) const { return x[i]; }
operator const double* () const { return x; } operator const T* () const { return x; }
double Length () const T Length () const
{ {
double l = 0; T l = 0;
for (int i = 0; i < D; i++) for (int i = 0; i < D; i++)
l += x[i] * x[i]; l += x[i] * x[i];
return sqrt (l); return sqrt (l);
} }
double Length2 () const T Length2 () const
{ {
double l = 0; T l = 0;
for (int i = 0; i < D; i++) for (int i = 0; i < D; i++)
l += x[i] * x[i]; l += x[i] * x[i];
return l; return l;
@ -133,7 +133,7 @@ namespace netgen
const Vec<D> & Normalize () const Vec<D> & Normalize ()
{ {
double l = Length(); T l = Length();
if (l != 0) if (l != 0)
for (int i = 0; i < D; i++) for (int i = 0; i < D; i++)
x[i] /= l; x[i] /= l;
@ -147,19 +147,19 @@ namespace netgen
template <int H, int W=H> template <int H, int W=H, typename T = double>
class Mat class Mat
{ {
protected: protected:
double x[H*W]; T x[H*W];
public: public:
Mat () { ; } Mat () { ; }
Mat (const Mat & b) Mat (const Mat & b)
{ for (int i = 0; i < H*W; i++) x[i] = b.x[i]; } { for (int i = 0; i < H*W; i++) x[i] = b.x[i]; }
Mat & operator= (double s) Mat & operator= (T s)
{ {
for (int i = 0; i < H*W; i++) x[i] = s; for (int i = 0; i < H*W; i++) x[i] = s;
return *this; return *this;
@ -171,30 +171,30 @@ namespace netgen
return *this; return *this;
} }
double & operator() (int i, int j) { return x[i*W+j]; } T & operator() (int i, int j) { return x[i*W+j]; }
const double & operator() (int i, int j) const { return x[i*W+j]; } const T & operator() (int i, int j) const { return x[i*W+j]; }
double & operator() (int i) { return x[i]; } T & operator() (int i) { return x[i]; }
const double & operator() (int i) const { return x[i]; } const T & operator() (int i) const { return x[i]; }
Vec<H> Col (int i) const Vec<H,T> Col (int i) const
{ {
Vec<H> hv; Vec<H,T> hv;
for (int j = 0; j < H; j++) for (int j = 0; j < H; j++)
hv(j) = x[j*W+i]; hv(j) = x[j*W+i];
return hv; return hv;
} }
Vec<W> Row (int i) const Vec<W,T> Row (int i) const
{ {
Vec<W> hv; Vec<W,T> hv;
for (int j = 0; j < W; j++) for (int j = 0; j < W; j++)
hv(j) = x[i*W+j]; hv(j) = x[i*W+j];
return hv; return hv;
} }
void Solve (const Vec<H> & rhs, Vec<W> & sol) const void Solve (const Vec<H,T> & rhs, Vec<W,T> & sol) const
{ {
Mat<W,H> inv; Mat<W,H,T> inv;
CalcInverse (*this, inv); CalcInverse (*this, inv);
sol = inv * rhs; sol = inv * rhs;
} }

View File

@ -247,13 +247,14 @@ namespace netgen
} }
*/ */
inline Mat<2,2> operator* (const Mat<2,2> & a, const Mat<2,2> & b) template <typename T>
inline Mat<2,2,T> operator* (const Mat<2,2,T> & a, const Mat<2,2,T> & b)
{ {
Mat<2,2> m; Mat<2,2,T> m;
for (int i = 0; i < 2; i++) for (int i = 0; i < 2; i++)
for (int j = 0; j < 2; j++) for (int j = 0; j < 2; j++)
{ {
double sum = 0; T sum(0);
for (int k = 0; k < 2; k++) for (int k = 0; k < 2; k++)
sum += a(i,k) * b(k, j); sum += a(i,k) * b(k, j);
m(i,j) = sum; m(i,j) = sum;
@ -275,14 +276,14 @@ namespace netgen
return m; return m;
} }
template <typename T>
inline Mat<3,2> operator* (const Mat<3,2> & a, const Mat<2,2> & b) inline Mat<3,2,T> operator* (const Mat<3,2,T> & a, const Mat<2,2,T> & b)
{ {
Mat<3,2> m; Mat<3,2,T> m;
for (int i = 0; i < 3; i++) for (int i = 0; i < 3; i++)
for (int j = 0; j < 2; j++) for (int j = 0; j < 2; j++)
{ {
double sum = 0; T sum(0.0);
for (int k = 0; k < 2; k++) for (int k = 0; k < 2; k++)
sum += a(i,k) * b(k, j); sum += a(i,k) * b(k, j);
m(i,j) = sum; m(i,j) = sum;
@ -306,14 +307,14 @@ namespace netgen
return m; return m;
} }
template <typename T>
inline Mat<3,3> operator* (const Mat<3,3> & a, const Mat<3,3> & b) inline Mat<3,3,T> operator* (const Mat<3,3,T> & a, const Mat<3,3,T> & b)
{ {
Mat<3,3> m; Mat<3,3,T> m;
for (int i = 0; i < 3; i++) for (int i = 0; i < 3; i++)
for (int j = 0; j < 3; j++) for (int j = 0; j < 3; j++)
{ {
double sum = 0; T sum = T(0);
for (int k = 0; k < 3; k++) for (int k = 0; k < 3; k++)
sum += a(i,k) * b(k, j); sum += a(i,k) * b(k, j);
m(i,j) = sum; m(i,j) = sum;
@ -348,8 +349,8 @@ namespace netgen
template <int D> template <int D, typename T>
inline ostream & operator<< (ostream & ost, const Vec<D> & a) inline ostream & operator<< (ostream & ost, const Vec<D,T> & a)
{ {
ost << "("; ost << "(";
for (int i = 0; i < D-1; i++) for (int i = 0; i < D-1; i++)
@ -358,8 +359,8 @@ namespace netgen
return ost; return ost;
} }
template <int D> template <int D, typename T>
inline ostream & operator<< (ostream & ost, const Point<D> & a) inline ostream & operator<< (ostream & ost, const Point<D,T> & a)
{ {
ost << "("; ost << "(";
for (int i = 0; i < D-1; i++) for (int i = 0; i < D-1; i++)
@ -375,8 +376,8 @@ namespace netgen
return ost; return ost;
} }
template <int H, int W> template <int H, int W, typename T>
inline ostream & operator<< (ostream & ost, const Mat<H,W> & m) inline ostream & operator<< (ostream & ost, const Mat<H,W,T> & m)
{ {
ost << "("; ost << "(";
for (int i = 0; i < H; i++) for (int i = 0; i < H; i++)

View File

@ -44,12 +44,10 @@ void RunParallel ( void * (*fun)(void *), void * in)
#include "writeuser.hpp"
namespace netgen namespace netgen
{ {
#include "writeuser.hpp"
extern shared_ptr<Mesh> mesh; extern shared_ptr<Mesh> mesh;
extern shared_ptr<NetgenGeometry> ng_geometry; extern shared_ptr<NetgenGeometry> ng_geometry;

View File

@ -8,9 +8,10 @@
#include "nginterface_v2.hpp" #include "nginterface_v2.hpp"
// #include <visual.hpp> // #include <visual.hpp>
#include "writeuser.hpp"
namespace netgen namespace netgen
{ {
#include "writeuser.hpp"
extern shared_ptr<Mesh> mesh; extern shared_ptr<Mesh> mesh;
} }
@ -599,7 +600,7 @@ namespace netgen
#ifdef __AVX2__ #ifdef __AVX__
#include <immintrin.h> #include <immintrin.h>
template<> DLL_HEADER void Ngx_Mesh :: template<> DLL_HEADER void Ngx_Mesh ::
@ -617,6 +618,12 @@ namespace netgen
__m256d * x, size_t sx, __m256d * x, size_t sx,
__m256d * dxdxi, size_t sdxdxi) const __m256d * dxdxi, size_t sdxdxi) const
{ {
mesh->GetCurvedElements().CalcMultiPointSurfaceTransformation<2>
(elnr, npts,
reinterpret_cast<const SIMD<double>*> (xi), sxi,
reinterpret_cast<SIMD<double>*> (x), sx,
reinterpret_cast<SIMD<double>*> (dxdxi), sdxdxi);
/*
for (int i = 0; i < npts; i++) for (int i = 0; i < npts; i++)
{ {
double hxi[4][2]; double hxi[4][2];
@ -637,6 +644,7 @@ namespace netgen
x += sx; x += sx;
dxdxi += sdxdxi; dxdxi += sdxdxi;
} }
*/
} }
template<> DLL_HEADER void Ngx_Mesh :: template<> DLL_HEADER void Ngx_Mesh ::
@ -645,6 +653,12 @@ namespace netgen
__m256d * x, size_t sx, __m256d * x, size_t sx,
__m256d * dxdxi, size_t sdxdxi) const __m256d * dxdxi, size_t sdxdxi) const
{ {
mesh->GetCurvedElements().CalcMultiPointElementTransformation
(elnr, npts,
reinterpret_cast<const SIMD<double>*> (xi), sxi,
reinterpret_cast<SIMD<double>*> (x), sx,
reinterpret_cast<SIMD<double>*> (dxdxi), sdxdxi);
/*
for (int i = 0; i < npts; i++) for (int i = 0; i < npts; i++)
{ {
double hxi[4][3]; double hxi[4][3];
@ -665,6 +679,7 @@ namespace netgen
x += sx; x += sx;
dxdxi += sdxdxi; dxdxi += sdxdxi;
} }
*/
} }
template<> DLL_HEADER void Ngx_Mesh :: template<> DLL_HEADER void Ngx_Mesh ::
@ -711,6 +726,12 @@ namespace netgen
__m256d * x, size_t sx, __m256d * x, size_t sx,
__m256d * dxdxi, size_t sdxdxi) const __m256d * dxdxi, size_t sdxdxi) const
{ {
mesh->GetCurvedElements().CalcMultiPointSurfaceTransformation<3>
(elnr, npts,
reinterpret_cast<const SIMD<double>*> (xi), sxi,
reinterpret_cast<SIMD<double>*> (x), sx,
reinterpret_cast<SIMD<double>*> (dxdxi), sdxdxi);
/*
for (int i = 0; i < npts; i++) for (int i = 0; i < npts; i++)
{ {
double hxi[4][2]; double hxi[4][2];
@ -731,6 +752,7 @@ namespace netgen
x += sx; x += sx;
dxdxi += sdxdxi; dxdxi += sdxdxi;
} }
*/
} }
#endif #endif

View File

@ -11,10 +11,10 @@
#include <csg.hpp> #include <csg.hpp>
#include <meshing.hpp> #include <meshing.hpp>
namespace netgen
{
#include "writeuser.hpp" #include "writeuser.hpp"
namespace netgen
{
void ReadFile (Mesh & mesh, void ReadFile (Mesh & mesh,
const string & hfilename) const string & hfilename)
{ {

View File

@ -12,11 +12,11 @@
#include <meshing.hpp> #include <meshing.hpp>
#include <sys/stat.h> #include <sys/stat.h>
#include "writeuser.hpp"
namespace netgen namespace netgen
{ {
#include "writeuser.hpp"
extern MeshingParameters mparam; extern MeshingParameters mparam;

View File

@ -13,10 +13,10 @@
#include <string> #include <string>
using namespace std; using namespace std;
#include "writeuser.hpp"
namespace netgen namespace netgen
{ {
#include "writeuser.hpp"
// Forward declarations (don't know, where to define them, sorry) // Forward declarations (don't know, where to define them, sorry)
int addComponent(string &strComp, string &strSitu, ofstream &out); int addComponent(string &strComp, string &strSitu, ofstream &out);

View File

@ -10,10 +10,11 @@
#include <geometry2d.hpp> #include <geometry2d.hpp>
#include <meshing.hpp> #include <meshing.hpp>
namespace netgen
{
#include "writeuser.hpp" #include "writeuser.hpp"
namespace netgen
{
extern MeshingParameters mparam; extern MeshingParameters mparam;

View File

@ -7,6 +7,7 @@
/* Date: 10. Dec. 97 */ /* Date: 10. Dec. 97 */
/**************************************************************************/ /**************************************************************************/
namespace netgen {
DLL_HEADER extern DLL_HEADER extern
void WriteFile (int typ, void WriteFile (int typ,
@ -162,5 +163,7 @@ extern bool DLL_HEADER WriteUserFormat (const string & format,
const NetgenGeometry & geom, const NetgenGeometry & geom,
const string & filename); const string & filename);
}
#endif #endif

View File

@ -152,9 +152,120 @@ extern ostream & operator<< (ostream & ost, const DenseMatrix & m);
template <int WIDTH> template <int WIDTH, typename T = double>
class MatrixFixWidth class MatrixFixWidth
{ {
protected:
int height;
T * __restrict data;
bool ownmem;
public:
///
MatrixFixWidth ()
{ height = 0; data = 0; ownmem = false; }
///
MatrixFixWidth (int h)
{ height = h; data = new T[WIDTH*height]; ownmem = true; }
///
MatrixFixWidth (int h, T * adata)
{ height = h; data = adata; ownmem = false; }
///
MatrixFixWidth (const MatrixFixWidth & m2)
: height(m2.height), data(m2.data), ownmem(false)
{ ; }
///
~MatrixFixWidth ()
{ if (ownmem) delete [] data; }
void SetSize (int h)
{
if (h != height)
{
if (ownmem) delete data;
height = h;
data = new T[WIDTH*height];
ownmem = true;
}
}
///
int Height() const { return height; }
///
int Width() const { return WIDTH; }
MatrixFixWidth & operator= (const MatrixFixWidth & m2)
{
for (int i = 0; i < height*WIDTH; i++)
data[i] = m2.data[i];
}
///
MatrixFixWidth & operator= (T v)
{
for (int i = 0; i < height*WIDTH; i++)
data[i] = v;
return *this;
}
/*
///
void Mult (const FlatVector & v, FlatVector & prod) const
{
T sum;
const T * mp, * sp;
T * dp;
mp = data;
dp = &prod[0];
for (int i = 0; i < height; i++)
{
sum = 0;
sp = &v[0];
for (int j = 0; j < WIDTH; j++)
{
sum += *mp * *sp;
mp++;
sp++;
}
*dp = sum;
dp++;
}
}
*/
T & operator() (int i, int j)
{ return data[i*WIDTH+j]; }
const T & operator() (int i, int j) const
{ return data[i*WIDTH+j]; }
MatrixFixWidth & operator*= (T v)
{
if (data)
for (int i = 0; i < height*WIDTH; i++)
data[i] *= v;
return *this;
}
const T & Get(int i, int j) const { return data[(i-1)*WIDTH+j-1]; }
///
const T & Get(int i) const { return data[i-1]; }
///
void Set(int i, int j, T v) { data[(i-1)*WIDTH+j-1] = v; }
///
T & Elem(int i, int j) { return data[(i-1)*WIDTH+j-1]; }
///
const T & ConstElem(int i, int j) const { return data[(i-1)*WIDTH+j-1]; }
};
template <int WIDTH>
class MatrixFixWidth<WIDTH,double>
{
protected: protected:
int height; int height;
double * data; double * data;
@ -261,6 +372,9 @@ public:
}; };
template <int WIDTH> template <int WIDTH>
extern ostream & operator<< (ostream & ost, const MatrixFixWidth<WIDTH> & m) extern ostream & operator<< (ostream & ost, const MatrixFixWidth<WIDTH> & m)
{ {

View File

@ -8,6 +8,50 @@
/* *************************************************************************/ /* *************************************************************************/
template <typename T>
class TFlatVector
{
protected:
int s;
T * data;
public:
TFlatVector () { ; }
TFlatVector (int as, T * adata)
{ s = as; data = adata; }
int Size () const
{ return s; }
TFlatVector & operator= (const TFlatVector & v)
{ memcpy (data, v.data, s*sizeof(T)); return *this; }
TFlatVector & operator= (T scal)
{
for (int i = 0; i < s; i++) data[i] = scal;
return *this;
}
T & operator[] (int i) { return data[i]; }
const T & operator[] (int i) const { return data[i]; }
T & operator() (int i) { return data[i]; }
const T & operator() (int i) const { return data[i]; }
// double & Elem (int i) { return data[i-1]; }
// const double & Get (int i) const { return data[i-1]; }
// void Set (int i, double val) { data[i-1] = val; }
TFlatVector & operator*= (T scal)
{
for (int i = 0; i < s; i++) data[i] *= scal;
return *this;
}
};
class FlatVector class FlatVector
{ {
protected: protected:
@ -75,11 +119,13 @@ public:
return sqrt (sum); return sqrt (sum);
} }
operator TFlatVector<double> () const { return TFlatVector<double> (s, data); }
friend double operator* (const FlatVector & v1, const FlatVector & v2); friend double operator* (const FlatVector & v1, const FlatVector & v2);
}; };
class Vector : public FlatVector class Vector : public FlatVector
{ {
bool ownmem; bool ownmem;
@ -113,6 +159,7 @@ public:
} }
} }
operator TFlatVector<double> () const { return TFlatVector<double> (s, data); }
}; };
template <int S> template <int S>

File diff suppressed because it is too large Load Diff

View File

@ -126,25 +126,25 @@ public:
double * x, size_t sx, double * x, size_t sx,
double * dxdxi, size_t sdxdxi); double * dxdxi, size_t sdxdxi);
void CalcMultiPointSurfaceTransformation (Array< Point<2> > * xi, SurfaceElementIndex elnr, void CalcMultiPointSurfaceTransformation (Array< Point<2> > * xi, SurfaceElementIndex elnr,
Array< Point<3> > * x, Array< Point<3> > * x,
Array< Mat<3,2> > * dxdxi); Array< Mat<3,2> > * dxdxi);
template <int DIM_SPACE> template <int DIM_SPACE, typename T>
void CalcMultiPointSurfaceTransformation (SurfaceElementIndex elnr, int n, void CalcMultiPointSurfaceTransformation (SurfaceElementIndex elnr, int n,
const double * xi, size_t sxi, const T * xi, size_t sxi,
double * x, size_t sx, T * x, size_t sx,
double * dxdxi, size_t sdxdxi); T * dxdxi, size_t sdxdxi);
void CalcMultiPointElementTransformation (Array< Point<3> > * xi, ElementIndex elnr, void CalcMultiPointElementTransformation (Array< Point<3> > * xi, ElementIndex elnr,
Array< Point<3> > * x, Array< Point<3> > * x,
Array< Mat<3,3> > * dxdxi); Array< Mat<3,3> > * dxdxi);
template <typename T>
void CalcMultiPointElementTransformation (ElementIndex elnr, int n, void CalcMultiPointElementTransformation (ElementIndex elnr, int n,
const double * xi, size_t sxi, const T * xi, size_t sxi,
double * x, size_t sx, T * x, size_t sx,
double * dxdxi, size_t sdxdxi); T * dxdxi, size_t sdxdxi);
@ -196,11 +196,14 @@ private:
Vec<3> hcoefs[10]; // enough for second order tets Vec<3> hcoefs[10]; // enough for second order tets
}; };
template <typename T>
void CalcElementShapes (ElementInfo & info, const Point<3> & xi, Vector & shapes) const; void CalcElementShapes (ElementInfo & info, Point<3,T> xi, TFlatVector<T> shapes) const;
void GetCoefficients (ElementInfo & info, Vec<3> * coefs) const; void GetCoefficients (ElementInfo & info, Vec<3> * coefs) const;
void CalcElementDShapes (ElementInfo & info, const Point<3> & xi, MatrixFixWidth<3> & dshapes) const; template <typename T>
void CalcElementDShapes (ElementInfo & info, const Point<3,T> xi, MatrixFixWidth<3,T> dshapes) const;
template <typename T>
bool EvaluateMapping (ElementInfo & info, const Point<3,T> xi, Point<3,T> & x, Mat<3,3,T> & jac) const;
class SurfaceElementInfo class SurfaceElementInfo
{ {
@ -213,10 +216,15 @@ private:
int facenr; int facenr;
}; };
void CalcElementShapes (SurfaceElementInfo & elinfo, const Point<2> & xi, Vector & shapes) const; template <typename T>
void CalcElementShapes (SurfaceElementInfo & elinfo, const Point<2,T> xi, TFlatVector<T> shapes) const;
template <int DIM_SPACE> template <int DIM_SPACE>
void GetCoefficients (SurfaceElementInfo & elinfo, Array<Vec<DIM_SPACE> > & coefs) const; void GetCoefficients (SurfaceElementInfo & elinfo, Array<Vec<DIM_SPACE> > & coefs) const;
void CalcElementDShapes (SurfaceElementInfo & elinfo, const Point<2> & xi, MatrixFixWidth<2> & dshapes) const; template <typename T>
void CalcElementDShapes (SurfaceElementInfo & elinfo, const Point<2,T> xi, MatrixFixWidth<2,T> dshapes) const;
template <int DIM_SPACE, typename T>
bool EvaluateMapping (SurfaceElementInfo & info, const Point<2,T> xi, Point<DIM_SPACE,T> & x, Mat<DIM_SPACE,2,T> & jac) const;
}; };

View File

@ -541,6 +541,30 @@ namespace netgen
} }
} }
template <typename T>
void Element2d :: GetShapeNew (const Point<2,T> & p, TFlatVector<T> shape) const
{
switch (typ)
{
case TRIG:
{
shape(0) = p(0);
shape(1) = p(1);
shape(2) = 1-p(0)-p(1);
break;
}
case QUAD:
{
shape(0) = (1-p(0))*(1-p(1));
shape(1) = p(0) *(1-p(1));
shape(2) = p(0) * p(1) ;
shape(3) = (1-p(0))* p(1) ;
break;
}
}
}
@ -587,15 +611,15 @@ namespace netgen
} }
template <typename T>
void Element2d :: void Element2d ::
GetDShapeNew (const Point<2> & p, MatrixFixWidth<2> & dshape) const GetDShapeNew (const Point<2,T> & p, MatrixFixWidth<2,T> & dshape) const
{ {
switch (typ) switch (typ)
{ {
case TRIG: case TRIG:
{ {
dshape = 0; dshape = T(0.0);
dshape(0,0) = 1; dshape(0,0) = 1;
dshape(1,1) = 1; dshape(1,1) = 1;
dshape(2,0) = -1; dshape(2,0) = -1;
@ -1850,8 +1874,8 @@ namespace netgen
} }
template <typename T>
void Element :: GetShapeNew (const Point<3> & p, FlatVector & shape) const void Element :: GetShapeNew (const Point<3,T> & p, TFlatVector<T> shape) const
{ {
/* /*
if (shape.Size() < GetNP()) if (shape.Size() < GetNP())
@ -1874,10 +1898,10 @@ namespace netgen
case TET10: case TET10:
{ {
double lam1 = p(0); T lam1 = p(0);
double lam2 = p(1); T lam2 = p(1);
double lam3 = p(2); T lam3 = p(2);
double lam4 = 1-p(0)-p(1)-p(2); T lam4 = 1-p(0)-p(1)-p(2);
shape(0) = 2 * lam1 * (lam1-0.5); shape(0) = 2 * lam1 * (lam1-0.5);
shape(1) = 2 * lam2 * (lam2-0.5); shape(1) = 2 * lam2 * (lam2-0.5);
@ -1897,11 +1921,12 @@ namespace netgen
case PYRAMID: case PYRAMID:
{ {
double noz = 1-p(2); T noz = 1-p(2);
if (noz == 0.0) noz = 1e-10; // if (noz == 0.0) noz = 1e-10;
noz += T(1e-12);
double xi = p(0) / noz; T xi = p(0) / noz;
double eta = p(1) / noz; T eta = p(1) / noz;
shape(0) = (1-xi)*(1-eta) * (noz); shape(0) = (1-xi)*(1-eta) * (noz);
shape(1) = ( xi)*(1-eta) * (noz); shape(1) = ( xi)*(1-eta) * (noz);
shape(2) = ( xi)*( eta) * (noz); shape(2) = ( xi)*( eta) * (noz);
@ -1965,15 +1990,15 @@ namespace netgen
} }
} }
template <typename T>
void Element :: void Element ::
GetDShapeNew (const Point<3> & p, MatrixFixWidth<3> & dshape) const GetDShapeNew (const Point<3,T> & p, MatrixFixWidth<3,T> & dshape) const
{ {
switch (typ) switch (typ)
{ {
case TET: case TET:
{ {
dshape = 0; dshape = T(0.0);
dshape(0,0) = 1; dshape(0,0) = 1;
dshape(1,1) = 1; dshape(1,1) = 1;
dshape(2,2) = 1; dshape(2,2) = 1;
@ -1984,7 +2009,7 @@ namespace netgen
} }
case PRISM: case PRISM:
{ {
dshape = 0; dshape = T(0.0);
dshape(0,0) = 1-p(2); dshape(0,0) = 1-p(2);
dshape(0,2) = -p(0); dshape(0,2) = -p(0);
dshape(1,1) = 1-p(2); dshape(1,1) = 1-p(2);
@ -2007,23 +2032,40 @@ namespace netgen
{ {
int np = GetNP(); int np = GetNP();
double eps = 1e-6; double eps = 1e-6;
Vector shaper(np), shapel(np); ArrayMem<T,100> mem(2*np);
TFlatVector<T> shaper(np, &mem[0]);
TFlatVector<T> shapel(np, &mem[np]);
// Vector shaper(np), shapel(np);
for (int i = 1; i <= 3; i++) for (int i = 0; i < 3; i++)
{ {
Point3d pr(p), pl(p); Point<3,T> pr(p), pl(p);
pr.X(i) += eps; pr(i) += eps;
pl.X(i) -= eps; pl(i) -= eps;
GetShapeNew (pr, shaper); GetShapeNew (pr, shaper);
GetShapeNew (pl, shapel); GetShapeNew (pl, shapel);
for (int j = 0; j < np; j++) for (int j = 0; j < np; j++)
dshape(j, i-1) = (shaper(j) - shapel(j)) / (2 * eps); dshape(j, i) = (shaper(j) - shapel(j)) / (2 * eps);
} }
} }
} }
} }
template void Element2d :: GetShapeNew (const Point<2,double> & p, TFlatVector<double> shape) const;
template void Element2d :: GetShapeNew (const Point<2,SIMD<double>> & p, TFlatVector<SIMD<double>> shape) const;
template void Element2d::GetDShapeNew<double> (const Point<2> &, MatrixFixWidth<2> &) const;
template void Element2d::GetDShapeNew<SIMD<double>> (const Point<2,SIMD<double>> &, MatrixFixWidth<2,SIMD<double>> &) const;
template void Element :: GetShapeNew (const Point<3,double> & p, TFlatVector<double> shape) const;
template void Element :: GetShapeNew (const Point<3,SIMD<double>> & p, TFlatVector<SIMD<double>> shape) const;
template void Element::GetDShapeNew<double> (const Point<3> &, MatrixFixWidth<3> &) const;
template void Element::GetDShapeNew<SIMD<double>> (const Point<3,SIMD<double>> &, MatrixFixWidth<3,SIMD<double>> &) const;
void Element :: void Element ::
GetPointMatrix (const T_POINTS & points, GetPointMatrix (const T_POINTS & points,
DenseMatrix & pmat) const DenseMatrix & pmat) const

View File

@ -125,7 +125,6 @@ namespace netgen
PointIndex operator-- (int) { PointIndex hi(*this); i--; return hi; } PointIndex operator-- (int) { PointIndex hi(*this); i--; return hi; }
PointIndex operator++ () { i++; return *this; } PointIndex operator++ () { i++; return *this; }
PointIndex operator-- () { i--; return *this; } PointIndex operator-- () { i--; return *this; }
#ifdef BASE0 #ifdef BASE0
enum { BASE = 0 }; enum { BASE = 0 };
#else #else
@ -448,9 +447,13 @@ namespace netgen
void GetShape (const Point2d & p, class Vector & shape) const; void GetShape (const Point2d & p, class Vector & shape) const;
void GetShapeNew (const Point<2> & p, class FlatVector & shape) const; void GetShapeNew (const Point<2> & p, class FlatVector & shape) const;
template <typename T>
void GetShapeNew (const Point<2,T> & p, TFlatVector<T> shape) const;
/// matrix 2 * np /// matrix 2 * np
void GetDShape (const Point2d & p, class DenseMatrix & dshape) const; void GetDShape (const Point2d & p, class DenseMatrix & dshape) const;
void GetDShapeNew (const Point<2> & p, class MatrixFixWidth<2> & dshape) const; template <typename T>
void GetDShapeNew (const Point<2,T> & p, class MatrixFixWidth<2,T> & dshape) const;
/// matrix 2 * np /// matrix 2 * np
void GetPointMatrix (const Array<Point2d> & points, void GetPointMatrix (const Array<Point2d> & points,
class DenseMatrix & pmat) const; class DenseMatrix & pmat) const;
@ -618,7 +621,7 @@ namespace netgen
return 8; return 8;
default: // not a 3D element default: // not a 3D element
#ifdef DEBUG #ifdef DEBUG
PrintSysError ("Element3d::GetNV not implemented for typ ", typ) PrintSysError ("Element3d::GetNV not implemented for typ ", typ);
#endif #endif
return -1; return -1;
} }
@ -717,10 +720,13 @@ namespace netgen
class DenseMatrix & trans) const; class DenseMatrix & trans) const;
void GetShape (const Point<3> & p, class Vector & shape) const; void GetShape (const Point<3> & p, class Vector & shape) const;
void GetShapeNew (const Point<3> & p, class FlatVector & shape) const; // void GetShapeNew (const Point<3> & p, class FlatVector & shape) const;
template <typename T>
void GetShapeNew (const Point<3,T> & p, TFlatVector<T> shape) const;
/// matrix 2 * np /// matrix 2 * np
void GetDShape (const Point<3> & p, class DenseMatrix & dshape) const; void GetDShape (const Point<3> & p, class DenseMatrix & dshape) const;
void GetDShapeNew (const Point<3> & p, class MatrixFixWidth<3> & dshape) const; template <typename T>
void GetDShapeNew (const Point<3,T> & p, class MatrixFixWidth<3,T> & dshape) const;
/// matrix 3 * np /// matrix 3 * np
void GetPointMatrix (const T_POINTS & points, void GetPointMatrix (const T_POINTS & points,
class DenseMatrix & pmat) const; class DenseMatrix & pmat) const;

View File

@ -8,6 +8,7 @@
#include "meshing.hpp" #include "meshing.hpp"
#include <csg.hpp> #include <csg.hpp>
#include <geometry2d.hpp> #include <geometry2d.hpp>
#include <../interface/writeuser.hpp>
using namespace netgen; using namespace netgen;
@ -105,13 +106,18 @@ DLL_HEADER void ExportNetgenMeshing()
.def("__str__", &ToString<MeshPoint>) .def("__str__", &ToString<MeshPoint>)
.def("__repr__", &ToString<MeshPoint>) .def("__repr__", &ToString<MeshPoint>)
.add_property("p", FunctionPointer([](const MeshPoint & self) .add_property("p", FunctionPointer([](const MeshPoint & self)
{ {
bp::list l; bp::list l;
l.append ( self[0] ); l.append ( self[0] );
l.append ( self[1] ); l.append ( self[1] );
l.append ( self[2] ); l.append ( self[2] );
return bp::tuple(l); return bp::tuple(l);
})) }))
.def("__getitem__", FunctionPointer([](const MeshPoint & self, int index) {
if(index<0 || index>2)
bp::exec("raise IndexError()\n");
return self[index];
}))
; ;
bp::class_<Element>("Element3D") bp::class_<Element>("Element3D")
@ -142,6 +148,7 @@ DLL_HEADER void ExportNetgenMeshing()
tmp->SetIndex(index); tmp->SetIndex(index);
return tmp; return tmp;
} }
throw NgException ("cannot create element");
}), }),
bp::default_call_policies(), // need it to use arguments bp::default_call_policies(), // need it to use arguments
(bp::arg("index")=1,bp::arg("vertices"))), (bp::arg("index")=1,bp::arg("vertices"))),
@ -305,8 +312,7 @@ DLL_HEADER void ExportNetgenMeshing()
ExportArray<FaceDescriptor>(); ExportArray<FaceDescriptor>();
; ;
#if (BOOST_VERSION >= 106000) && (BOOST_VERSION < 106100)
#if BOOST_VERSION >= 106000
bp::register_ptr_to_python<shared_ptr<Mesh>>(); bp::register_ptr_to_python<shared_ptr<Mesh>>();
#endif #endif
bp::class_<Mesh,shared_ptr<Mesh>,boost::noncopyable>("Mesh", bp::no_init) bp::class_<Mesh,shared_ptr<Mesh>,boost::noncopyable>("Mesh", bp::no_init)
@ -365,6 +371,21 @@ DLL_HEADER void ExportNetgenMeshing()
})) }))
// static_cast<void(Mesh::*)(const string & name)>(&Mesh::Load)) // static_cast<void(Mesh::*)(const string & name)>(&Mesh::Load))
.def("Save", static_cast<void(Mesh::*)(const string & name)const>(&Mesh::Save)) .def("Save", static_cast<void(Mesh::*)(const string & name)const>(&Mesh::Save))
.def("Export", FunctionPointer
([] (Mesh & self, string filename, string format)
{
if (WriteUserFormat (format, self, *self.GetGeometry(), filename))
{
string err = string ("nothing known about format")+format;
Array<const char*> names, extensions;
RegisterUserFormats (names, extensions);
err += "\navailable formats are:\n";
for (auto name : names)
err += string("'") + name + "'\n";
throw NgException (err);
}
}),
(bp::arg("self"), bp::arg("filename"), bp::arg("format")))
.add_property("dim", &Mesh::GetDimension, &Mesh::SetDimension) .add_property("dim", &Mesh::GetDimension, &Mesh::SetDimension)

View File

@ -1846,7 +1846,7 @@ namespace netgen
for (int i = 0; i < cnt_valid; i++) for (int i = 0; i < cnt_valid; i++)
{ {
el.GetShapeNew (locgrid[i], shape); el.GetShapeNew<double> (locgrid[i], shape);
Point<3> pglob; Point<3> pglob;
for (int j = 0; j < 3; j++) for (int j = 0; j < 3; j++)
{ {
@ -3913,7 +3913,7 @@ namespace netgen
for (int i = 0; i < cnt_valid; i++) for (int i = 0; i < cnt_valid; i++)
{ {
el.GetShapeNew (locgrid[i], shape); el.GetShapeNew<double> (locgrid[i], shape);
Point<3> pglob; Point<3> pglob;
for (int j = 0; j < 3; j++) for (int j = 0; j < 3; j++)
{ {

View File

@ -25,3 +25,12 @@ BOOST_PYTHON_MODULE(libngpy)
ExportGeom2d(); ExportGeom2d();
} }
// Force linking libnglib to libnetgenpy
namespace netgen
{
void MyBeep (int i);
void MyDummyToForceLinkingNGLib()
{
MyBeep(0);
}
}

View File

@ -29,11 +29,10 @@ namespace netgen
#endif #endif
#include "../libsrc/interface/writeuser.hpp"
namespace netgen namespace netgen
{ {
#include "../libsrc/interface/writeuser.hpp"
//extern string ngdir;
Flags parameters; Flags parameters;
} }

View File

@ -36,12 +36,12 @@ extern bool nodisplay;
#include <nginterface.h> #include <nginterface.h>
#include "../libsrc/interface/writeuser.hpp"
namespace netgen namespace netgen
{ {
DLL_HEADER extern MeshingParameters mparam; DLL_HEADER extern MeshingParameters mparam;
DLL_HEADER extern void ImportSolution2(const char * filename); DLL_HEADER extern void ImportSolution2(const char * filename);
#include "../libsrc/interface/writeuser.hpp"
#include "demoview.hpp" #include "demoview.hpp"
} }

View File

@ -1277,7 +1277,7 @@ proc visual_dialog { } {
foreach i { none scal vec } { foreach i { none scal vec } {
set textval $clipsollabs($i) set textval $clipsollabs($i)
$f.m add command -label "$textval" -command \ $f.m add command -label "$textval" -command \
"$f.b configure -text \"$textval\" ; set visoptions.clipsolution $i ; " "$f.b configure -text \"$textval\" ; set visoptions.clipsolution $i ; Ng_Vis_Set parameters ; redraw ; puts \"call redraw\" "
} }
pack $f.b $f.l -side right pack $f.b $f.l -side right

View File

@ -29,14 +29,13 @@
#include <meshing.hpp> #include <meshing.hpp>
#include "../interface/writeuser.hpp"
void (*NGS_ParallelRun) (const string & message) = NULL; void (*NGS_ParallelRun) (const string & message) = NULL;
namespace netgen namespace netgen
{ {
#include "../interface/writeuser.hpp"
extern string ngdir; extern string ngdir;
#ifdef OPENGL #ifdef OPENGL

View File

@ -1228,7 +1228,6 @@ namespace netgen
//void Render() { ; } //void Render() { ; }
} // End of namespace netgen } // End of namespace netgen
@ -1247,3 +1246,10 @@ void Ng_SetSolutionData (Ng_SolutionData * soldata)
void Ng_InitSolutionData (Ng_SolutionData * soldata) { ; } void Ng_InitSolutionData (Ng_SolutionData * soldata) { ; }
*/ */
// Force linking libinterface to libnglib
#include <../interface/writeuser.hpp>
void MyDummyToForceLinkingLibInterface(Mesh &mesh, NetgenGeometry &geom)
{
netgen::WriteUserFormat("", mesh, geom, "");
}

6
tests/build.sh Executable file
View File

@ -0,0 +1,6 @@
cd
mkdir -p build/netgen
cd build/netgen
cmake ../../src/netgen -DUSE_CCACHE=ON
make -j12
make install

4
tests/docker_15.10 Normal file
View File

@ -0,0 +1,4 @@
FROM ubuntu:15.10
MAINTAINER Matthias Hochsteger <matthias.hochsteger@tuwien.ac.at>
RUN apt-get update && apt-get -y install python3 libpython3-dev libxmu-dev libboost-python-dev tk-dev tcl-dev cmake git g++ libglu1-mesa-dev ccache
ADD . /root/src/netgen

4
tests/docker_16.04 Normal file
View File

@ -0,0 +1,4 @@
FROM ubuntu:16.04
MAINTAINER Matthias Hochsteger <matthias.hochsteger@tuwien.ac.at>
RUN apt-get update && apt-get -y install python3 libpython3-dev libxmu-dev libboost-python-dev tk-dev tcl-dev cmake git g++ libglu1-mesa-dev ccache
ADD . /root/src/netgen