Welcome to pyRedLUM a suite of tools that allow to produce plots of the RedLUM code.
There is 2 ways of using pyRedLUM.
- command line interface (CLI) for fast and easy plots
- python scripts for more detailed plots (comparison between different cases)
Required packages are the same as for pyReDA.
You need to add the two following lines to your .bashrc file.
export PATH=$PATH:/path/to/pyRedA/mains
export PYTHONPATH=$PYTHONPATH:/path/to/pyReDa/functionsThe CLI version of pyRedLUM allows to generate fast and easy plots through the use of the redlum-plot.py script.
To do so, first go to the directory containing the result you want to plot (folder starting with "Reduced_coeff" ITHACAoutput) and then type:
redlum-plot.py [--name / -n, --verbose / -v]There are two optional arguments which are the following
- --name (or -n) allows to specify the name of the case, this will be used in the name of the plots generated. By default
- --verbose (or -v) it allows to allow a certain level of verbosity in the code. If something looks weird put it to
For questions about arguments type redlum-plot.py --help and it will display all the explanation of the different available arguments.
Plots are stored in a plots directory where you executed redlum-plot.py. Images are by default saved in png and in pdf format (in the directory)
You can find below one example of a plot produced by pyRedLUM with CLI for a run using 4 modes at
Use can also use the full power of pyRedLUM using you favorite IDE.
This suite of plotting tools rely on the pyRedLUM python class which contains all the utility who know where the data is stored
and where to find configuration files.
This is how you initialize a pyRedLUM object
from pyredlum import pyRedLUM
case = pyRedLUM(
res_folder=working_dir, # Path of the Reduced_coeff folder
save_dir=plotting_dir, # Where the plots are going to be stored
name = name, # (optional) Name use when saving plots g
verbose=verbose # (optional) Level of verbose when running the code
)This initialises case which is an instance of the pyRedLUM class.
case is then given as input to, for instance, the plot_all_modes function in plot_modes_bp.py. This function allows to plot all the modes of a given result folder.
- Unlike the CLI version of the code, one can easily write a script that loops over a set of directory results, allowing to generate lots of plots without too much effort.
- One can also do a comparison of different runs (see functions like compare_sota_modes in
plot_modes_bp.py)
plot_bias_bp.py and plot_modes_bp.py in the functions directory are 2 blueprints showing the capabilities of the pyRedLUM framework.
I recommend you to copy these files and make your own version of it. Blueprints may evolve, have new features.
If you modify them, it may cause conflicts when pulling new version of the code.
- creating a hierarchy of the
plotsfolder separating modes plots and bias plots.
