1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
Source: python-dmsh
Section: python
Priority: optional
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Drew Parsons <dparsons@debian.org>
Build-Depends: debhelper-compat (= 13),
dh-python,
python3-all,
python3-importlib-metadata,
python3-matplotlib,
python3-meshplex (>= 0.15.8), python3-meshplex (<< 0.16),
python3-numpy,
python3-scipy,
python3-setuptools,
python3-wheel
Standards-Version: 4.5.1
Homepage: https://github.com/nschloe/dmsh
Vcs-Browser: https://salsa.debian.org/science-team/python-dmsh
Vcs-Git: https://salsa.debian.org/science-team/python-dmsh.git
Package: python3-dmsh
Architecture: all
Depends: python3-meshplex (>= 0.15.8), ${misc:Depends}, ${python3:Depends}
Recommends: ${python3:Recommends}
Suggests: ${python3:Suggests}
Description: High-quality 2D mesh generator based on distmesh
dmsh: "The worst mesh generator you'll ever use."
.
Inspired by distmesh, dmsh is slow, requires a lot of memory, and
isn't terribly robust either.
.
On the plus side, it's got a usable interface, is pure Python (and
hence easily installable on any system), and if it works, it produces
pretty high-quality meshes.
.
Combined with optimesh, dmsh produces the highest-quality 2D meshes
in the west.
.
Example capabilities:
* Primitives
- circle, rectangle, polygon
- halfspace
* Combinations
- difference
- nonconstant edge length
- union
- intersection
* Transformations
- rotation, translation, scaling
* Local refinement
|