Skip to content

Commit

Permalink
Deploying to gh-pages from @ bcd59f1 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Jul 10, 2024
0 parents commit fb78408
Show file tree
Hide file tree
Showing 90 changed files with 5,507 additions and 0 deletions.
1 change: 1 addition & 0 deletions .nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cheatsheets.docs.pyansys.com
83 changes: 83 additions & 0 deletions _sources/index.rst.txt
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

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions _sphinx_design_static/design-tabs.js
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);
6 changes: 6 additions & 0 deletions _static/404.rst
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 }}>`_.
Binary file added _static/ansys-favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/ansys_logo_black.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/ansys_logo_black_cropped.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/ansys_logo_white.pdf
Binary file not shown.
Binary file added _static/ansys_logo_white_cropped.pdf
Binary file not shown.
Loading

0 comments on commit fb78408

Please sign in to comment.