GO-RXR

GO-RXR: Global Optimization of Resonant X-ray Reflectometry - Published in JOSS (2025)

https://github.com/lucaskorol21/go-rxr

Science Score: 93.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README and JOSS metadata
  • Academic publication links
    Links to: arxiv.org
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
    Published in Journal of Open Source Software

Scientific Fields

Economics Social Sciences - 40% confidence
Last synced: 4 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: lucaskorol21
  • License: bsd-3-clause
  • Language: Python
  • Default Branch: main
  • Size: 212 MB
Statistics
  • Stars: 2
  • Watchers: 1
  • Forks: 2
  • Open Issues: 2
  • Releases: 2
Created about 4 years ago · Last pushed 11 months ago
Metadata Files
Readme Contributing License

README.md


Global Optimization of Resonant X-ray Reflectometry

A scientific tool for material scientists.

Key FeaturesInstall/ConfigureHow-to-useCreditsLicensePublications

Key Features

  • 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

Getting Started

Linux (Recommended Configuration)

Tested on 22.04

Installation

1. Clone GO-RXR from the main branch in this repository:

bash $ git clone https://github.com/lucaskorol21/GO-RXR.git

2. Prerequisites and Setup (Tested with Python 3.10.14)

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:

bash $ 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: bash $ sudo apt update $ sudo apt install python3.10 python3.10-venv python3.10-dev

  • Verify the Installation:

    bash $ 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: bash $ cd GO-RXR

    • Create the virtual environment:

    bash $ python3.10 -m venv venv-go-rxr - Activate the virtual environment:

    bash (venv-go-rxr) $ source venv-go-rxr/bin/activate

2.2. Install Package Dependencies

Install the required Python packages using pip:

bash (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:

bash (venv-go-rxr) $ python GUI_GO.py

After running the GUI_GO.py file, the start screen will be displayed:

Start screen of GO-RXR. The interface is divided into three main sections: 1) Toolbar, 2) Workspace Navigator, and 3) Workspace Area. \label{fig:start-screen}

Windows (using WSL)

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.

Steps to Set Up and Run GO-RXR on Windows Using WSL

  1. Install WSL and Ubuntu
- Open a PowerShell terminal as Administrator and run:  
  ```bash
  $ 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.
  1. Update and Upgrade Ubuntu
  • Open the Ubuntu terminal and run:
    bash $ sudo apt update && sudo apt full-upgrade -y
  1. Set Up Python Environment
  • Verify if Python 3.10 is installed: bash $ python3 --version Recommended: Python 3.10.12 if available.

    • If Python 3.10 is not installed, you can install it as follows bash $ sudo apt install python3.10
  1. Clone the Repository
  • Git should already be installed, but you can install it with:
    bash $ sudo apt install git -y

  • Clone the GO-RXR repository:
    bash $ git clone https://github.com/lucaskorol21/GO-RXR.git

    • Navigate to the cloned directory:
      bash $ cd GO-RXR/
  1. Set Up the Virtual Environment
  • Create the virtual environment using Python 3.10 (inside the GO-RXR directory):
    bash $ python3.10 -m venv venv-go-rxr

  • Activate the virtual environment:
    bash (venv-go-rxr) $ source venv-go-rxr/bin/activate

  1. Install Package Dependencies
- Install the required Python packages using `pip`:

  ```bash
    (venv-go-rxr) $ pip install .
  ```

  This command will handle the installation of all dependencies, including compiling any Cython extensions.
  1. Running the Application
  • Go back to the root of the repository and run the GUI:
    bash (venv-go-rxr) $ python GUI_GO.py

Advanced Installation Notes and Known Issues

This section provides additional details for less common configurations and troubleshooting.

Ubuntu 24.04

  • Installation can be completed successfully after adding the deadsnakes PPA to install Python 3.10

    bash sudo add-apt-repository ppa:deadsnakes/ppa sudo apt-get update sudo apt-get install python3.10

WSL on ARM64

  • The installation instructions may not work on a WSL ARM64 Windows machine due to issues with installing PyQt5.
  • Attempting to install PyQt6 and updating GUI_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.

For matplotlib, ensure that you have Pillow installed

bash (venv-go-rxr) $ pip install Pillow

Resolving PyQt5 Conflicts - Ubuntu.

If you encounter conflicts with the PyQt5 package during installation or usage, this discussion might be useful. Try the following steps:

```bash

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.

