-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ bcd59f1 🚀
- Loading branch information
0 parents
commit fb78408
Showing
90 changed files
with
5,507 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cheatsheets.docs.pyansys.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
PyAnsys cheat sheet documentation | ||
================================= | ||
|
||
PyAnsys provides cheat sheets for different libraries as quick reference guides. | ||
Clicking a link for a cheat sheet opens a PDF file. | ||
|
||
.. grid:: 3 1 1 3 | ||
|
||
.. grid-item:: | ||
|
||
.. card:: PyAEDT-API | ||
:img-top: https://cheatsheets.docs.pyansys.com/pyaedt_API_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pyaedt_API_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyEDB-API | ||
:img-top: https://cheatsheets.docs.pyansys.com/pyedb_API_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pyedb_API_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyDPF-Core | ||
:img-top: https://cheatsheets.docs.pyansys.com/pydpf-core_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pydpf-core_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyDPF-Post | ||
:img-top: https://cheatsheets.docs.pyansys.com/pydpf-post_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pydpf-post_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyDynamicReporting | ||
:img-top: https://cheatsheets.docs.pyansys.com/pydynamicreporting_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pydynamicreporting_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyEnSight | ||
:img-top: https://cheatsheets.docs.pyansys.com/pyensight_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pyensight_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyFluent | ||
:img-top: https://cheatsheets.docs.pyansys.com/pyfluent_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pyfluent_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyMAPDL | ||
:img-top: https://cheatsheets.docs.pyansys.com/pymapdl_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pymapdl_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyPrimeMesh | ||
:img-top: https://cheatsheets.docs.pyansys.com/pyprimemesh_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pyprimemesh_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyMechanical | ||
:img-top: https://cheatsheets.docs.pyansys.com/pymechanical_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pymechanical_cheat_sheet.pdf | ||
|
||
|
||
.. grid-item:: | ||
|
||
.. card:: PyMotorCAD | ||
:img-top: https://cheatsheets.docs.pyansys.com/pymotorcad_cheat_sheet.png | ||
:link: https://cheatsheets.docs.pyansys.com/pymotorcad_cheat_sheet.pdf |
1 change: 1 addition & 0 deletions
1
_sphinx_design_static/design-style.1e8bd061cd6da7fc9cf755528e8ffc24.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
var sd_labels_by_text = {}; | ||
|
||
function ready() { | ||
const li = document.getElementsByClassName("sd-tab-label"); | ||
for (const label of li) { | ||
syncId = label.getAttribute("data-sync-id"); | ||
if (syncId) { | ||
label.onclick = onLabelClick; | ||
if (!sd_labels_by_text[syncId]) { | ||
sd_labels_by_text[syncId] = []; | ||
} | ||
sd_labels_by_text[syncId].push(label); | ||
} | ||
} | ||
} | ||
|
||
function onLabelClick() { | ||
// Activate other inputs with the same sync id. | ||
syncId = this.getAttribute("data-sync-id"); | ||
for (label of sd_labels_by_text[syncId]) { | ||
if (label === this) continue; | ||
label.previousElementSibling.checked = true; | ||
} | ||
window.localStorage.setItem("sphinx-design-last-tab", syncId); | ||
} | ||
|
||
document.addEventListener("DOMContentLoaded", ready, false); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Oops! | ||
===== | ||
|
||
This is unexpected. The page you are requesting does not exist. | ||
|
||
If this page should exist, please contact `{{ theme_contact_mail }} <{{ theme_contact_mail }}>`_. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.