Key Features • Install/Configure • How-to-use • Credits • License • Publications
- Graphical User Interface
- Sample definition as a compound-profile
- Adaptive Layer Segmentation
- Internal database of form factors
- allows for selection of form factors in project file
- Magnetism capabilities
- Compatibility with ReMagX
- able to load in dataset from ReMagX '.all' file type
- Script functionality with built in functions
- Customizable cost function in data fitting
- chi-square, L1-norm, and L2-norm regularization
- create unique boundaries for select data scans with weights associated to them
- shape parameterization using total variation
- Data smoothing
- this is specifically used for the shape parameterization
- Progress workspace
Tested on 22.04
$ git clone https://github.com/lucaskorol21/GO-RXR.git
2.0. Ensure Python 3.10 is Installed (Recommended Version)
Before setting up the virtual environment, make sure Python 3.10 is installed on your system:
$ python3.10 --version
If Python 3.10 is installed, you should see an output like Python 3.10.x
. If not, follow the steps below to install it.
-
Install Python 3.10:
Run the following commands to install Python 3.10 on Ubuntu:
$ sudo apt update $ sudo apt install python3.10 python3.10-venv python3.10-dev
-
Verify the Installation:
$ python3.10 --version
This should confirm that Python 3.10 is installed correctly.
2.1. Set Up the Virtual Environment
-
Navigate to the
GO-RXR
Directory:$ cd GO-RXR
-
Create the virtual environment:
$ python3.10 -m venv venv-go-rxr
-
Activate the virtual environment:
(venv-go-rxr) $ source venv-go-rxr/bin/activate
2.2. Install Package Dependencies
Install the required Python packages using pip
:
(venv-go-rxr) $ pip install .
This command will handle the installation of all dependencies, including compiling any Cython extensions.
Go back to the root of the repository and run the GUI:
(venv-go-rxr) $ python GUI_GO.py
After running the GUI_GO.py
file, the start screen will be displayed:
For Windows users, we recommend using Windows Subsystem for Linux (WSL) to run GO-RXR. WSL allows you to run a full Linux distribution alongside your Windows installation without the need for a virtual machine or dual-boot setup. This method provides a more consistent and reliable environment, especially for projects like GO-RXR that are designed to work seamlessly on Linux.
This configuration was tested on Windows 11 Home and Windows 11 Education.
-
Install WSL and Ubuntu
- Open a PowerShell terminal as Administrator and run:
$ wsl --install
- Recommended: install Ubuntu 22.04 or 24.04 if available.
- Restart your computer after installation.
- Open the Ubuntu application (available in the Start Menu), and follow the prompts to create a UNIX username and password.
- Open a PowerShell terminal as Administrator and run:
-
Update and Upgrade Ubuntu
- Open the Ubuntu terminal and run:
$ sudo apt update && sudo apt full-upgrade -y
- Open the Ubuntu terminal and run:
-
Set Up Python Environment
-
Verify if Python 3.10 is installed:
$ python3 --version
Recommended: Python 3.10.12 if available.
-
If Python 3.10 is not installed, you can install it as follows
$ sudo apt install python3.10
-
-
Clone the Repository
-
Git should already be installed, but you can install it with:
$ sudo apt install git -y
-
Clone the
GO-RXR
repository:$ git clone https://github.com/lucaskorol21/GO-RXR.git
-
Navigate to the cloned directory:
$ cd GO-RXR/
-
-
Set Up the Virtual Environment
-
Create the virtual environment using Python 3.10 (inside the
GO-RXR
directory):$ python3.10 -m venv venv-go-rxr
-
Activate the virtual environment:
(venv-go-rxr) $ source venv-go-rxr/bin/activate
-
-
Install Package Dependencies
-
Install the required Python packages using
pip
:(venv-go-rxr) $ pip install .
This command will handle the installation of all dependencies, including compiling any Cython extensions.
-
-
Running the Application
- Go back to the root of the repository and run the GUI:
(venv-go-rxr) $ python GUI_GO.py
- Go back to the root of the repository and run the GUI:
This section provides additional details for less common configurations and troubleshooting.
-
Installation can be completed successfully after adding the
deadsnakes PPA
to install Python 3.10sudo add-apt-repository ppa:deadsnakes/ppa sudo apt-get update sudo apt-get install python3.10
- The installation instructions may not work on a WSL ARM64 Windows machine due to issues with installing
PyQt5
. - Attempting to install
PyQt6
and updatingGUI_GO.py
may result in errors related to graphics instantiation in WSL. - WSL on ARM64 is a niche configuration; we recommend using a native Linux installation or an AMD64 system.
(venv-go-rxr) $ pip install Pillow
If you encounter conflicts with the PyQt5 package during installation or usage, this discussion might be useful. Try the following steps:
# Install necessary dependencies
$ sudo apt-get install pyqt5-dev libqt5multimedia5-plugins -y
# Remove existing PyQt5 installations from the virtual environment
$ sudo rm -f -r /usr/lib/python3/dist-packages/PyQt5 /path/to/your/virtualenv/lib/python3.x/site-packages/PyQt5
# Create a symbolic link from the OS libraries to the virtual environment
$ sudo ln -f -s /usr/lib/python3/dist-packages/PyQt5 /path/to/your/virtualenv/lib/python3.x/site-packages/PyQt5
Replace /path/to/your/virtualenv with the path to your virtual environment directory and 3.x with the appropriate Python version (e.g., 3.10, 3.9, etc.). These commands aim to ensure that the global version of PyQt5 matches the one specified in your setup file by using the operating system's libraries and creating a symbolic link accordingly.
If you encounter conflicts with the PyQt5 package during installation or usage (issues were noticed on Windows 11 Education) you might need to update the wsl
version. Try the following steps:
-
Update WSL:
Open a new console and run:$ wsl --update
-
Run the GUI:
After updating WSL, return to the Ubuntu console and run:
(venv-go-rxr) $ python GUI_GO.py
The non-GUI tests are automatically run on every push and merge to the repository through GitHub Actions. This ensures that any new code changes do not introduce regressions or errors in the core functionality of the software.
You can also run all tests locally using the test scripts provided in the TESTS
folder. This includes both GUI and non-GUI tests.
To run all tests at once, you can use the run_all_tests.py
script in the TESTS
directory:
(venv-go-rxr) $ python TESTS/run_all_tests.py
This script will execute all the test scripts in the TESTS
folder.
If you wish to run specific tests, you can directly execute the individual test scripts. For example:
-
To test data fitting functionalities:
(venv-go-rxr) $ python TESTS/test_data_fitting.py
-
To test the GUI functionality:
(venv-go-rxr) $ python TESTS/test_GUI.py
-
To test the reflectivity functions:
(venv-go-rxr) $ python TESTS/test_reflectivity.py
The tests cover the following components of the GO-RXR software:
- Data Fitting: Ensures that the data fitting algorithms work correctly.
- Data Structure: Validates the integrity and correctness of the data structure used within the software.
- Density Calculations: Verifies the density calculations related to material properties.
- Material Models: Tests the material models to ensure they are defined and processed correctly.
- Material Structure: Checks the integrity and correctness of the material structure and its interactions within the software.
- Reflectivity Calculations: Validates the reflectivity calculations that are central to the analysis performed by GO-RXR.
- Graphical User Interface (GUI): Ensures that the GUI is functioning as expected, including the interaction with user inputs and visual outputs.
Make sure to have the virtual environment activated and all dependencies installed before running the tests.
The User Guide can be found in /DOCS
. Also, the file Tutorial/Tutorial.pdf
contains two detailed examples describing the step-by-step procedures to start using the GUI.
This software uses the following open source packages:
Contribution made by:
- Dr. Robert J. Green
- Dr. Raymond Spiteri
- Dr. Jesus Perez Curbelo
- QMax Group
- Numerical Simulations Research Lab
GO-RXR would have not been possible without the University of Saskatchewan and the funding provided by the U of S Physics and Engineering Physics Department, the NSERC-CREATE to INSPIRE fellowship, and the NSERC CGS M.
GO-RXR has been developed by the QMaX and Numerical Simulation Lab at the Department of Physics and Engineering Physics, University of Saskatchewan. The distribution of GO-RXR is subject to the terms and conditions of the BSD 3-Clause License. For specific details, please refer to the LICENSE file included with this distribution.
We welcome contributions from the community! If you're interested in contributing to GO-RXR, please read our Contribution Guidelines for more information.
The GO-RXR software package has been utilized for analyzing the RXR data in the papers:
- Emma van der Minne, Lucas Korol, Lidewij M. A. Krakers, Michael Verhage, Carlos M. M. Rosário, Thijs J. Roskamp, Raymond J. Spiteri, Chiara Biz, Mauro Fianchini, Bernard A. Boukamp, Guus Rijnders, Kees Flipse, Jose Gracia, Guido Mul, Hans Hilgenkamp, Robert J. Green, Gertjan Koster, Christoph Baeumer; The effect of intrinsic magnetic order on electrochemical water splitting. Appl. Phys. Rev. 1 March 2024; 11 (1): 011420. https://doi.org/10.1063/5.0174662
- Michael Verhage, Emma van der Minne, Ellen M. Kiens, Lucas Korol, Raymond J. Spiteri, Gertjan Koster, Robert J. Green, Christoph Baeumer, Kees Flipse; A complementary experimental study of epitaxial La0.67Sr0.33MnO3 to identify morphological and chemical disorder. arXiv. 1 Nov 2023. https://arxiv.org/abs/2311.00504 (under review in the journal ACS Applied Materials & Interfaces)
- Resolved (5/10/2023): Data fitting will run the script regardless if script option is selected. It is suggested to comment out every line of the script for now until this issues is resolved.
- Issues with providing an element variation identifier with the same name as a previously defined element. If possible always provide a different element variation identifier name that is different than any of the element names provided in any layer.
If you encounter any issues, feel free to contact me at [email protected].