Resolving PyQt5 Conflicts - WSL.

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:

  1. Update WSL:
    Open a new console and run:

    bash $ wsl --update

  2. Run the GUI:

    After updating WSL, return to the Ubuntu console and run:

    bash (venv-go-rxr) $ python GUI_GO.py

Testing

Automated Testing via GitHub Actions

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.

Running Tests Locally

You can also run all tests locally using the test scripts provided in the TESTS folder. This includes both GUI and non-GUI tests.

1. Running All Tests

To run all tests at once, you can use the run_all_tests.py script in the TESTS directory:

bash (venv-go-rxr) $ python TESTS/run_all_tests.py

This script will execute all the test scripts in the TESTS folder.

2. Running Individual Tests

If you wish to run specific tests, you can directly execute the individual test scripts. For example:

  • To test data fitting functionalities: bash (venv-go-rxr) $ python TESTS/test_data_fitting.py

  • To test the GUI functionality: bash (venv-go-rxr) $ python TESTS/test_GUI.py

  • To test the reflectivity functions: bash (venv-go-rxr) $ python TESTS/test_reflectivity.py

Test Coverage

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.

Documentation

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.

Credits

This software uses the following open source packages: - Pythonreflectivity

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.

License

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.

Contributing

We welcome contributions from the community! If you're interested in contributing to GO-RXR, please read our Contribution Guidelines for more information.

Publications

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)

Bugs

  • 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 lsk601@usask.ca.

Owner

  • Login: lucaskorol21
  • Kind: user

JOSS Publication

GO-RXR: Global Optimization of Resonant X-ray Reflectometry
Published
March 13, 2025
Volume 10, Issue 107, Page 7165
Authors
Lucas Korol ORCID
Department of Physics & Engineering Physics, University of Saskatchewan, Saskatoon, Canada S7N 5E2
Robert J. Green ORCID
Department of Physics & Engineering Physics, University of Saskatchewan, Saskatoon, Canada S7N 5E2, Stewart Blusson Quantum Matter Institute, University of British Columbia, Vancouver, Canada V6T 1Z1
Jesus P. Curbelo ORCID
Department of Computer Science, University of Saskatchewan, Saskatoon, Canada S7N 5E2
Raymond J. Spiteri ORCID
Department of Computer Science, University of Saskatchewan, Saskatoon, Canada S7N 5E2
Editor
Bonan Zhu ORCID
Tags
resonant x-ray reflectometry material science thin film heterostructure

GitHub Events

Total
  • Create event: 8
  • Release event: 5
  • Issues event: 1
  • Issue comment event: 6
  • Push event: 14
  • Pull request event: 10
  • Fork event: 1
Last Year
  • Create event: 8
  • Release event: 5
  • Issues event: 1
  • Issue comment event: 6
  • Push event: 14
  • Pull request event: 10
  • Fork event: 1

Committers

Last synced: 5 months ago

All Time
  • Total Commits: 858
  • Total Committers: 4
  • Avg Commits per committer: 214.5
  • Development Distribution Score (DDS): 0.132
Past Year
  • Commits: 62
  • Committers: 3
  • Avg Commits per committer: 20.667
  • Development Distribution Score (DDS): 0.032
Top Committers
Name Email Commits
lucaskorol21 7****1 745
jpcurbelo j****l@g****m 111
Bonan Zhu 3****n 1
jpcurbelo j****o@g****m 1

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 2
  • Total pull requests: 48
  • Average time to close issues: N/A
  • Average time to close pull requests: 7 days
  • Total issue authors: 1
  • Total pull request authors: 3
  • Average comments per issue: 3.5
  • Average comments per pull request: 0.0
  • Merged pull requests: 47
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 2
  • Pull requests: 10
  • Average time to close issues: N/A
  • Average time to close pull requests: about 4 hours
  • Issue authors: 1
  • Pull request authors: 2
  • Average comments per issue: 3.5
  • Average comments per pull request: 0.0
  • Merged pull requests: 10
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • JohannesBuchner (3)
  • jpcurbelo (1)
Pull Request Authors
  • jpcurbelo (32)
  • lucaskorol21 (23)
  • zhubonan (2)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 10 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 1
  • Total maintainers: 1
pypi.org: go-rxr

Global Optimization of Resonant X-ray Reflectometry Tool

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 10 Last month
Rankings
Dependent packages count: 7.4%
Forks count: 30.1%
Stargazers count: 32.1%
Average: 34.7%
Dependent repos count: 69.2%
Maintainers (1)
Last synced: 4 months ago