Pre simulation
118 |Define your simulation setup by specifying the geometry in a flexible, parametric format.
119 |├── .gitattributes ├── doc ├── styles │ ├── config │ │ └── vocabularies │ │ │ └── ANSYS │ │ │ ├── reject.txt │ │ │ └── accept.txt │ └── .gitignore ├── source │ ├── _static │ │ ├── pyansys_dark.png │ │ ├── thumbnails │ │ │ ├── intro.png │ │ │ ├── pyacp.png │ │ │ ├── pyedb.png │ │ │ ├── pystk.png │ │ │ ├── 5gwizard.png │ │ │ ├── pyaedt.png │ │ │ ├── pydyna.png │ │ │ ├── pyfluent.png │ │ │ ├── pygranta.png │ │ │ ├── pymapdl.png │ │ │ ├── pyrocky.png │ │ │ ├── pysimai.png │ │ │ ├── pyspeos.png │ │ │ ├── pytwin.png │ │ │ ├── pydpf-core.png │ │ │ ├── pydpf-post.png │ │ │ ├── pyensight.png │ │ │ ├── pymotorcad.png │ │ │ ├── pyscadeone.png │ │ │ ├── pysherlock.png │ │ │ ├── pyansys-math.png │ │ │ ├── pyansys-sound.png │ │ │ ├── pyconceptev.png │ │ │ ├── pylumerical.png │ │ │ ├── pymapdl_dark.png │ │ │ ├── pymechanical.png │ │ │ ├── pymodelcenter.png │ │ │ ├── pyoptislang.png │ │ │ ├── pyprimemesh.png │ │ │ ├── pyturbogrid.png │ │ │ ├── pyansys-common.png │ │ │ ├── pymapdl_reader.png │ │ │ ├── pyansys-geometry.png │ │ │ ├── pydpf-composites.png │ │ │ ├── pydynamicreporting.png │ │ │ ├── pysystem-coupling.png │ │ │ ├── ansys-python-manager.png │ │ │ ├── pyansys-cheat-sheets.png │ │ │ ├── pyfluent-parametric.png │ │ │ └── pyfluent-visualization.png │ │ ├── ansys_logo_transparent_white.png │ │ ├── icons │ │ │ ├── ansys-icon-light.svg │ │ │ ├── ansys-icon-dark.svg │ │ │ ├── materials.svg │ │ │ ├── electromagnetics.svg │ │ │ ├── sound.svg │ │ │ ├── ai-ml.svg │ │ │ ├── embedded-software.svg │ │ │ ├── platform.svg │ │ │ ├── structures.svg │ │ │ ├── fluids.svg │ │ │ ├── semiconductors.svg │ │ │ ├── connect.svg │ │ │ ├── design.svg │ │ │ ├── optics.svg │ │ │ └── dme.svg │ │ ├── landing-page │ │ │ ├── js │ │ │ │ ├── project_cards.js │ │ │ │ ├── testimonials.json │ │ │ │ ├── testimonials.js │ │ │ │ └── blogs.js │ │ │ └── css │ │ │ │ ├── testimonials.css │ │ │ │ ├── carousel.css │ │ │ │ └── style.css │ │ ├── css │ │ │ ├── blog_sidebar.css │ │ │ └── projects_sidebar.css │ │ └── js │ │ │ └── blog_sidebar.js │ ├── _templates │ │ ├── footer_left.html │ │ ├── footer_right.html │ │ ├── footer_center.html │ │ ├── blog_sidebar.html │ │ └── projects_sidebar.html │ ├── blog.rst │ ├── getting-started.rst │ ├── getting-started │ │ ├── about.rst │ │ ├── prerequisites.rst │ │ └── install.rst │ ├── links.rst │ ├── blog │ │ └── 2025-09-30-newsletter.rst │ ├── projects.rst │ └── index.rst ├── make.bat ├── .vale.ini └── Makefile ├── ignore_words.txt ├── .github ├── dependabot.yml └── workflows │ ├── update-gh-pages.yml │ └── ci-build.yml ├── LICENSE ├── .pre-commit-config.yaml ├── src └── pyansys │ └── __init__.py ├── .gitignore ├── tools ├── catsitemap.py └── links.py ├── pyproject.toml └── README.rst /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto !eol -------------------------------------------------------------------------------- /doc/styles/config/vocabularies/ANSYS/reject.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ignore_words.txt: -------------------------------------------------------------------------------- 1 | parm 2 | pres 3 | WAN 4 | filname 5 | ans 6 | tread 7 | wan 8 | -------------------------------------------------------------------------------- /doc/styles/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !**/ANSYS/accept.txt 3 | !**/ANSYS/reject.txt 4 | !.gitignore -------------------------------------------------------------------------------- /doc/source/_static/pyansys_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/pyansys_dark.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/intro.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyacp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyacp.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyedb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyedb.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pystk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pystk.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/5gwizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/5gwizard.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyaedt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyaedt.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pydyna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pydyna.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyfluent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyfluent.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pygranta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pygranta.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pymapdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pymapdl.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyrocky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyrocky.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pysimai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pysimai.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyspeos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyspeos.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pytwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pytwin.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pydpf-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pydpf-core.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pydpf-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pydpf-post.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyensight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyensight.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pymotorcad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pymotorcad.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyscadeone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyscadeone.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pysherlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pysherlock.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyansys-math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyansys-math.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyansys-sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyansys-sound.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyconceptev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyconceptev.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pylumerical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pylumerical.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pymapdl_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pymapdl_dark.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pymechanical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pymechanical.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pymodelcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pymodelcenter.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyoptislang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyoptislang.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyprimemesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyprimemesh.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyturbogrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyturbogrid.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyansys-common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyansys-common.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pymapdl_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pymapdl_reader.png -------------------------------------------------------------------------------- /doc/source/_static/ansys_logo_transparent_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/ansys_logo_transparent_white.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyansys-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyansys-geometry.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pydpf-composites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pydpf-composites.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pydynamicreporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pydynamicreporting.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pysystem-coupling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pysystem-coupling.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/ansys-python-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/ansys-python-manager.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyansys-cheat-sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyansys-cheat-sheets.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyfluent-parametric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyfluent-parametric.png -------------------------------------------------------------------------------- /doc/source/_static/thumbnails/pyfluent-visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansys/pyansys/HEAD/doc/source/_static/thumbnails/pyfluent-visualization.png -------------------------------------------------------------------------------- /doc/source/_static/icons/ansys-icon-light.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /doc/styles/config/vocabularies/ANSYS/accept.txt: -------------------------------------------------------------------------------- 1 | ANSYS 2 | Ansys 3 | ansys 4 | API 5 | postprocessing 6 | PyAnsys 7 | (?i)Python 8 | Pythonic 9 | PyAEDT 10 | DPF 11 | PyMAPDL 12 | PyMAPDL Reader 13 | PyDPF - Core 14 | PyDPF - Post 15 | PyDPF - Composites 16 | PyDPF 17 | PyFluent 18 | PyPIM 19 | metapackage 20 | PyTwin 21 | toolkits 22 | -------------------------------------------------------------------------------- /doc/source/_templates/footer_left.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "pip" 4 | directory: "/" 5 | insecure-external-code-execution: allow 6 | schedule: 7 | interval: "daily" 8 | groups: 9 | deps: 10 | patterns: 11 | - "*" 12 | 13 | - package-ecosystem: "github-actions" 14 | directory: "/" 15 | schedule: 16 | interval: "daily" 17 | groups: 18 | actions: 19 | patterns: 20 | - "*" 21 | -------------------------------------------------------------------------------- /doc/source/_static/icons/ansys-icon-dark.svg: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /doc/source/_static/landing-page/js/project_cards.js: -------------------------------------------------------------------------------- 1 | const swiper = new Swiper(".swiper", { 2 | slidesPerView: 4, 3 | slidesPerGroup: 4, 4 | spaceBetween: 20, 5 | loop: false, 6 | autoplay: { 7 | delay: 5000, 8 | disableOnInteraction: false, 9 | }, 10 | pagination: { 11 | el: ".swiper-pagination", 12 | clickable: true, 13 | }, 14 | breakpoints: { 15 | 320: { slidesPerView: 1, slidesPerGroup: 1 }, 16 | 768: { slidesPerView: 2, slidesPerGroup: 2 }, 17 | 1024: { slidesPerView: 4, slidesPerGroup: 4 }, 18 | }, 19 | }); 20 | -------------------------------------------------------------------------------- /doc/source/blog.rst: -------------------------------------------------------------------------------- 1 | .. _ref_blog: 2 | 3 | Blog 4 | #### 5 | 6 | Welcome to the blog of PyAnsys. This section contains articles, tutorials, and 7 | news related to the PyAnsys ecosystem. If you have any suggestions or would 8 | like to showcase your work, please contact `pyansys.core@ansys.com 9 |34 | {{ metadata['name'] }} 35 |
36 |37 | {% for family in families %} 38 | {{ family }} 39 | {% endfor %} 40 | {% for tag in metadata['tags'] %} 41 | {{ tag }} 42 | {% endfor %} 43 |
44 |{{ metadata['description'] }}
45 | {% if metadata.get('github_stars', 0) > 0 %} 46 | {% endif %} 47 | 48 | 49 |51 | ${tags 52 | .map( 53 | (tag) => 54 | `${tag}`, 55 | ) 56 | .join("")} 57 |
58 |${blog.title}
59 | 63 |${shortDescription}
64 || PyAnsys version | 77 |Min. Python version | 78 |Max. Python version | 79 |Download | 80 |
|---|---|---|---|
| {{ release.version }} | 86 |{{ release.python.lower }} | 87 |{{ release.python.upper }} | 88 |{{ release.link }} | 89 |
| PyAnsys project | 53 |Version | 54 |
|---|---|
| {{ project }} | 60 |{{ version }} | 61 |
| PyAnsys project | 100 |Version | 101 |
|---|---|
| {{ project }} | 107 |{{ version }} | 108 |
Define your simulation setup by specifying the geometry in a flexible, parametric format.
119 |Run high-fidelity simulations and gather comprehensive results that reflect the dynamics of your system.
128 |Extract, visualize, and interpret key data from your simulation to drive the next phase of your project.
137 |${post.title || key}
198 |${shortDescription}
199 |
200 | ${post.author || "PyAnsys Team"}
201 | ${post.date || "Unknown Date"}
202 |