meshwell


Namemeshwell JSON
Version 1.3.7 PyPI version JSON
download
home_pageNone
SummaryGMSH wrapper, with integrated photonics focus
upload_time2024-11-21 22:24:14
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Meshwell
<p align="center">
  <img src=https://raw.githubusercontent.com/simbilod/meshwell/main/meshwell.png
 width="300" height="300">
</p>

---

[![Docs](https://github.com/simbilod/meshwell/actions/workflows/pages.yml/badge.svg)](https://github.com/simbilod/meshwell/actions/workflows/pages.yml)
[![Tests](https://github.com/simbilod/meshwell/actions/workflows/test_code.yml/badge.svg)](https://github.com/simbilod/meshwell/actions/workflows/test_code.yml)
[![PiPy](https://img.shields.io/pypi/v/meshwell)](https://pypi.org/project/meshwell/)

**Project is under active development, stay tuned for improved features, documentation, and releases!**

Meshwell is a Python wrapper around [GMSH](https://gmsh.info/) that provides:

(1) a Prism class that simplifies, to the point of automating, the definition of solids from arbitrary (multi)polygons with "buffered" extrusions;

(2) a simple API where such Prisms and regular GMSH OCC objects are specified in an ordered dictionary of mesh priority, and whose keys are then used to label the mesh entities and their interfaces unambiguously;

For instance:

<ADD EXAMPLE>

See the documentation for more information and examples. If you encounter a big, you can make an issue so we can improve the software over time. Contributions are also welcome, see open issues for current bugs and requested features.

### Background

This code was originally developed to define meshes out of the GDSII descriptions of integrated photonic circuits. A particularity of such devices is rich 2.5D topology, featuring multiple layers of smooth curves in the plane and etching profiles vertically.  Maxwell's equations (hence the name) are solved on these geometries to study how light propagates. It is also of critical interest to simulate how this is affected under other physical effects that can be resolved through finite-element or finite-volume analysis.

### Related projects

* [gdsfactory](https://github.com/gdsfactory/gdsfactory): open-source plugin-rich layout software; meshwell is the backend to [gplugins](https://github.com/gdsfactory/gplugins)' gmsh module
* [femwell](https://github.com/HelgeGehring/femwell): open-source scikit-fem based finite-element simulations, with emphasis on photonics
* [DEVSIM](https://github.com/devsim/devsim): open-source finite-volume simulator, with emphasis on semiconductor TCAD

### Other notable GMSH Python interfaces:

* [gmsh](https://gitlab.onelab.info/gmsh/gmsh): the gmsh Python API itself has significantly improved over the years
* [pygmsh](https://github.com/meshpro/pygmsh): manipulate Python objects instead of gmsh entity tags
* [objectgmsh](https://github.com/nemocrys/objectgmsh): class wrappers around entities
* [gyptis](https://gyptis.gitlab.io/): uses basic gmsh for photonic geometries

### Acknowledgements

* Simon Bilodeau (Princeton): maintainer
* Helge Gehring (Google X): beta testing, use cases, bug fixes, improvements
* Joaquin Matres Abril (Google X): code improvements
* Niko Savola (Google): beta testing, use cases, bug fixes, improvements


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "meshwell",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python",
    "author": null,
    "author_email": "Simon Bilodeau <sb30@princeton.edu>",
    "download_url": "https://files.pythonhosted.org/packages/75/cf/9ba86cccb72cfabad6b91ff56a700375dfa5c70cc41c982b79e904ae282b/meshwell-1.3.7.tar.gz",
    "platform": null,
    "description": "# Meshwell\n<p align=\"center\">\n  <img src=https://raw.githubusercontent.com/simbilod/meshwell/main/meshwell.png\n width=\"300\" height=\"300\">\n</p>\n\n---\n\n[![Docs](https://github.com/simbilod/meshwell/actions/workflows/pages.yml/badge.svg)](https://github.com/simbilod/meshwell/actions/workflows/pages.yml)\n[![Tests](https://github.com/simbilod/meshwell/actions/workflows/test_code.yml/badge.svg)](https://github.com/simbilod/meshwell/actions/workflows/test_code.yml)\n[![PiPy](https://img.shields.io/pypi/v/meshwell)](https://pypi.org/project/meshwell/)\n\n**Project is under active development, stay tuned for improved features, documentation, and releases!**\n\nMeshwell is a Python wrapper around [GMSH](https://gmsh.info/) that provides:\n\n(1) a Prism class that simplifies, to the point of automating, the definition of solids from arbitrary (multi)polygons with \"buffered\" extrusions;\n\n(2) a simple API where such Prisms and regular GMSH OCC objects are specified in an ordered dictionary of mesh priority, and whose keys are then used to label the mesh entities and their interfaces unambiguously;\n\nFor instance:\n\n<ADD EXAMPLE>\n\nSee the documentation for more information and examples. If you encounter a big, you can make an issue so we can improve the software over time. Contributions are also welcome, see open issues for current bugs and requested features.\n\n### Background\n\nThis code was originally developed to define meshes out of the GDSII descriptions of integrated photonic circuits. A particularity of such devices is rich 2.5D topology, featuring multiple layers of smooth curves in the plane and etching profiles vertically.  Maxwell's equations (hence the name) are solved on these geometries to study how light propagates. It is also of critical interest to simulate how this is affected under other physical effects that can be resolved through finite-element or finite-volume analysis.\n\n### Related projects\n\n* [gdsfactory](https://github.com/gdsfactory/gdsfactory): open-source plugin-rich layout software; meshwell is the backend to [gplugins](https://github.com/gdsfactory/gplugins)' gmsh module\n* [femwell](https://github.com/HelgeGehring/femwell): open-source scikit-fem based finite-element simulations, with emphasis on photonics\n* [DEVSIM](https://github.com/devsim/devsim): open-source finite-volume simulator, with emphasis on semiconductor TCAD\n\n### Other notable GMSH Python interfaces:\n\n* [gmsh](https://gitlab.onelab.info/gmsh/gmsh): the gmsh Python API itself has significantly improved over the years\n* [pygmsh](https://github.com/meshpro/pygmsh): manipulate Python objects instead of gmsh entity tags\n* [objectgmsh](https://github.com/nemocrys/objectgmsh): class wrappers around entities\n* [gyptis](https://gyptis.gitlab.io/): uses basic gmsh for photonic geometries\n\n### Acknowledgements\n\n* Simon Bilodeau (Princeton): maintainer\n* Helge Gehring (Google X): beta testing, use cases, bug fixes, improvements\n* Joaquin Matres Abril (Google X): code improvements\n* Niko Savola (Google): beta testing, use cases, bug fixes, improvements\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "GMSH wrapper, with integrated photonics focus",
    "version": "1.3.7",
    "project_urls": null,
    "split_keywords": [
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "386ded2c9ddd5aabc36903800a9df5969b977921365f1e92e1ff017c1be2a016",
                "md5": "92bf6daa2c2d343b59bca53eb7f90868",
                "sha256": "5db328b27c751ea0c4bb3c7171bcea8f4365dafe47e9a379bb309a8f75e36903"
            },
            "downloads": -1,
            "filename": "meshwell-1.3.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "92bf6daa2c2d343b59bca53eb7f90868",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 35920,
            "upload_time": "2024-11-21T22:24:13",
            "upload_time_iso_8601": "2024-11-21T22:24:13.020298Z",
            "url": "https://files.pythonhosted.org/packages/38/6d/ed2c9ddd5aabc36903800a9df5969b977921365f1e92e1ff017c1be2a016/meshwell-1.3.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75cf9ba86cccb72cfabad6b91ff56a700375dfa5c70cc41c982b79e904ae282b",
                "md5": "b72a78189fb539ac0a235b639e63c40e",
                "sha256": "380a0415a067be1ffafb597df7d990612f86ecb67b34f5d7889c141ccfeaf797"
            },
            "downloads": -1,
            "filename": "meshwell-1.3.7.tar.gz",
            "has_sig": false,
            "md5_digest": "b72a78189fb539ac0a235b639e63c40e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 33309,
            "upload_time": "2024-11-21T22:24:14",
            "upload_time_iso_8601": "2024-11-21T22:24:14.595226Z",
            "url": "https://files.pythonhosted.org/packages/75/cf/9ba86cccb72cfabad6b91ff56a700375dfa5c70cc41c982b79e904ae282b/meshwell-1.3.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-21 22:24:14",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "meshwell"
}
        
Elapsed time: 0.41342s