- Mar 13, 2020
-
-
Andreas Dedner authored
fixed some bugs
-
- Sep 30, 2018
-
-
Andreas Dedner authored
-
- Sep 24, 2018
-
-
Andreas Dedner authored
-
- Feb 21, 2018
-
-
Andreas Dedner authored
-
- Jan 29, 2018
-
-
Martin Nolte authored
This allows them to be loaded without loading the corresponding Python mdoule, avoiding circular dependencies.
-
- Oct 26, 2017
-
-
Andreas Dedner authored
-
Andreas Dedner authored
-
- Oct 25, 2017
-
-
Andreas Dedner authored
to reduce runtime (checking for the module is quite expensive).
-
- Oct 23, 2017
-
-
Andreas Dedner authored
-
- Oct 20, 2017
-
-
Martin Nolte authored
-
Martin Nolte authored
-
- Oct 18, 2017
-
-
Andreas Dedner authored
-
Andreas Dedner authored
-
Andreas Dedner authored
-
Martin Nolte authored
-
Andreas Dedner authored
-
Andreas Dedner authored
-
Andreas Dedner authored
-
Martin Nolte authored
-
Andreas Dedner authored
x[:] now returns the underlying numpy buffer and x[1:3] the slice not that x is itself not a numpy array, so for transpose one needs x[:].transpose() to get the transposed view of the field vector. The same works for entity(x)[:] but also now localpoints = numpy.array([lx1,lx2,lx3,lx4],[ly1,ly2,ly3,ly4]] coords = entity(numpy.array(localpoints) coords[0] = numpy.array([gx1,gx2,gx3,gx4]) with (gx1,gy)=entity.geometry.position((lx1,ly1)) coords[:] = numpy.array([[gx1,gx2,gx3,gx4],[gy1,gy2,gy3,gy4]]) etc. Note that the global coordinates are computed when coords[] is called so only calling coords.local[] does not lead to overhead
-
- Oct 17, 2017
-
-
Andreas Dedner authored
-
Andreas Dedner authored
- The method 'domain' is at the moment removed from the entity.geometry (I might want to add it at a later point possibly on the entity) - quadrature/referenceelements are not exported anymore by the hierarchical grid module - new method for obtaining the reference element and quadrature rule for a given geometry type are added to dune.geometry
-
- Oct 06, 2017
-
-
Martin Nolte authored
-
- Jun 28, 2017
-
-
Martin Nolte authored
Building Python modules through Pybind11 is a recurring task in our Python bindings. To reduce maintainance in the build system, we introduce a CMake function "dune_add_pybind11_module", which is semantically inspired by the "dune_add_test" function.
-
- Sep 26, 2016
-
-
Martin Nolte authored
-