Skip to main content

Collection of NOMAD parsers for simulation codes.

Project description

This is a collection of NOMAD parsers for simulation codes:

Preparing code input and output file for uploading to NOMAD

An upload is basically a directory structure with files. If you have all the files locally you can just upload everything as a .zip or .tar.gz file in a single step. While the upload is in the staging area (i.e. before it is published) you can also easily add or remove files in the directory tree via the web interface. NOMAD will automatically try to choose the right parser for you files.

For each parser there is one type of file that the respective parser can recognize. We call these files mainfiles. For each mainfile that NOMAD discovers it will create an entry in the database, which users can search, view, and download. NOMAD will consider all files in the same directory as auxiliary files that also are associated with that entry. Parsers might also read information from these auxillary files. This way you can add more files to an entry, even if the respective parser/code might not use them. However, we strongly recommend to not have multiple mainfiles in the same directory. For CMS calculations, we recommend having a separate directory for each code run.

Go to the NOMAD upload page to upload files or find instructions about how to upload files from the command line.

Using the parser

You can use NOMAD's parsers and normalizers locally on your computer. You need to install NOMAD's pypi package:

pip install nomad-lab

To parse code input/output from the command line, you can use NOMAD's command line interface (CLI) and print the processing results output to stdout:

nomad parse --show-archive <path-to-file>

To parse a file in Python, you can program something like this:

import sys
from nomad.cli.parse import parse, normalize_all

# match and run the parser
archive = parse(sys.argv[1])
# run all normalizers
normalize_all(archive)

# get the 'main section' section_run as a metainfo object
section_run = archive.section_run[0]

# get the same data as JSON serializable Python dict
python_dict = section_run.m_to_dict()

Developing the parser

Create a virtual environment to install the parser in development mode:

pip install virtualenv
virtualenv -p `which python3` .pyenv
source .pyenv/bin/activate

Install NOMAD's pypi package:

pip install nomad-lab

Clone the parser project and install it in development mode:

git clone https://github.com/nomad-coe/simulation-parsers.git simulation-parsers
pip install -e simulation-parsers

Running the parser now, will use the parser's Python code from the clone project.

Project details


Download files

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

Source Distribution

nomad_parser_plugins_simulation-1.0.2.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file nomad_parser_plugins_simulation-1.0.2.tar.gz.

File metadata

File hashes

Hashes for nomad_parser_plugins_simulation-1.0.2.tar.gz
Algorithm Hash digest
SHA256 08d0ca7ee97819de2a80fbdca742a926a40f464dc17d57cafb2d51ab52ad5dd3
MD5 bba7d784f5bee959dc876193688fdbb7
BLAKE2b-256 0790478c4140d9ae9710d03e9bc297af111b56b4fb5ce175fc2d38bfdbd84cc9

See more details on using hashes here.

File details

Details for the file nomad_parser_plugins_simulation-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for nomad_parser_plugins_simulation-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 352d33a6c208e17e4a9058831af70bd278def820530219a55cfb4d863e0f5288
MD5 2c6618aea5a19eb6dfd8498827187910
BLAKE2b-256 20dd8b1cf96de35ef5adc046bb319efc2436a5f5687cd45921a2b68769d2067a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page