-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #388 from geodynamics/HyperlinksInDocs
Updated User Guide
- Loading branch information
Showing
10 changed files
with
2,267 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -89,3 +89,4 @@ dimensional.dat | |
Boussinesq.dat | ||
custom_ref_viscous.dat | ||
cref_from_MESA.dat | ||
.vscode/settings.json |
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,175 @@ | ||
Rayleigh comes bundled with an in-situ diagnostics package that allows | ||
the user to sample a simulation in a variety of ways, and at | ||
user-specified intervals throughout a run. This package is comprised of | ||
roughly 17,000 lines of code (about half of the Rayleigh code base), and | ||
it is complex enough that we describe it in two other documents. We | ||
refer the user to : | ||
|
||
#. The diagnostics plotting manual, provided in two formats: | ||
|
||
- Rayleigh/post_processing/Diagnostic_Plotting.ipynb (Jupyter Python | ||
notebook format; recommended for interactive use) | ||
|
||
- Rayleigh/post_processing/Diagnostics_Plotting.html (recommended for optimal | ||
viewing; generated from the .ipynb file) `[html] <../../../post_processing/Diagnostic_Plotting.ipynb>`_ | ||
|
||
|
||
#. :ref:`DValues2` – This companion documentation | ||
provides the output menu system referred to in the main diagnostics | ||
documentation. A number of stand-alone Python plotting examples may also be found in | ||
the Rayleigh/post_processing/ directory. | ||
|
||
The Lookup Table (LUT) | ||
---------------------- | ||
|
||
Rayleigh has on the order of 1,000 possible diagnostic quantities available to the | ||
user. As discussed in the examples above, the user specifies which diagnostic outputs | ||
to compute by providing the appropriate quantity codes in the input file. Internally, | ||
Rayleigh uses the quantity codes similarly to array indices. The purpose of the | ||
lookup table is to map the quantity code to the correct position in the output data | ||
array, you should never assume the quantities will be output in any particular order. | ||
The user may have only requested two quantity codes, for example, 1 and 401. | ||
The output data array will be of size 2 along the axis corresponding to the quantities. | ||
The lookup table could map 401 to the first entry and 1 to the second entry. | ||
|
||
The standard way to interact with the lookup table is to know the quantity code and | ||
explicitly use it. Here we describe an alternative method. Each quantity code entry | ||
(:ref:`quantityCodes`) has an equation, a code, and a name. There are some python | ||
scripts in the post_processing directory that allow you to use the name, instead of | ||
the code, when interacting with the lookup table: | ||
|
||
+ lut.py | ||
+ generate_mapping.py | ||
+ lut_shortcuts.py | ||
|
||
The lut.py file is the main user-interface and contains various utility routines, | ||
including functions to convert between codes and names. The generate_mapping.py file | ||
is responsible for generating the mapping between codes and names. The lut_shortcuts.py | ||
allows users to define their own mapping, allowing a conversion from a user-defined name | ||
to the desired quantity code. The lut_shortcuts.py file does not exist in the source code, | ||
it must be generated by the user; an example shortcuts file can be found in the | ||
post_processing/lut_shortcuts.py.example file. The fastest way to start using shortcuts | ||
is to copy the example file: | ||
|
||
.. code-block:: bash | ||
cd /path/to/Rayleigh | ||
cd post_processing/ | ||
cp lut_shortcuts.py.example lut_shortcuts.py | ||
and then make edits to the new lut_shortcuts.py file. | ||
|
||
The mapping has already been generated and is stored in the lut_mapping.py file. For | ||
developers or anyone wanting to re-generate the mapping, use the generate_mapping.py file: | ||
|
||
.. code-block:: bash | ||
python generate_mapping.py /path/to/Rayleigh | ||
This will parse the Rayleigh directory tree and generate the standard mapping between | ||
quantity codes and their associated names stored in the new file lut_mapping.py. Only | ||
quantity codes that are defined within the Rayleigh source tree will be included. | ||
Rayleigh does not need to be compiled before generating the mapping. | ||
|
||
If a user has a custom directory where output diagnostics are defined, the above command | ||
will not capture the custom diagnostic codes. To include custom quantities, the user | ||
must generate the mapping themselvese with the generate_mapping.py file: | ||
|
||
.. code-block:: bash | ||
python generate_mapping.py /path/to/Rayleigh/ --custom-dir=/path/to/custom/ | ||
Note that the Rayleigh directories are identical between the two calls, the only addition | ||
is the custom-dir flag. This command will generate a new mapping stored in the file | ||
lut_mapping_custom.py and will include all of the standard output quantities as well as | ||
the custom diagnostics. | ||
|
||
Without using this mapping technique, plotting something like the kinetic energy could | ||
appear as: | ||
|
||
.. code-block:: python | ||
from rayleigh_diagnostics import G_Avgs, build_file_list | ||
files = build_file_list(0, 10000000, path='G_Avgs') | ||
g = G_Avgs(filename=files[0], path='') | ||
ke_code = g.lut[401] # must use quantity code in lookup table | ||
ke = g.data[:, ke_code] # extract KE as a function of time | ||
With the newly generated mapping, the above code could be rewritten as: | ||
|
||
.. code-block:: python | ||
from rayleigh_diagnostics import G_Avgs, build_file_list | ||
from lut import lookup # <-- import helper function from main interface | ||
files = build_file_list(0, 10000000, path='G_Avgs') | ||
g = G_Avgs(filename=files[0], path='') | ||
ke_code = g.lut[lookup('kinetic_energy')] # use quantity *name* in lookup table | ||
ke = g.data[:, ke_code] # extract KE as a function of time, same as before | ||
There is one drawback to using the quantity names: the naming scheme is somewhat | ||
random and they can be quite long strings. This is where the lut_shortcuts.py | ||
can be very useful. This allows users to define their own names to use in the mapping. | ||
These are defined in the lut_shortcuts.py file and always take the form: | ||
|
||
.. code-block:: python | ||
shortcuts['custom_name'] = 'rayleigh_name' | ||
where custom_name is defined by the user, and rayleigh_name is the quantity name that | ||
Rayleigh uses. The main dictionary must be named 'shortcuts'. With an entry like: | ||
|
||
.. code-block:: python | ||
shortcuts['ke'] = 'kinetic_energy' | ||
the above example for extracting the kinetic energy is even more simple: | ||
|
||
.. code-block:: python | ||
from rayleigh_diagnostics import G_Avgs, build_file_list | ||
from lut import lookup # <-- import helper function from main interface | ||
files = build_file_list(0, 10000000, path='G_Avgs') | ||
g = G_Avgs(filename=files[0], path='') | ||
ke_code = g.lut[lookup('ke')] # user defined *name* in lookup table | ||
ke = g.data[:, ke_code] # extract KE as a function of time, same as before | ||
.. _post_scripts: | ||
|
||
Plotting Examples | ||
----------------- | ||
|
||
.. note:: | ||
|
||
Please note this notebook has not been updated since the conversion to online documentation (July 2019). | ||
The Rayleigh/doc directory has been reorganized. A pdf version of the document | ||
can be created by the user through the website. | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
|
||
../../../post_processing/Diagnostic_Plotting.ipynb | ||
|
||
.. _viz_3d: | ||
|
||
3-D Visualization with VAPOR | ||
---------------------------- | ||
|
||
Need text here. | ||
|
||
.. _commmon_diagnostics: | ||
|
||
Common Diagnostics | ||
------------------ | ||
|
||
|
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 @@ | ||
.. _contribute: | ||
|
||
Contributing to Rayleigh | ||
======================== | ||
|
||
Need text here. |
Oops, something went wrong.