Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Use the module name eddyproengine to discover versions available and to load the application.

Use eddyproengine_rp --help or eddyproengine_fcc --help to learn more.

To run on EddyPro Engine on the cluster, the folders tmp and output need to be created inside of the directory that contains the project folderfile.

Multicore

Currently, there does not appear to be any documentation that demonstrates that eddyproenginecan run in a parallel fashion over multiple cores/nodes. So, only request a single node and core when using.

Running Jobs:

GUI

The GUI version of EddyPro is not available because it is a fork of the main project and is of an older version.

To use the GUI version of EddyPro download and install it on your local desktop from: https://www.licor.com/env/support/EddyPro/software.html

And create the projects on Alcova or create the projects locally and upload to the cluster.

If using on the Windows version or if uploading a project created locally then project will need to be edited in a text editor to update the pathing.

...

Note

A user (working with the developers) has informed us that “only one instance of an executable can be run at a time, and they need their own separate environment and output directories to function as well.

If you are experiencing issues, please contact us and we can try and coordinate with other users running this application at the same time.

GUI

The GUI version of EddyPro Engine is available to download for Windows and Mac OS from here. The GUI version is not supported on the cluster.

Projects and data files can be created on the local desktop and then uploaded to the cluster or created from a local desktop on Alcova storage.

To use EddyPro project files on the cluster then some edits need to be made to the project file by editing it with a text editor. In order to get the project to work on your local desktop again the pathing in the project file will need to be reverted to what it was before.

Edits To Local Desktop Project Uploaded To Cluster

The following is an example of the pathing set in the project file after creating a project using the Windows GUI version of EddyPro on Alcovathat was created on a local desktop and uploaded to the cluster:

Code Block
file_name=C:/Users//alcova.arcc.uwyo.edu/project/<your_project><user>/<eddypro_project_folder>/<eddypro_project_name>.eddypro
out_path=C:/Users/<user>/<eddypro_project_folder>/results
data_path=C:/Users/<user>/<eddypro_project_folder>/<directory_of_data>

To use on the cluster this needs to be edited to:

Code Block
file_name=/project/<project_name>/<user_name>/<eddypro_project_example>/testfolder>/<eddypro_project_name>.eddypro
out_path=/project/<project_name>/<user_name>/<eddypro_project_folder>/results
data_path=/project/<project_name>/<user_name>/<eddypro_project_folder>/<directory_of_data>

Edits To Project Using Alcova

The following is an example of the pathing set in the project file that was created using the Windows GUI version of EddyPro and saved on Alcova:

Code Block
file_name=//alcova.arcc.uwyo.edu/project/<your_project>/<eddypro_project_example>/output
ex_file<eddypro_project_name>.eddypro
out_path=//alcova.arcc.uwyo.edu/project/<your_project>/<eddypro_project_example>/output/eddypro_test_fluxnet_2022-11-22T093242_exp.csv
data_path=//alcova.arcc.uwyo.edu/project/<your_project>/<eddypro_project_example>/<directory_of_data>

To use this project on Linux the cluster this needs to be edited to:

Code Block
file_name=/alcova/<your_project>/<eddypro_project_example>/test<eddypro_project_name>.eddypro
out_path=/alcova/<your_project>/<eddypro_project_example>/output
ex_file=/alcova/<your_project>/<eddypro_project_example>/output/eddypro_test_fluxnet_2022-11-22T093242_exp.csv
data_path=/alcova/<your_project>/<eddypro_project_example>/<directory_of_data>

...