Skip to main content

NOMAD

nomad-simulations

This is a plugin for NOMAD which contains the base sections definitions for materials science simulations. This schema can be used at any prefered level by the user, it can be modified and extended, and we welcome external collaborators.

Getting started

nomad-simulations can be installed as a PyPI package using pip:

pip install nomad-simulations

Development

If you want to develop locally this package, clone the project and in the workspace folder, create a virtual environment (you can use Python 3.9, 3.10, or 3.11):

git clone https://github.com/nomad-coe/nomad-simulations.git
cd nomad-simulations
python3.11 -m venv .pyenv
. .pyenv/bin/activate

Make sure to have pip upgraded:

pip install --upgrade pip

We recommend installing uv for fast pip installation of the packages:

pip install uv

Install the nomad-lab package:

uv pip install '.[dev]'

The plugin is still under development. If you would like to contribute, install the package in editable mode (with the added -e flag):

uv pip install -e '.[dev]'

Run the tests

You can run locally the tests:

python -m pytest -sv tests

where the -s and -v options toggle the output verbosity.

Our CI/CD pipeline produces a more comprehensive test report using the pytest-cov package. You can generate a local coverage report:

uv pip install pytest-cov
python -m pytest --cov=src tests

You can also run the script to generate a local file coverage.txt with the same information:

./scripts/generate_coverage_txt.sh

Run linting and auto-formatting

We use Ruff for linting and formatting the code. Ruff auto-formatting is also a part of the GitHub workflow actions. You can run locally:

ruff check .
ruff format . --check

Debugging

For interactive debugging of the tests, use pytest with the --pdb flag. We recommend using an IDE for debugging, e.g., VSCode. If that is the case, add the following snippet to your .vscode/launch.json:

{
  "configurations": [
      {
        "name": "<descriptive tag>",
        "type": "debugpy",
        "request": "launch",
        "cwd": "${workspaceFolder}",
        "program": "${workspaceFolder}/.pyenv/bin/pytest",
        "justMyCode": true,
        "env": {
            "_PYTEST_RAISE": "1"
        },
        "args": [
            "-sv",
            "--pdb",
            "<path-to-plugin-tests>",
        ]
    }
  ]
}

where <path-to-plugin-tests> must be changed to the local path to the test module to be debugged.

The settings configuration file .vscode/settings.json automatically applies the linting and formatting upon saving the modified file.

Documentation on Github pages

To view the documentation locally, install the related packages using:

uv pip install -r requirements_docs.txt

Run the documentation server:

mkdocs serve

Adding this plugin to NOMAD

Currently, NOMAD has two distinct flavors that are relevant depending on your role as an user:

  1. A NOMAD Oasis: any user with a NOMAD Oasis instance.
  2. Local NOMAD installation and the source code of NOMAD: internal developers.

Adding this plugin in your NOMAD Oasis

Read the NOMAD plugin documentation for all details on how to deploy the plugin on your NOMAD instance.

Adding this plugin in your local NOMAD installation and the source code of NOMAD

Modify the script under /nomad/scripts/install_default_plugins.sh and add the path to this repository pointing to the @develop branch:

<other-content-in-install_default_plugins.sh...>
pip install git+https://github.com/nomad-coe/nomad-simulations.git@develop

Then, go to your NOMAD folder, activate your NOMAD virtual environment and run:

deactivate
cd <route-to-NOMAD-folder>/nomad
source .pyenv/bin/activate
./scripts/setup_dev_env.sh

Alternatively and only valid for your local NOMAD installation, you can modify nomad.yaml to include this plugin:

plugins:
  entry_points:
    include:
      - ["nomad_simulations.schema_packages:nomad_simulations_plugin"]

Note! Once you modify your nomad.yaml file adding include, all the default plugins will be disconnected, so you will need to include them as well.

Main contributors

Name E-mail Topics Github profiles
Dr. Nathan Daelman nathan.daelman@physik.hu-berlin.de DFT, Precision @ndaelman-hu
Dr. Bernadette Mohr mohrbern@physik.hu-berlin.de MD, FF @Bernadette-Mohr
Dr. José M. Pizarro jose.pizarro@physik.hu-berlin.de GW, DMFT, BSE @JosePizarro3
Dr. Esma B. Boydas esma.boydas@physik.hu-berlin.de Quantum Chemistry @EBB2675
Dr. Joseph F. Rudzinski (Coordinator) joseph.rudzinski@physik.hu-berlin.de General @JFRudzinski

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nomad_simulations-0.0.7.tar.gz (599.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nomad_simulations-0.0.7-py3-none-any.whl (103.4 kB view details)

Uploaded Python 3

File details

Details for the file nomad_simulations-0.0.7.tar.gz.

File metadata

  • Download URL: nomad_simulations-0.0.7.tar.gz
  • Upload date:
  • Size: 599.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for nomad_simulations-0.0.7.tar.gz
Algorithm Hash digest
SHA256 f9472a26536755da63630901e7f2ccf4faf5387f049f3c78ed4ee74165925684
MD5 5bea081f4195e9fbb17b46957033e678
BLAKE2b-256 a95c3e9decf2e52f0316e506ddcfdf9296c843477e59809299d4d2280bca95dd

See more details on using hashes here.

File details

Details for the file nomad_simulations-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for nomad_simulations-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 c1afe743b5ac5cb61bfc532254e24ab82ab6f9f13c5463b83b75f7e46b42e484
MD5 216cc4fa6706683196a7828bb022bcf2
BLAKE2b-256 8aed6e43e75039fbb1bc576cec1dd76e3039223ba100fd98610a731095039ed4

See more details on using hashes here.

Release history Release notifications | RSS feed

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.2

2 files

0.3.1

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

This release

0.0.7 This release

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

0.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page