-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: doc getting started user guide email
- Loading branch information
1 parent
357d39f
commit 2c3c870
Showing
13 changed files
with
106 additions
and
4 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,10 @@ | ||
.. _ref_basic-usage:: | ||
|
||
=========== | ||
Basic Usage | ||
Check warning on line 4 in doc/source/examples/basic-usage.rst GitHub Actions / vale[vale] doc/source/examples/basic-usage.rst#L4
Raw output
|
||
=========== | ||
|
||
.. automodule:: examples.basic-usage | ||
:members: | ||
:show-inheritance: | ||
:undoc-members: |
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,13 @@ | ||
.. _examples: | ||
|
||
======== | ||
Examples | ||
======== | ||
End-to-end examples show how you can use PyUnits. If the PyUnits ``ansys-units`` package is installed on your machine, | ||
you can download these examples as Python files or Jupyter notebooks and run them locally. | ||
|
||
.. toctree:: | ||
:hidden: | ||
:maxdepth: 2 | ||
|
||
basic-usage |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.. installation: | ||
.. _installation: | ||
|
||
============ | ||
Installation | ||
|
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,5 @@ | ||
.. _ref_config: | ||
|
||
=========== | ||
Config YAML | ||
Check failure on line 4 in doc/source/user_guide/config.rst GitHub Actions / vale[vale] doc/source/user_guide/config.rst#L4
Raw output
|
||
=========== |
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,11 @@ | ||
.. _ref_dimensions: | ||
|
||
========== | ||
Dimensions | ||
========== | ||
|
||
.. automodule:: ansys.units.dimensions | ||
:members: | ||
:show-inheritance: | ||
:undoc-members: | ||
:exclude-members: __weakref__, __dict__, __init__, DimensionsError |
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,11 @@ | ||
.. _ref_map: | ||
|
||
============ | ||
Quantity Map | ||
Check warning on line 4 in doc/source/user_guide/map.rst GitHub Actions / vale[vale] doc/source/user_guide/map.rst#L4
Raw output
|
||
============ | ||
|
||
.. automodule:: ansys.units.map | ||
:members: | ||
:show-inheritance: | ||
:undoc-members: | ||
:exclude-members: __weakref__, __dict__, __init__, QuantityMapError |
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,11 @@ | ||
.. _ref_quantity: | ||
|
||
======== | ||
Quantity | ||
======== | ||
|
||
.. automodule:: ansys.units.quantity | ||
:members: | ||
:show-inheritance: | ||
:undoc-members: | ||
:exclude-members: __weakref__, __dict__, __init__, QuantityError |
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,11 @@ | ||
.. _ref_systems: | ||
|
||
============ | ||
Unit Systems | ||
Check warning on line 4 in doc/source/user_guide/systems.rst GitHub Actions / vale[vale] doc/source/user_guide/systems.rst#L4
Raw output
|
||
============ | ||
|
||
.. automodule:: ansys.units.systems | ||
:members: | ||
:show-inheritance: | ||
:undoc-members: | ||
:exclude-members: __weakref__, __dict__, __init__, UnitSystemError |
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,11 @@ | ||
.. _ref_tables: | ||
|
||
====== | ||
Tables | ||
====== | ||
|
||
.. automodule:: ansys.units.tables | ||
:members: | ||
:show-inheritance: | ||
:undoc-members: | ||
:exclude-members: __weakref__, __dict__, __init__ |
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,7 @@ | ||
PyUnits Examples | ||
================ | ||
PyUnits provides a pythonic interface for units, unit systems, and unit conversions. | ||
Its features enable seamless setup and usage of physical quantities. This includes | ||
creating quantities, accessing different quantity properties, performing arithmetic | ||
operations, performing unit conversions, creating unit systems, applying unit systems | ||
to quantities. |
This file was deleted.
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,13 @@ | ||
.. _ref_example_gallery: | ||
|
||
======== | ||
Examples | ||
======== | ||
End-to-end examples show how you can use PyUnits. If the PyFluent ``ansys-units`` package is installed on your machine, | ||
you can download these examples as Python files or Jupyter notebooks and run them locally. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:hidden: | ||
|
||
.. 00-fluent/README.rst |
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