diff --git a/.dockerignore b/.dockerignore index 7268d7a94830032bc072be125d9c3ed2724701af..4559fa0445408b19935c6760a7ff1308f81fa500 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,42 +1,445 @@ -**/*.git -**/.cache -**/.mypy_cache -**/__pycache__ -**/*.pyc -**/*.egg-info -.*env/ -.pyenv*/ -.pytest_cache -.vscode/ -.volumes/ -.git/ -.coverage -**/.ipynb_checkpoints -nomad_lab.egg-info/ - -data/ -local/ -target/ -build/ -dist/ +# Only include git folder of the main repository +**/.git +!.git/ +**/.gitignore +# Ignore test cases and test data of the dependencies dependencies/**/test dependencies/**/tests dependencies/**/regtests dependencies/parsers/phonopy-library/example* -site +# Ignore storage folders of docker-compose +**/.volumes + +# ============================================================================== +# The following part was geneterated based on the .gitignore + +# Nomad specific and extra patterns needs to be ignored + +.*env/ +.pyenv*/ +.pytest/ +.coverage_html/ +.coverage* +*.log.conf +parser.osio.log docs/*.graffle +gui/.editorconfig +gui/.pnp.cjs +gui/.yarn/ +gui/.yarnrc.yml +gui/junit.xml + +# Ignore all user-specific configuration files +**/nomad.yaml +!tests/nomad.yaml +!ops/docker-compose/nomad-oasis/configs/nomad.yaml +!ops/docker-compose/nomad-oasis-with-keycloak/configs/nomad.yaml + +# Ignore built gui and docs artufacts +nomad/app/static/ nomad/normalizing/data/*.db nomad/normalizing/data/*.msg -nomad/app/static -nomad.yaml - -gui/node_modules/ -gui/build/ -gui/public/metainfo/ -gui/npm-debug.log* -gui/yarn-debug.log* -gui/yarn-error.log* \ No newline at end of file + +# Sideffect of examples/dos_analyzer.ipynb +examples/workdir/ + +# Sideffect of running Jupyterhub locally +**/jupyterhub_cookie_secret +**/jupyterhub.sqlite +**/jupyterhub-proxy.pid + + + +# https://github.com/github/gitignore/blob/main/Python.gitignore + +# Byte-compiled / optimized / DLL files +**/__pycache__/ +**/*.py[cod] +**/*$py.class + +# C extensions +**/*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +.idea/ + + +# https://github.com/github/gitignore/blob/main/Node.gitignore + +# Logs +**/logs +**/*.log +**/npm-debug.log* +**/yarn-debug.log* +**/yarn-error.log* +**/lerna-debug.log* +**/.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +**/report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +**/pids +**/*.pid +**/*.seed +**/*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +**/lib-cov + +# Coverage directory used by tools like istanbul +**/coverage +**/*.lcov + +# nyc test coverage +**/.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +**/.grunt + +# Bower dependency directory (https://bower.io/) +**/bower_components + +# node-waf configuration +**/.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +**/build/Release + +# Dependency directories +**/node_modules/ +**/jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +**/web_modules/ + +# TypeScript cache +**/*.tsbuildinfo + +# Optional npm cache directory +**/.npm + +# Optional eslint cache +**/.eslintcache + +# Optional stylelint cache +**/.stylelintcache + +# Microbundle cache +**/.rpt2_cache/ +**/.rts2_cache_cjs/ +**/.rts2_cache_es/ +**/.rts2_cache_umd/ + +# Optional REPL history +**/.node_repl_history + +# Output of 'npm pack' +**/*.tgz + +# Yarn Integrity file +**/.yarn-integrity + +# dotenv environment variable files +**/.env +**/.env.development.local +**/.env.test.local +**/.env.production.local +**/.env.local + +# parcel-bundler cache (https://parceljs.org/) +**/.cache +**/.parcel-cache + +# Next.js build output +**/.next +**/out + +# Nuxt.js build / generate output +**/.nuxt +**/dist + +# Gatsby files +**/.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +**/.vuepress/dist + +# vuepress v2.x temp and cache directory +**/.temp +**/.cache + +# Docusaurus cache and generated files +**/.docusaurus + +# Serverless directories +**/.serverless/ + +# FuseBox cache +**/.fusebox/ + +# DynamoDB Local files +**/.dynamodb/ + +# TernJS port file +**/.tern-port + +# Stores VSCode versions used for testing VSCode extensions +**/.vscode-test + +# yarn v2 +**/.yarn/cache +**/.yarn/unplugged +**/.yarn/build-state.yml +**/.yarn/install-state.gz +**/.pnp.* + + +# https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore/ + +**/.vscode/* +!**/.vscode/settings.json +# !.vscode/tasks.json +# !.vscode/launch.json +# !.vscode/extensions.json +!**/.vscode/*.code-snippets + +# Local History for Visual Studio Code +**/.history/ + +# Built Visual Studio Code Extensions +**/*.vsix + + +# https://github.com/github/gitignore/blob/main/Global/macOS.gitignore + +# General +**/.DS_Store +**/.AppleDouble +**/.LSOverride + +# Icon must end with two \r +**/Icon + + +# Thumbnails +**/._* + +# Files that might appear in the root of a volume +**/.DocumentRevisions-V100 +**/.fseventsd +**/.Spotlight-V100 +**/.TemporaryItems +**/.Trashes +**/.VolumeIcon.icns +**/.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +**/.AppleDB +**/.AppleDesktop +**/Network Trash Folder +**/Temporary Items +**/.apdisk + + +# https://github.com/github/gitignore/blob/main/Global/Windows.gitignore + +# Windows thumbnail cache files +**/Thumbs.db +**/Thumbs.db:encryptable +**/ehthumbs.db +**/ehthumbs_vista.db + +# Dump file +**/*.stackdump + +# Folder config file +**/[Dd]esktop.ini + +# Recycle Bin used on file shares +**/$RECYCLE.BIN/ + +# Windows Installer files +**/*.cab +**/*.msi +**/*.msix +**/*.msm +**/*.msp + +# Windows shortcuts +**/*.lnk + + +# https://github.com/github/gitignore/blob/main/Global/Linux.gitignore + +**/*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +**/.fuse_hidden* + +# KDE directory preferences +**/.directory + +# Linux trash folder which might appear on any partition or disk +**/.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +**/.nfs* + diff --git a/.gitignore b/.gitignore index 2f847a74bc4cd5d3ac161c4b48b817e51c76c519..63bdbd37b10fc7a8951e9a19b3e93d2b440fbed7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,44 @@ +# Nomad specific and extra patterns needs to be ignored + +.*env/ +.pyenv*/ +.pytest/ +.coverage_html/ +.coverage* +*.log.conf +parser.osio.log +docs/*.graffle +gui/.editorconfig +gui/.pnp.cjs +gui/.yarn/ +gui/.yarnrc.yml +gui/junit.xml + +# Ignore all user-specific configuration files +nomad.yaml +!tests/nomad.yaml +!ops/docker-compose/nomad-oasis/configs/nomad.yaml +!ops/docker-compose/nomad-oasis-with-keycloak/configs/nomad.yaml + +# Ignore built gui and docs artufacts +nomad/app/static/ + +nomad/normalizing/data/*.db +nomad/normalizing/data/*.msg + +# Side effect of examples/dos_analyzer.ipynb +examples/workdir/ +examples/data/uploads/*.zip + +# Side effect of running Jupyterhub locally +jupyterhub_cookie_secret +jupyterhub.sqlite +jupyterhub-proxy.pid + +# Ignore storage folders of docker-compose +.volumes + + # https://github.com/github/gitignore/blob/main/Python.gitignore # Byte-compiled / optimized / DLL files @@ -386,52 +427,3 @@ $RECYCLE.BIN/ # .nfs files are created when an open file is removed but is still being accessed .nfs* - - -# Nomad -.*env/ -.pyenv*/ -.pytest/ - -.coverage_html/ -.coverage* - -/data/ -/.volumes - -try.http -project/ -test_*/ -local/ -*.swp - -nomad.yaml -!tests/nomad.yaml -!ops/docker-compose/nomad-oasis/configs/nomad.yaml -!ops/docker-compose/nomad-oasis-with-keycloak/configs/nomad.yaml - -*.log.conf -setup.json -parser.osio.log -gui/src/metainfo.json -gui/src/searchQuantities.json -gui/src/toolkitMetadata.json -gui/src/unitsData.js -gui/src/parserMetadata.js -gui/src/northTools.json -gui/src/exampleUploads.json -gui/.editorconfig -gui/.pnp.cjs -gui/.yarn/ -gui/.yarnrc.yml -gui/junit.xml -examples/workdir/ -nomad/gitinfo.py - -jupyterhub_cookie_secret -jupyterhub.sqlite -jupyterhub-proxy.pid -gui/src/parserMetadata.json - -docs/*.graffle - diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 27959d665a4780bad53e233fa97d9ac7aa51b00a..657c974346f440f2691be6cf631ce6bf3069dd88 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,9 @@ # using an image that can do git, docker, docker-compose image: gitlab-registry.mpcdf.mpg.de/nomad-lab/nomad-fair/ci-runner:latest +# build directory inside +# https://gitlab.mpcdf.mpg.de/help/ci/runners/configure_runners.md#custom-build-directories + # https://docs.gitlab.com/ee/ci/yaml/workflow.html # https://docs.gitlab.com/ee/ci/variables/predefined_variables.html # if: CI_COMMIT_BRANCH && CI_COMMIT_BEFORE_SHA == "0000000000000000000000000000000000000000" @@ -15,6 +18,9 @@ image: gitlab-registry.mpcdf.mpg.de/nomad-lab/nomad-fair/ci-runner:latest # if: $CI_COMMIT_BRANCH # A branch pipeline, but there is no merge request open for the branch, run the branch pipeline. +variables: + DOCKER_TAG: ${CI_COMMIT_REF_SLUG} + workflow: rules: - if: $CI_COMMIT_BRANCH && $CI_COMMIT_BEFORE_SHA == "0000000000000000000000000000000000000000" @@ -27,6 +33,8 @@ workflow: - if: $CI_PIPELINE_SOURCE == "schedule" - if: $CI_COMMIT_BRANCH - if: $CI_COMMIT_TAG + variables: + DOCKER_TAG: ${CI_COMMIT_REF_NAME} - when: never stages: @@ -35,36 +43,40 @@ stages: - deploy - release -# The new workflow definition can be used here -variables: - TEST_IMAGE: ${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_SLUG} - STABLE_IMAGE: ${CI_REGISTRY_IMAGE}:stable - LATEST_IMAGE: ${CI_REGISTRY_IMAGE}:latest build: stage: build + variables: + GIT_SUBMODULE_STRATEGY: recursive + GIT_SUBMODULE_UPDATE_FLAGS: --jobs 4 + DOCKER_BUILDKIT: 1 before_script: - - git submodule sync --recursive - - git submodule update --init --recursive --jobs=4 - # create the version information - - ./gitinfo.sh - - echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY --username $CI_REGISTRY_USER --password-stdin + - docker --version + - echo "${CI_REGISTRY_PASSWORD}" | docker login ${CI_REGISTRY} --username ${CI_REGISTRY_USER} --password-stdin script: - - docker build -t $TEST_IMAGE . - - docker push $TEST_IMAGE + - docker build -t ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} . + - docker build --target dev_node -t ${CI_REGISTRY_IMAGE}/dev_node:${DOCKER_TAG} . + - docker build --target dev_python -t ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} . + - docker push ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} + - docker push ${CI_REGISTRY_IMAGE}/dev_node:${DOCKER_TAG} + - docker push ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} rules: - if: $CI_COMMIT_TAG when: never - when: on_success + python linting: stage: test - image: $TEST_IMAGE - script: + image: ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} + variables: + GIT_STRATEGY: none + before_script: - cd /app - - python -m pycodestyle --config=pycodestyle.ini nomad tests - - python -m pylint --load-plugins=pylint_mongoengine,nomad.metainfo.pylint_plugin nomad tests - - python -m mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional nomad tests + script: + - pycodestyle --config=pycodestyle.ini nomad tests + - pylint --load-plugins=pylint_mongoengine,nomad.metainfo.pylint_plugin nomad tests + - mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional nomad tests rules: - if: $CI_COMMIT_TAG when: never @@ -72,29 +84,54 @@ python linting: gui linting: stage: test + image: ${CI_REGISTRY_IMAGE}/dev_node:${DOCKER_TAG} + variables: + GIT_STRATEGY: none before_script: - - git submodule sync - - git submodule update --init -- gui/materia gui/crystcif-parse - - docker run --rm $TEST_IMAGE python -m nomad.cli dev search-quantities > gui/src/searchQuantities.json - - docker run --rm $TEST_IMAGE python -m nomad.cli dev gui-config > gui/public/env.js - - docker run --rm $TEST_IMAGE python -m nomad.cli dev units > gui/src/unitsData.js - - docker run --rm $TEST_IMAGE python -m nomad.cli dev toolkit-metadata > gui/src/toolkitMetadata.json - - docker run --rm $TEST_IMAGE python -m nomad.cli dev metainfo > gui/src/metainfo.json - - docker run --rm $TEST_IMAGE python -m nomad.cli dev parser-metadata > gui/src/parserMetadata.json - - docker run --rm $TEST_IMAGE python -m nomad.cli dev example-upload-metadata > gui/src/exampleUploads.json - - docker run --rm $TEST_IMAGE cat dependencies/nomad-remote-tools-hub/tools.json > gui/src/northTools.json + - cd /app/gui script: - - cd gui - - yarn --network-timeout 1200000 - yarn run lint rules: - if: $CI_COMMIT_TAG when: never - when: on_success + +check python dependencies: + stage: test + image: python:3.7 + variables: + GIT_SUBMODULE_STRATEGY: recursive + GIT_SUBMODULE_UPDATE_FLAGS: --jobs 4 + before_script: + - pip install --upgrade pip-tools + script: + - scripts/check_python_dependencies.sh + rules: + - if: $CI_COMMIT_TAG + when: never + - when: on_success + allow_failure: true + + +check gui artifacts: + stage: test + image: ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} + variables: + GIT_STRATEGY: none + before_script: + - cd /app + script: + - scripts/check_gui_artifacts.sh + rules: + - if: $CI_COMMIT_TAG + when: never + - when: on_success + + python tests: stage: test - image: $TEST_IMAGE + image: ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} services: - name: rabbitmq:3.9.13 alias: rabbitmq @@ -107,6 +144,7 @@ python tests: - name: mongo:5.0.6 alias: mongo variables: + GIT_STRATEGY: none RABBITMQ_ERLANG_COOKIE: SWQOKODSQALRPCLNMEQG RABBITMQ_DEFAULT_USER: rabbitmq RABBITMQ_DEFAULT_PASS: rabbitmq @@ -116,11 +154,11 @@ python tests: NOMAD_MONGO_HOST: mongo NOMAD_KEYCLOAK_PASSWORD: ${CI_KEYCLOAK_ADMIN_PASSWORD} NOMAD_NORMALIZE_SPRINGER_DB_PATH: /nomad/fairdi/db/data/springer.msg - script: + before_script: - sleep 5 - curl http://elastic:9200/_cat/health - cd /app - - ls /builds + script: - python -m pytest --cov=nomad -sv tests rules: - if: $CI_COMMIT_TAG @@ -129,80 +167,36 @@ python tests: gui tests: stage: test - before_script: - - git submodule sync - - git submodule update --init -- gui/materia gui/crystcif-parse - - docker run --rm $TEST_IMAGE python -m nomad.cli dev search-quantities > gui/src/searchQuantities.json - - docker run --rm $TEST_IMAGE python -m nomad.cli dev gui-config > gui/public/env.js - - docker run --rm $TEST_IMAGE python -m nomad.cli dev units > gui/src/unitsData.js - - docker run --rm $TEST_IMAGE python -m nomad.cli dev toolkit-metadata > gui/src/toolkitMetadata.json - - docker run --rm $TEST_IMAGE python -m nomad.cli dev example-upload-metadata > gui/src/exampleUploads.json - - docker run --rm $TEST_IMAGE python -m nomad.cli dev metainfo > gui/src/metainfo.json - - docker run --rm $TEST_IMAGE python -m nomad.cli dev parser-metadata > gui/src/parserMetadata.json - - docker run --rm $TEST_IMAGE cat dependencies/nomad-remote-tools-hub/tools.json > gui/src/northTools.json + image: ${CI_REGISTRY_IMAGE}/dev_node:${DOCKER_TAG} + variables: + GIT_STRATEGY: none script: - - cd gui - - yarn --network-timeout 1200000 + - cd /app/gui - yarn test --ci --collectCoverage --reporters=default --reporters=jest-junit --silent --testPathIgnorePatterns=MetainfoBrowser.spec.js --testPathIgnorePatterns=src/components/entry/ArchiveEntryView.spec.js --testPathIgnorePatterns=src/components/archive/FileBrowser.spec.js --testPathIgnorePatterns=src/components/archive/MetainfoBrowser.spec.js --testPathIgnorePatterns=src/components/uploads/UploadPage.spec.js + after_script: + - cd /app/gui + - cp junit.xml $CI_PROJECT_DIR + - cp coverage/cobertura-coverage.xml $CI_PROJECT_DIR timeout: 1h 30m coverage: /Lines\s*:\s*(\d+.?\d*)%/ artifacts: when: always reports: junit: - - gui/junit.xml + - junit.xml coverage_report: coverage_format: cobertura - path: gui/coverage/cobertura-coverage.xml - rules: - - if: $CI_COMMIT_TAG - when: never - - when: on_success - -install tests: - stage: test - image: python:3.7 - before_script: - - git submodule sync --recursive - - sleep 5 - - git submodule update --init --recursive --jobs=4 - script: - - pip install --upgrade pip - - pip install fastentrypoints - - pip install pyyaml - - pip install numpy - - python setup.py compile - - python setup.py sdist - - pip install dist/nomad-lab-*.tar.gz - - python -c "import nomad.datamodel, nomad.datamodel.metainfo, nomad.client" - - pip install `echo dist/nomad-lab-*.tar.gz`[parsing] - - python -m nomad.cli parse tests/data/parsers/vasp/vasp.xml - - git clone --branch v1.0.0 https://github.com/nomad-coe/nomad-parser-example.git example-parser - - cd example-parser - - python exampleparser/__main__.py tests/data/example.out + path: cobertura-coverage.xml rules: - if: $CI_COMMIT_TAG when: never - when: on_success -dev setup tests: - stage: test - image: python:3.7 - script: - - pip install --upgrade pip - - ./setup.sh - - python -m nomad.cli parse tests/data/parsers/vasp/vasp.xml - - python -c "import nomad.app" - - python -c "import nomad.processing" - rules: - - if: $CI_COMMIT_TAG - when: never - - when: on_success deploy dev: stage: deploy @@ -215,6 +209,8 @@ deploy dev: before_script: - mkdir ~/.kube/ - echo ${CI_K8S_CONFIG} | base64 -d > ~/.kube/config + - echo ${CI_ENVIRONMENT_SLUG} + - echo "https://nomad-lab.eu/dev/rae/${CI_ENVIRONMENT_SLUG}" script: - helm dependency update ops/kubernetes/nomad - helm upgrade ${CI_ENVIRONMENT_SLUG} ops/kubernetes/nomad @@ -226,10 +222,11 @@ deploy dev: --set jupyterhub.fullnameOverride=${CI_ENVIRONMENT_SLUG}-north --set jupyterhub.singleuser.podNameTemplate="${CI_ENVIRONMENT_SLUG}-north-{username}--{servername}" --set jupyterhub.hub.config.GenericOAuthenticator.oauth_callback_url=https://nomad-lab.eu/dev/rae/${CI_ENVIRONMENT_SLUG}/north/hub/oauth_callback - --set image.tag=$CI_COMMIT_REF_SLUG + --set image.tag=${DOCKER_TAG} --set roll=true --timeout=15m --wait + --cleanup-on-fail needs: - job: build rules: @@ -240,6 +237,8 @@ deploy dev: stop deploy dev: stage: deploy + variables: + GIT_STRATEGY: none environment: name: dev/$CI_COMMIT_REF_NAME action: stop @@ -270,12 +269,13 @@ deploy prod staging: - helm upgrade nomad-staging-v1 ops/kubernetes/nomad --install --values ops/kubernetes/deployments/prod-staging-values.yaml - --set image.tag=$CI_COMMIT_REF_SLUG + --set image.tag=${DOCKER_TAG} --set roll=true --timeout=15m --wait - - docker pull $TEST_IMAGE - - docker run -t -e NOMAD_KEYCLOAK_REALM_NAME=fairdi_nomad_prod $TEST_IMAGE python -m nomad.cli client -n https://nomad-lab.eu/prod/v1/staging/api -u test -w $CI_NOMAD_TEST_PASSWORD integrationtests --skip-publish --skip-doi + - docker pull ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} + - docker run -t -e NOMAD_KEYCLOAK_REALM_NAME=fairdi_nomad_prod ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} + nomad client -n https://nomad-lab.eu/prod/v1/staging/api -u test -w $CI_NOMAD_TEST_PASSWORD integrationtests --skip-publish --skip-doi rules: - if: $CI_COMMIT_TAG when: never @@ -296,12 +296,13 @@ deploy prod test: - helm upgrade nomad-test-v1 ops/kubernetes/nomad --install --values ops/kubernetes/deployments/prod-test-values.yaml - --set image.tag=$CI_COMMIT_REF_SLUG + --set image.tag=${DOCKER_TAG} --set roll=true --timeout=15m --wait - - docker pull $TEST_IMAGE - - docker run -t -e NOMAD_KEYCLOAK_REALM_NAME=fairdi_nomad_prod $TEST_IMAGE python -m nomad.cli client -n https://nomad-lab.eu/prod/v1/test/api -u test -w $CI_NOMAD_TEST_PASSWORD integrationtests --skip-publish --skip-doi + - docker pull ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} + - docker run -t -e NOMAD_KEYCLOAK_REALM_NAME=fairdi_nomad_prod ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} + nomad client -n https://nomad-lab.eu/prod/v1/test/api -u test -w $CI_NOMAD_TEST_PASSWORD integrationtests --skip-publish --skip-doi rules: - if: $CI_COMMIT_TAG when: never @@ -318,7 +319,7 @@ deploy prod util: - helm upgrade nomad-util-v1 ops/kubernetes/nomad --install --values ops/kubernetes/deployments/prod-util-values.yaml - --set image.tag=$CI_COMMIT_REF_SLUG + --set image.tag=${DOCKER_TAG} --set roll=true --timeout=15m --wait @@ -343,15 +344,13 @@ deploy prod develop: --install --namespace default --values ops/kubernetes/deployments/prod-develop-values.yaml - --set image.tag=$CI_COMMIT_REF_SLUG + --set image.tag=${DOCKER_TAG} --set roll=true --timeout=15m --wait - - docker pull $TEST_IMAGE - - docker run - -t -e NOMAD_KEYCLOAK_REALM_NAME=fairdi_nomad_prod - $TEST_IMAGE - python -m nomad.cli client -n https://nomad-lab.eu/prod/v1/develop/api -u test -w $CI_NOMAD_TEST_PASSWORD integrationtests --skip-publish --skip-doi + - docker pull ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} + - docker run -t -e NOMAD_KEYCLOAK_REALM_NAME=fairdi_nomad_prod ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} + nomad client -n https://nomad-lab.eu/prod/v1/develop/api -u test -w $CI_NOMAD_TEST_PASSWORD integrationtests --skip-publish --skip-doi needs: - job: build rules: @@ -362,28 +361,28 @@ deploy prod develop: release latest image: stage: release + variables: + GIT_STRATEGY: none before_script: - - echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY --username $CI_REGISTRY_USER --password-stdin - - docker pull $TEST_IMAGE + - echo "${CI_REGISTRY_PASSWORD}" | docker login ${CI_REGISTRY} --username ${CI_REGISTRY_USER} --password-stdin + - docker pull ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} script: - - docker tag $TEST_IMAGE $LATEST_IMAGE - - docker push $LATEST_IMAGE + - docker tag ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} ${CI_REGISTRY_IMAGE}:latest + - docker push ${CI_REGISTRY_IMAGE}:latest rules: - - if: $CI_COMMIT_TAG - when: never - when: manual allow_failure: true release stable image: stage: release + variables: + GIT_STRATEGY: none before_script: - - echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY --username $CI_REGISTRY_USER --password-stdin - - docker pull $TEST_IMAGE + - echo "${CI_REGISTRY_PASSWORD}" | docker login ${CI_REGISTRY} --username ${CI_REGISTRY_USER} --password-stdin + - docker pull ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} script: - - docker tag $TEST_IMAGE $LATEST_IMAGE - - docker push $LATEST_IMAGE - - docker tag $TEST_IMAGE $STABLE_IMAGE - - docker push $STABLE_IMAGE + - docker tag ${CI_REGISTRY_IMAGE}:${DOCKER_TAG} ${CI_REGISTRY_IMAGE}:stable + - docker push ${CI_REGISTRY_IMAGE}:stable rules: - if: $CI_COMMIT_TAG when: manual @@ -392,22 +391,28 @@ release stable image: python package: stage: release + variables: + GIT_STRATEGY: none before_script: - - echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY --username $CI_REGISTRY_USER --password-stdin - - docker pull $TEST_IMAGE + - echo "${CI_REGISTRY_PASSWORD}" | docker login ${CI_REGISTRY} --username ${CI_REGISTRY_USER} --password-stdin + - docker pull ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} script: - - docker run --rm $TEST_IMAGE python -m twine upload -u gitlab-ci-token -p ${CI_JOB_TOKEN} --repository-url https://gitlab.mpcdf.mpg.de/api/v4/projects/${CI_PROJECT_ID}/packages/pypi dist/nomad-lab-*.tar.gz + - docker run --rm ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} + twine upload -u gitlab-ci-token -p ${CI_JOB_TOKEN} --repository-url https://gitlab.mpcdf.mpg.de/api/v4/projects/${CI_PROJECT_ID}/packages/pypi dist/nomad-lab-*.tar.gz rules: - when: manual allow_failure: true pypi package: stage: release + variables: + GIT_STRATEGY: none before_script: - - echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY --username $CI_REGISTRY_USER --password-stdin - - docker pull $TEST_IMAGE + - echo "${CI_REGISTRY_PASSWORD}" | docker login ${CI_REGISTRY} --username ${CI_REGISTRY_USER} --password-stdin + - docker pull ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} script: - - docker run --rm $TEST_IMAGE bash -c "python -m twine upload -u $CI_TWINE_USER -p $CI_TWINE_PASSWORD dist/nomad-lab-*.tar.gz" + - docker run --rm ${CI_REGISTRY_IMAGE}/dev_python:${DOCKER_TAG} + twine upload -u $CI_TWINE_USER -p $CI_TWINE_PASSWORD dist/nomad-lab-*.tar.gz rules: - when: manual allow_failure: true diff --git a/.gitmodules b/.gitmodules index ecb757aca34d30922c52de87b60f9a1bdc9252ea..326af5de69b54df4156b64b2bab28dc440357b70 100644 --- a/.gitmodules +++ b/.gitmodules @@ -8,9 +8,6 @@ path = dependencies/parsers/eelsdb url = https://github.com/nomad-coe/nomad-parser-eelsdb.git branch = master -[submodule "dependencies/parsers/example"] - path = dependencies/parsers/example - url = https://github.com/nomad-coe/nomad-parser-example.git [submodule "dependencies/nomad-remote-tools-hub"] path = dependencies/nomad-remote-tools-hub url = https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-remote-tools-hub.git diff --git a/.pylintrc b/.pylintrc index 103669a5538093112ec6acddd70288e3f74b88c5..a1dbdc628d2ba69358f38755aa7b1885345f40d1 100644 --- a/.pylintrc +++ b/.pylintrc @@ -5,52 +5,9 @@ # run arbitrary code. extension-pkg-whitelist=pydantic -# Add files or directories to the blacklist. They should be base names, not -# paths. -ignore=CVS - -# Add files or directories matching the regex patterns to the blacklist. The -# regex matches against base names, not paths. -ignore-patterns= - -# Python code to execute, usually for sys.path manipulation such as -# pygtk.require(). -#init-hook= - -# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the -# number of processors available to use. -jobs=1 - -# Control the amount of potential inferred values when inferring a single -# object. This can help the performance when dealing with large functions or -# complex, nested conditions. -limit-inference-results=100 - -# List of plugins (as comma separated values of python modules names) to load, -# usually to register additional checkers. -load-plugins= - -# Pickle collected data for later comparisons. -persistent=yes - -# Specify a configuration file. -#rcfile= - -# When enabled, pylint would attempt to guess common misconfiguration and emit -# user-friendly hints instead of false-positive error messages. -suggestion-mode=yes - -# Allow loading of arbitrary C extensions. Extensions are imported into the -# active Python interpreter and may run arbitrary code. -unsafe-load-any-extension=no - [MESSAGES CONTROL] -# Only show warnings with the listed confidence levels. Leave empty to show -# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED. -confidence= - # Disable the message, report, category or checker with the given id(s). You # can either give multiple identifiers separated by comma (,) or put this # option multiple times (only on the command line, not in the configuration @@ -402,411 +359,9 @@ enable=syntax-error, bad-open-mode -[REPORTS] - -# Python expression which should return a note less than 10 (10 is the highest -# note). You have access to the variables errors warning, statement which -# respectively contain the number of errors / warnings messages and the total -# number of statements analyzed. This is used by the global evaluation report -# (RP0004). -evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) - -# Template used to display messages. This is a python new-style format string -# used to format the message information. See doc for all details. -#msg-template= - -# Set the output format. Available formats are text, parseable, colorized, json -# and msvs (visual studio). You can also give a reporter class, e.g. -# mypackage.mymodule.MyReporterClass. -output-format=text - -# Tells whether to display a full report or only the messages. -reports=no - -# Activate the evaluation score. -score=yes - - -[REFACTORING] - -# Maximum number of nested blocks for function / method body -max-nested-blocks=5 - -# Complete name of functions that never returns. When checking for -# inconsistent-return-statements if a never returning function is called then -# it will be considered as an explicit return statement and no message will be -# printed. -never-returning-functions=sys.exit - - -[BASIC] - -# Naming style matching correct argument names. -argument-naming-style=snake_case - -# Regular expression matching correct argument names. Overrides argument- -# naming-style. -#argument-rgx= - -# Naming style matching correct attribute names. -attr-naming-style=snake_case - -# Regular expression matching correct attribute names. Overrides attr-naming- -# style. -#attr-rgx= - -# Bad variable names which should always be refused, separated by a comma. -bad-names=foo, - bar, - baz, - toto, - tutu, - tata - -# Naming style matching correct class attribute names. -class-attribute-naming-style=any - -# Regular expression matching correct class attribute names. Overrides class- -# attribute-naming-style. -#class-attribute-rgx= - -# Naming style matching correct class names. -class-naming-style=PascalCase - -# Regular expression matching correct class names. Overrides class-naming- -# style. -#class-rgx= - -# Naming style matching correct constant names. -const-naming-style=UPPER_CASE - -# Regular expression matching correct constant names. Overrides const-naming- -# style. -#const-rgx= - -# Minimum line length for functions/classes that require docstrings, shorter -# ones are exempt. -docstring-min-length=-1 - -# Naming style matching correct function names. -function-naming-style=snake_case - -# Regular expression matching correct function names. Overrides function- -# naming-style. -#function-rgx= - -# Good variable names which should always be accepted, separated by a comma. -good-names=i, - j, - k, - ex, - Run, - _ - -# Include a hint for the correct naming format with invalid-name. -include-naming-hint=no - -# Naming style matching correct inline iteration names. -inlinevar-naming-style=any - -# Regular expression matching correct inline iteration names. Overrides -# inlinevar-naming-style. -#inlinevar-rgx= - -# Naming style matching correct method names. -method-naming-style=snake_case - -# Regular expression matching correct method names. Overrides method-naming- -# style. -#method-rgx= - -# Naming style matching correct module names. -module-naming-style=snake_case - -# Regular expression matching correct module names. Overrides module-naming- -# style. -#module-rgx= - -# Colon-delimited sets of names that determine each other's naming style when -# the name regexes allow several styles. -name-group= - -# Regular expression which should only match function or class names that do -# not require a docstring. -no-docstring-rgx=^_ - -# List of decorators that produce properties, such as abc.abstractproperty. Add -# to this list to register other decorators that produce valid properties. -# These decorators are taken in consideration only for invalid-name. -property-classes=abc.abstractproperty - -# Naming style matching correct variable names. -variable-naming-style=snake_case - -# Regular expression matching correct variable names. Overrides variable- -# naming-style. -#variable-rgx= - - -[FORMAT] - -# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. -expected-line-ending-format= - -# Regexp for a line that is allowed to be longer than the limit. -ignore-long-lines=^\s*(# )?<?https?://\S+>?$ - -# Number of spaces of indent required inside a hanging or continued line. -indent-after-paren=4 - -# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 -# tab). -indent-string=' ' - -# Maximum number of characters on a single line. -max-line-length=100 - -# Maximum number of lines in a module. -max-module-lines=1000 - -# List of optional constructs for which whitespace checking is disabled. `dict- -# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}. -# `trailing-comma` allows a space between comma and closing bracket: (a, ). -# `empty-line` allows space-only lines. -no-space-check=trailing-comma, - dict-separator - -# Allow the body of a class to be on the same line as the declaration if body -# contains single statement. -single-line-class-stmt=no - -# Allow the body of an if to be on the same line as the test if there is no -# else. -single-line-if-stmt=no - - -[LOGGING] - -# Logging modules to check that the string format arguments are in logging -# function parameter format. -logging-modules=logging - - -[MISCELLANEOUS] - -# List of note tags to take in consideration, separated by a comma. -notes=FIXME, - XXX, - TODO - - -[SIMILARITIES] - -# Ignore comments when computing similarities. -ignore-comments=yes - -# Ignore docstrings when computing similarities. -ignore-docstrings=yes - -# Ignore imports when computing similarities. -ignore-imports=no - -# Minimum lines number of a similarity. -min-similarity-lines=4 - - -[SPELLING] - -# Limits count of emitted suggestions for spelling mistakes. -max-spelling-suggestions=4 - -# Spelling dictionary name. Available dictionaries: none. To make it working -# install python-enchant package.. -spelling-dict= - -# List of comma separated words that should not be checked. -spelling-ignore-words= - -# A path to a file that contains private dictionary; one word per line. -spelling-private-dict-file= - -# Tells whether to store unknown words to indicated private dictionary in -# --spelling-private-dict-file option instead of raising a message. -spelling-store-unknown-words=no - - [TYPECHECK] -# List of decorators that produce context managers, such as -# contextlib.contextmanager. Add to this list to register other decorators that -# produce valid context managers. -contextmanager-decorators=contextlib.contextmanager - -# List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E1101 when accessed. Python regular -# expressions are accepted. -generated-members= - -# Tells whether missing members accessed in mixin class should be ignored. A -# mixin class is detected if its name ends with "mixin" (case insensitive). -ignore-mixin-members=yes - -# Tells whether to warn about missing members when the owner of the attribute -# is inferred to be None. -ignore-none=yes - -# This flag controls whether pylint should warn about no-member and similar -# checks whenever an opaque object is returned when inferring. The inference -# can return multiple potential results while evaluating a Python object, but -# some branches might not be evaluated, which results in partial inference. In -# that case, it might be useful to still emit no-member and other checks for -# the rest of the inferred objects. -ignore-on-opaque-inference=yes - # List of class names for which member attributes should not be checked (useful # for classes with dynamically set attributes). This supports the use of # qualified names. ignored-classes=optparse.Values,thread._local,_thread._local,SearchResponse - -# List of module names for which member attributes should not be checked -# (useful for modules/projects where namespaces are manipulated during runtime -# and thus existing member attributes cannot be deduced by static analysis. It -# supports qualified module names, as well as Unix pattern matching. -ignored-modules= - -# Show a hint with possible names when a member name was not found. The aspect -# of finding the hint is based on edit distance. -missing-member-hint=yes - -# The minimum edit distance a name should have in order to be considered a -# similar match for a missing member name. -missing-member-hint-distance=1 - -# The total number of similar names that should be taken in consideration when -# showing a hint for a missing member. -missing-member-max-choices=1 - - -[VARIABLES] - -# List of additional names supposed to be defined in builtins. Remember that -# you should avoid to define new builtins when possible. -additional-builtins= - -# Tells whether unused global variables should be treated as a violation. -allow-global-unused-variables=yes - -# List of strings which can identify a callback function by name. A callback -# name must start or end with one of those strings. -callbacks=cb_, - _cb - -# A regular expression matching the name of dummy variables (i.e. expected to -# not be used). -dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ - -# Argument names that match this expression will be ignored. Default to name -# with leading underscore. -ignored-argument-names=_.*|^ignored_|^unused_ - -# Tells whether we should check for unused import in __init__ files. -init-import=no - -# List of qualified module names which can have objects that can redefine -# builtins. -redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io - - -[CLASSES] - -# List of method names used to declare (i.e. assign) instance attributes. -defining-attr-methods=__init__, - __new__, - setUp - -# List of member names, which should be excluded from the protected access -# warning. -exclude-protected=_asdict, - _fields, - _replace, - _source, - _make - -# List of valid names for the first argument in a class method. -valid-classmethod-first-arg=cls - -# List of valid names for the first argument in a metaclass class method. -valid-metaclass-classmethod-first-arg=cls - - -[DESIGN] - -# Maximum number of arguments for function / method. -max-args=5 - -# Maximum number of attributes for a class (see R0902). -max-attributes=7 - -# Maximum number of boolean expressions in an if statement. -max-bool-expr=5 - -# Maximum number of branch for function / method body. -max-branches=12 - -# Maximum number of locals for function / method body. -max-locals=15 - -# Maximum number of parents for a class (see R0901). -max-parents=7 - -# Maximum number of public methods for a class (see R0904). -max-public-methods=20 - -# Maximum number of return / yield for function / method body. -max-returns=6 - -# Maximum number of statements in function / method body. -max-statements=50 - -# Minimum number of public methods for a class (see R0903). -min-public-methods=2 - - -[IMPORTS] - -# Allow wildcard imports from modules that define __all__. -allow-wildcard-with-all=no - -# Analyse import fallback blocks. This can be used to support both Python 2 and -# 3 compatible code, which means that the block might have code that exists -# only in one or another interpreter, leading to false positives when analysed. -analyse-fallback-blocks=no - -# Deprecated modules which should not be used, separated by a comma. -deprecated-modules=optparse,tkinter.tix - -# Create a graph of external dependencies in the given file (report RP0402 must -# not be disabled). -ext-import-graph= - -# Create a graph of every (i.e. internal and external) dependencies in the -# given file (report RP0402 must not be disabled). -import-graph= - -# Create a graph of internal dependencies in the given file (report RP0402 must -# not be disabled). -int-import-graph= - -# Force import order to recognize a module as part of the standard -# compatibility libraries. -known-standard-library= - -# Force import order to recognize a module as part of a third party library. -known-third-party=enchant - - -[EXCEPTIONS] - -# Exceptions that will emit a warning when being caught. Defaults to -# "Exception". -overgeneral-exceptions=Exception diff --git a/.vscode/settings.json b/.vscode/settings.json index 39389c0cd59f4919fc29ffd38a114b8621549681..2e0fbef93ec366f710dbc282b9851fd2c36f24ea 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -106,7 +106,9 @@ }, "files.exclude": { "\"**/*.pyc\": {\"when\": \"$(basename).py\"}": true, - "**/__pycache__": true + "**/__pycache__": true, + "**/node_modules": true + }, "eslint.workingDirectories": [ { diff --git a/Dockerfile b/Dockerfile index 9d710cd88e894d2131b2e8a5f2855f697f1e1ba2..8d17d9981bdb1c2298733afd1ea11086962a229e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,128 +23,195 @@ # The dockerfile is multistaged to use a fat, more convinient build image and # copy only necessities to a slim final image -# We use slim for the final image -FROM python:3.7-slim as final -# Build all python stuff in a python build image -FROM python:3.7-stretch as build -RUN mkdir /install - -# Install linux package dependencies -RUN apt-get update -RUN apt-get install -y --no-install-recommends libgomp1 -RUN apt-get install -y libmagic-dev curl make cmake swig libnetcdf-dev zip - -# Install some specific dependencies necessary for the build process -RUN pip install --upgrade pip -RUN pip install fastentrypoints -RUN pip install pyyaml -RUN pip install numpy - -# Install some specific dependencies to make use of docker layer caching -RUN pip install cython>=0.19 -RUN pip install pandas -RUN pip install h5py -RUN pip install hjson -RUN pip install scipy -RUN pip install scikit-learn -RUN pip install ase==3.19.0 -RUN pip install Pint -RUN pip install matid -RUN pip install mdtraj -RUN pip install mdanalysis - -# Make will be necessary to build the docs with sphynx -RUN apt-get update && apt-get install -y make -RUN apt-get update && apt-get install -y vim - -# Install pymolfile (required by some parsers) -RUN git clone -b nomad-fair https://gitlab.mpcdf.mpg.de/nomad-lab/pymolfile.git -WORKDIR /pymolfile/ -RUN python3 setup.py install -RUN rm -rf /pymolfile - -# Copy files and install nomad@FAIRDI -WORKDIR /install -COPY . /install -RUN python setup.py compile -RUN pip install .[all] -RUN ./generate_gui_artifacts.sh -RUN ./generate_docs_artifacts.sh -RUN mkdocs build && mv site docs/build -RUN \ - find /usr/local/lib/python3.7/ -name 'tests' ! -path '*/networkx/*' -exec rm -r '{}' + && \ - find /usr/local/lib/python3.7/ -name 'test' -exec rm -r '{}' + && \ - find /usr/local/lib/python3.7/site-packages/ -name '*.so' -print -exec sh -c 'file "{}" | grep -q "not stripped" | grep -v h5py && strip -s "{}"' \; +FROM node:16.15 AS base_node +FROM python:3.7-slim AS base_python +# ================================================================================ # Built the GUI in the gui build image -FROM node:16.15 as gui_build -RUN mkdir -p /app -WORKDIR /app +# ================================================================================ + +FROM base_node AS dev_node + +WORKDIR /app/gui + ENV PATH /app/node_modules/.bin:$PATH -COPY gui/package.json /app/package.json -COPY gui/yarn.lock /app/yarn.lock -COPY gui/materia /app/materia -COPY gui/crystcif-parse /app/crystcif-parse +ENV NODE_OPTIONS "--max_old_space_size=3072" + +# Fetch and cache all (but only) the dependencies +COPY gui/yarn.lock gui/package.json ./ +COPY gui/materia ./materia +COPY gui/crystcif-parse ./crystcif-parse + RUN yarn --network-timeout 1200000 -COPY gui /app -COPY --from=build /install/gui/src/metainfo.json /app/src/metainfo.json -COPY --from=build /install/gui/src/searchQuantities.json /app/src/searchQuantities.json -COPY --from=build /install/gui/src/parserMetadata.json /app/src/parserMetadata.json -COPY --from=build /install/gui/src/toolkitMetadata.json /app/src/toolkitMetadata.json -COPY --from=build /install/gui/src/exampleUploads.json /app/src/exampleUploads.json -COPY --from=build /install/gui/src/unitsData.js /app/src/unitsData.js -COPY --from=build /install/gui/src/northTools.json /app/src/northTools.json + +# Artifact for running the tests +COPY tests/states/archives/dft.json /app/tests/states/archives/dft.json + +# Copy and build the appticaion itself +COPY gui . + RUN yarn run build -# Third, create a slim final image -FROM final -RUN apt-get update \ - && apt-get install -y --no-install-recommends libgomp1 \ - && apt-get install -y libmagic-dev curl vim zip unzip +# ================================================================================ +# Build all python stuff in a python build image +# ================================================================================ -# Install the proxy used by north -RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \ - && apt-get install -y nodejs \ - && npm install -g configurable-http-proxy +FROM base_python AS dev_python + +# Linux applications and libraries +RUN apt-get update \ + && apt-get install --yes --quiet --no-install-recommends \ + libgomp1 \ + libmagic-dev \ + curl \ + gcc \ + build-essential \ + make \ + cmake \ + swig \ + libnetcdf-dev \ + zip \ + vim \ + git \ + && rm -rf /var/lib/apt/lists/* -# copy the sources for tests, coverage, qa, etc. -COPY . /app WORKDIR /app -# transfer installed packages from dependency stage -COPY --from=build /usr/local/lib/python3.7/site-packages /usr/local/lib/python3.7/site-packages -# copy shared jupyterhub files -COPY --from=build /usr/local/share/jupyterhub /usr/local/share/jupyterhub -# copy the documentation, its files will be served by the API -COPY --from=build /install/docs/build /app/docs/build -# copy the nomad command -COPY --from=build /usr/local/bin/nomad /usr/bin/nomad -# copy the gui -RUN mkdir -p /app/gui -COPY --from=gui_build /app/build /app/nomad/app/static/gui -# remove the developer config on the gui, will be generated by run.sh from nomad.yaml -RUN rm -f /app/nomad/app/static/gui/env.js -# build the python package dist -RUN python setup.py compile -RUN python setup.py sdist -RUN cp dist/nomad-lab-*.tar.gz dist/nomad-lab.tar.gz + +ENV PIP_NO_CACHE_DIR=1 + +# Python environment +COPY requirements-dev.txt . + +RUN pip install build \ + && pip install --progress-bar off --prefer-binary -r requirements-dev.txt + +COPY dependencies ./dependencies +COPY docs ./docs +COPY examples ./examples +COPY nomad ./nomad +COPY scripts ./scripts +COPY tests ./tests +COPY MANIFEST.in \ + mkdocs.yml \ + .pylintrc \ + pycodestyle.ini \ + pyproject.toml \ + pytest.ini \ + README.md \ + LICENSE \ + requirements.txt \ + setup.py \ + ./ + +# Files requiered for artifact generation/testing +COPY ops/docker-compose ./ops/docker-compose +COPY gui/src/metainfo.json ./gui/src/metainfo.json +COPY gui/src/searchQuantities.json ./gui/src/searchQuantities.json +COPY gui/src/toolkitMetadata.json ./gui/src/toolkitMetadata.json +COPY gui/src/unitsData.js ./gui/src/unitsData.js +COPY gui/src/parserMetadata.json ./gui/src/parserMetadata.json +COPY gui/public/env.js ./gui/public/env.js +COPY dependencies/nomad-remote-tools-hub/tools.json ./dependencies/nomad-remote-tools-hub/tools.json +COPY gui/src/northTools.json ./gui/src/northTools.json +COPY gui/src/exampleUploads.json ./gui/src/exampleUploads.json # build the example upload files -WORKDIR /app/examples/data -RUN ./generate_example_uploads.sh +RUN ./scripts/generate_example_uploads.sh + +# Copy the built gui code +COPY --from=dev_node /app/gui/build nomad/app/static/gui +RUN rm nomad/app/static/gui/env.js + +# Build documentation +RUN --mount=source=.git,target=.git,type=bind pip install ".[parsing,infrastructure,dev]" + +RUN mkdocs build \ + && mkdir -p nomad/app/static/docs \ + && cp -r site/* nomad/app/static/docs/ + +# Build the python source distribution package +RUN --mount=source=.git,target=.git,type=bind python -m build + +# (Re)install the full packages docs included +RUN pip install dist/nomad-lab-*.tar.gz + + +# ================================================================================ +# We use slim for the final image +# ================================================================================ + +FROM base_python AS builder + +RUN apt-get update \ + && apt-get install --yes --quiet --no-install-recommends \ + libgomp1 \ + libmagic1 \ + file \ + gcc \ + build-essential \ + curl \ + zip \ + unzip \ + && rm -rf /var/lib/apt/lists/* + WORKDIR /app -RUN mkdir -p /app/.volumes/fs -RUN useradd -ms /bin/bash nomad -RUN chown -R nomad /app -RUN chmod a+rx run.sh -RUN chmod a+wrx /app +ENV PIP_NO_CACHE_DIR=1 + +# Python environment +COPY requirements.txt . + +RUN pip install --progress-bar off --prefer-binary -r requirements.txt + +# install +COPY --from=dev_python /app/dist/nomad-lab-*.tar.gz . +RUN pip install nomad-lab-*.tar.gz + +# Reduce the size of the packages +RUN find /usr/local/lib/python3.7/ -type d -name 'tests' ! -path '*/networkx/*' -exec rm -r '{}' + \ + && find /usr/local/lib/python3.7/ -type d -name 'test' -exec rm -r '{}' + \ + && find /usr/local/lib/python3.7/site-packages/ -name '*.so' ! -path '*/h5py/*' -print -exec sh -c 'file "{}" | grep -q "not stripped" && strip -s "{}"' \; + + +# ================================================================================ +# We use slim for the final image +# ================================================================================ + +FROM base_python AS final + +RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \ + && apt-get update \ + && apt-get install --yes --quiet --no-install-recommends \ + nodejs \ + npm \ + libgomp1 \ + libmagic1 \ + curl \ + zip \ + unzip \ + && rm -rf /var/lib/apt/lists/* \ + && npm install -g configurable-http-proxy \ + && npm uninstall -g npm + +WORKDIR /app + +RUN useradd -ms /bin/bash nomad \ + && mkdir -p /app/.volumes/fs \ + && chown -R nomad /app + USER nomad -VOLUME /app/.volumes/fs +# transfer installed packages from the build stage +COPY --chown=nomad scripts/run.sh . +COPY --chown=nomad --from=dev_python /app/examples/data/uploads /app/examples/data/uploads +COPY --chown=nomad --from=builder /usr/local/lib/python3.7/site-packages /usr/local/lib/python3.7/site-packages +COPY --chown=nomad --from=builder /usr/local/share/jupyterhub /usr/local/share/jupyterhub +COPY --chown=nomad --from=builder /usr/local/bin/nomad /usr/local/bin/nomad -# The app default port +# The application ports EXPOSE 8000 -# The north default port EXPOSE 9000 + +VOLUME /app/.volumes/fs diff --git a/MANIFEST.in b/MANIFEST.in index fe15e110b79a7b3e7e4c51e35750ebe64b8f8dde..ac20b5cb0cd3994e9ed77d9470220b5edbff352a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,15 +1,18 @@ -recursive-include dependencies/optimade-python-tools *.txt *.g *.py *.ini *.json -recursive-include nomad *.json *.j2 *.md *.yaml -include nomad/units/*.txt -include README.md -include LICENSE.txt -include requirements.txt -include auto_complete_install.sh -include setup.json -recursive-include nomad/app/static/gui/ *.css *.ico *.html *.json *.js *.map *.txt *.svg *.png -recursive-include docs/build/ *.css *.ico *.html *.json *.js *.map *.txt *.svg *.png -recursive-include dependencies/parsers/ metadata.yaml -recursive-include dependencies/parsers/nexus/nexusparser/definitions/base_classes/ *.xml -recursive-include dependencies/parsers/nexus/nexusparser/definitions/applications/ *.xml -recursive-include dependencies/parsers/nexus/nexusparser/definitions/contributed_definitions/ *.xml -include dependencies/parsers/nexus/nexusparser/definitions/ *.xsd +prune * +exclude * + +include pyproject.toml setup.py AUTHORS LICENSE README.md README.parsers.md requirements.txt requirements-dev.txt + +recursive-include nomad *.py *.json *.j2 *.md *.txt metadata.yaml +graft nomad/app/static +recursive-exclude nomad/app/static *.map + +recursive-include dependencies/matid/matid *.py +recursive-include dependencies/nomad-dos-fingerprints/nomad_dos_fingerprints *.py +recursive-include dependencies/parsers/atomistic/atomisticparsers *.py README.md metadata.yaml +recursive-include dependencies/parsers/database/databaseparsers *.py README.md metadata.yaml +recursive-include dependencies/parsers/eelsdb/eelsdbparser *.py README.md metadata.yaml +recursive-include dependencies/parsers/electronic/electronicparsers *.py README.md metadata.yaml +recursive-include dependencies/parsers/nexus/nexusparser *.py README.md metadata.yaml +recursive-include dependencies/parsers/nexus/nexusparser/definitions *.xml *.xsd +recursive-include dependencies/parsers/workflow/workflowparsers *.py README.md metadata.yaml \ No newline at end of file diff --git a/dependencies-git.sh b/dependencies-git.sh deleted file mode 100755 index 795ae5f183250250af12cc00d78ca5c64d457938..0000000000000000000000000000000000000000 --- a/dependencies-git.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -set -e -working_dir=`pwd` -echo $working_dir - -git config -f .gitmodules --get-regexp '^submodule\..*\.path$' | - while read path_key path - do - cd $working_dir - cd $path - if [ -z "$(git status --porcelain)" ]; then - echo "$path is clean" - else - echo "$path is not clean" - git stash - git checkout nomad-fair-metainfo - git stash apply - git add -A - git commit -a -m "$1" - git push origin nomad-fair-metainfo - fi - done diff --git a/dependencies.sh b/dependencies.sh deleted file mode 100755 index f1a49b26cded6b99340c918690ae5f5b320e207a..0000000000000000000000000000000000000000 --- a/dependencies.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -set -e - -git config -f .gitmodules --get-regexp '^submodule\..*\.path$' | - while read path_key path - do - (echo "$path" | grep -vEq '^dependencies/(nexus_definitions|optimade-python-tools|matid)$') \ - && [ -f $path/requirements.txt ] && pip install -r $path/requirements.txt - [ -f $path/setup.py ] && pip install --ignore-requires-python $1 $path - echo $path - done diff --git a/dependencies/matid b/dependencies/matid index 0708b903d9c8468d02f730681f75ff0085cfcb62..c97f2859492265a46651fc0ca9f908db30b40911 160000 --- a/dependencies/matid +++ b/dependencies/matid @@ -1 +1 @@ -Subproject commit 0708b903d9c8468d02f730681f75ff0085cfcb62 +Subproject commit c97f2859492265a46651fc0ca9f908db30b40911 diff --git a/dependencies/nomad-dos-fingerprints b/dependencies/nomad-dos-fingerprints index 6e8720a1c02cb553adfaeb5b0d81b5037dbd8054..ea5c3bb2fd78b3aa4c2d726f0345b2f2a19c9d9b 160000 --- a/dependencies/nomad-dos-fingerprints +++ b/dependencies/nomad-dos-fingerprints @@ -1 +1 @@ -Subproject commit 6e8720a1c02cb553adfaeb5b0d81b5037dbd8054 +Subproject commit ea5c3bb2fd78b3aa4c2d726f0345b2f2a19c9d9b diff --git a/dependencies/nomad-remote-tools-hub b/dependencies/nomad-remote-tools-hub index df6aa87b2dc54dc1626e653a0b18f255c6f17561..ee3bd1d377515e51fd0c37fe03327f6bba544c29 160000 --- a/dependencies/nomad-remote-tools-hub +++ b/dependencies/nomad-remote-tools-hub @@ -1 +1 @@ -Subproject commit df6aa87b2dc54dc1626e653a0b18f255c6f17561 +Subproject commit ee3bd1d377515e51fd0c37fe03327f6bba544c29 diff --git a/dependencies/parsers/atomistic b/dependencies/parsers/atomistic index f16102f2ba41bec50647f4e7b73cf29ebf5a0880..007caadf38bac8a0d18e522c7f8ba4f0e5bfca21 160000 --- a/dependencies/parsers/atomistic +++ b/dependencies/parsers/atomistic @@ -1 +1 @@ -Subproject commit f16102f2ba41bec50647f4e7b73cf29ebf5a0880 +Subproject commit 007caadf38bac8a0d18e522c7f8ba4f0e5bfca21 diff --git a/dependencies/parsers/database b/dependencies/parsers/database index 4104c54f131818526164f412616bd280028d0cff..5121a15bf565b837783c64e7db01488adb0e4d6b 160000 --- a/dependencies/parsers/database +++ b/dependencies/parsers/database @@ -1 +1 @@ -Subproject commit 4104c54f131818526164f412616bd280028d0cff +Subproject commit 5121a15bf565b837783c64e7db01488adb0e4d6b diff --git a/dependencies/parsers/eelsdb b/dependencies/parsers/eelsdb index 007ddd3bf4884a09bead33114dda5167b8b51f96..47d42e4d6818d0333460ce1ff9649c739a128d71 160000 --- a/dependencies/parsers/eelsdb +++ b/dependencies/parsers/eelsdb @@ -1 +1 @@ -Subproject commit 007ddd3bf4884a09bead33114dda5167b8b51f96 +Subproject commit 47d42e4d6818d0333460ce1ff9649c739a128d71 diff --git a/dependencies/parsers/electronic b/dependencies/parsers/electronic index d0ac12d290459fe7e370eea5fc6a8f8867c28732..74134f826a4508220424c52fc8bcbc8c392630d4 160000 --- a/dependencies/parsers/electronic +++ b/dependencies/parsers/electronic @@ -1 +1 @@ -Subproject commit d0ac12d290459fe7e370eea5fc6a8f8867c28732 +Subproject commit 74134f826a4508220424c52fc8bcbc8c392630d4 diff --git a/dependencies/parsers/example b/dependencies/parsers/example deleted file mode 160000 index 8d8b58027e9ab4e61077b94d19e74bc0645419a3..0000000000000000000000000000000000000000 --- a/dependencies/parsers/example +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8d8b58027e9ab4e61077b94d19e74bc0645419a3 diff --git a/dependencies/parsers/nexus b/dependencies/parsers/nexus index 4a01429f1b8a3e23e93af85de03f63bd024c0bb0..c31c4252304fc5632f5103ab4a7393a101f3390c 160000 --- a/dependencies/parsers/nexus +++ b/dependencies/parsers/nexus @@ -1 +1 @@ -Subproject commit 4a01429f1b8a3e23e93af85de03f63bd024c0bb0 +Subproject commit c31c4252304fc5632f5103ab4a7393a101f3390c diff --git a/dependencies/parsers/workflow b/dependencies/parsers/workflow index d954ba54d7812d0fab3037f656d409eb39e16217..73f6b752b1b56b22d3b54e9d236d7b8d174cb424 160000 --- a/dependencies/parsers/workflow +++ b/dependencies/parsers/workflow @@ -1 +1 @@ -Subproject commit d954ba54d7812d0fab3037f656d409eb39e16217 +Subproject commit 73f6b752b1b56b22d3b54e9d236d7b8d174cb424 diff --git a/docs/develop/setup.md b/docs/develop/setup.md index 5e214a3a8f2448201c84c04c1972632df897a81f..032475fe3343f71565aadd3cd7cabbe20d26bec7 100644 --- a/docs/develop/setup.md +++ b/docs/develop/setup.md @@ -42,6 +42,16 @@ git checkout -b <my-branch-name> ``` This branch can be pushed to the repo, and then later may be merged to the relevant branch. +### Install sub-modules + +Nomad is based on python modules from the NOMAD-coe project. +This includes parsers, python-common and the meta-info. These modules are maintained as +their own GITLab/git repositories. To clone and initialize them run: + +```sh +git submodule update --init +``` + ## Installation ### Setup a Python environment @@ -82,19 +92,17 @@ To install libmagick for conda, you can use (other channels might also work): conda install -c conda-forge --name nomad_env libmagic ``` -The following command can be used to install all dependencies and the submodules of the NOMAD-coe project. -``` -bash setup.sh -``` - -The script includes the following steps: - -### Upgrade pip +#### Upgrade pip Make sure you have the most recent version of pip: ```sh pip install --upgrade pip ``` +The following command can be used to install all dependencies and the submodules of the NOMAD-coe project. +``` +./scripts/setup_dev_env.sh +``` + ### Install missing system libraries (e.g. on MacOS) @@ -112,55 +120,38 @@ Finally, you can add nomad to the environment itself (including all extras). The `-e` option will install the NOMAD with symbolic links allowing you to change the code without having to reinstall after each change. ```sh -pip install -e .[all] +pip install -e .[infrastructure,parsing,dev] ``` If pip tries to use and compile sources and this creates errors, it can be told to prefer binary version: ```sh -pip install -e .[all] --prefer-binary -``` - -### Install sub-modules -Nomad is based on python modules from the NOMAD-coe project. -This includes parsers, python-common and the meta-info. These modules are maintained as -their own GITLab/git repositories. To clone and initialize them run: - -```sh -git submodule update --init -``` - -All requirements for these submodules need to be installed and they themselves need to be installed -as python modules. Run the `dependencies.sh` script that will install -everything into your virtual environment: -```sh -./dependencies.sh -e +pip install -e .[infrastructure,parsing,dev] --prefer-binary ``` -If one of the Python packages, that are installed during this process, fail because it -cannot be compiled on your platform, you can try `pip install --prefer-binary <packagename>` -to install set packages manually. -The `-e` option will install the NOMAD-coe dependencies with symbolic links allowing you -to change the downloaded dependency code without having to reinstall after. +### Update GUI artifacts -### Generate GUI artifacts The NOMAD GUI requires static artifacts that are generated from the NOMAD Python codes. ```sh -nomad.cli dev metainfo > gui/src/metainfo.json -nomad.cli dev search-quantities > gui/src/searchQuantities.json -nomad.cli dev toolkit-metadata > gui/src/toolkitMetadata.json -nomad.cli dev units > gui/src/unitsData.js -nomad.cli dev parser-metadata > gui/src/parserMetadata.json +python -m nomad.cli dev metainfo >gui/src/metainfo.json +python -m nomad.cli dev search-quantities >gui/src/searchQuantities.json +python -m nomad.cli dev toolkit-metadata >gui/src/toolkitMetadata.json +python -m nomad.cli dev units >gui/src/unitsData.js +python -m nomad.cli dev parser-metadata >gui/src/parserMetadata.json +python -m nomad.cli dev gui-config >gui/public/env.js +cp dependencies/nomad-remote-tools-hub/tools.json gui/src/northTools.json +python -m nomad.cli dev example-upload-metadata >gui/src/exampleUploads.json ``` Or simply run ```sh -./generate_gui_artifacts.sh +./scripts/screipugenerate_gui_artifacts.sh ``` -The generated files are not stored in GIT. If you pull a different commit, the GUI code -might not match the expected data in outdated files. If there are changes to units, metainfo, new parsers, new toolkits it might be necessary to regenerate these gui artifacts. +The generated files are stored in GIT. The GUI code might not match the expected data in +outdated files. If there are changes to units, metainfo, new parsers, new toolkits it +might be necessary to regenerate these gui artifacts. In addition, you have to do some more steps to prepare your working copy to run all the tests. See below. @@ -327,10 +318,8 @@ of the code base. You have to provide static files to serve the docs and NOMAD distribution: ```sh -rm -rf docs/build && mkdocs build && mv site docs/build -python setup.py compile -python setup.py sdist -cp dist/nomad-lab-*.tar.gz dist/nomad-lab.tar.gz +./scripts/generate_docs_artifacts.sh +rm -rf site && mkdocs build && mv site nomad/app/static/docs ``` You need to have the infrastructure partially running: elastic, rabbitmq. diff --git a/docs/pythonlib.md b/docs/pythonlib.md index 12acecd7553bc9029ed04a095ce1428dd44381fb..d92994f5317f01a99c8463336dd9aa482ab87719 100644 --- a/docs/pythonlib.md +++ b/docs/pythonlib.md @@ -35,7 +35,6 @@ You can use the [extra] notation to install these extra requirements: pip install nomad-lab[parsing] pip install nomad-lab[infrastructure] pip install nomad-lab[dev] -pip install nomad-lab[all] ``` The various extras have the following meaning: @@ -44,5 +43,4 @@ The various extras have the following meaning: - *infrastructure*, everything to run NOMAD services - *dev*, additional tools that are necessary to develop NOMAD - -- *all*, all of the above + diff --git a/examples/data/uploads/.gitignore b/examples/data/uploads/.gitignore deleted file mode 100644 index d77864a99cbb760a5fb58bea4af81f943d289b00..0000000000000000000000000000000000000000 --- a/examples/data/uploads/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.zip - diff --git a/generate_docs_artifacts.sh b/generate_docs_artifacts.sh deleted file mode 100755 index a211f28acb6e38833936a62b2bb5321da31938a0..0000000000000000000000000000000000000000 --- a/generate_docs_artifacts.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -rm -rf docs/assets/nomad-oasis* -cd ops/docker-compose -zip -r ../../docs/assets/nomad-oasis.zip nomad-oasis -x "**/.gitignore" -zip -r ../../docs/assets/nomad-oasis-with-keycloak.zip nomad-oasis-with-keycloak -x "**/.gitignore" -cd ../.. \ No newline at end of file diff --git a/generate_gui_artifacts.sh b/generate_gui_artifacts.sh deleted file mode 100755 index 752464425a362dfe9e43e2054a83506728a1e14c..0000000000000000000000000000000000000000 --- a/generate_gui_artifacts.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -python -m nomad.cli dev gui-artifacts --output-directory gui/src -python -m nomad.cli dev gui-config > gui/public/env.js diff --git a/gitinfo.sh b/gitinfo.sh deleted file mode 100755 index f415ef46e6d18afc91db0d092b46c515e92401f1..0000000000000000000000000000000000000000 --- a/gitinfo.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -# python/backend -log=`git log -1 --oneline | sed -e "s/\"/'/g"` -echo log, ref, version, commit = \"$log\", \"$(git describe --all)\", \"$(git describe --tags)\", \"$(git rev-parse --verify --short HEAD)\" > nomad/gitinfo.py - -# gui -commit=`git rev-parse --short --verify HEAD` -sed -i -e "s/nomad-gui-commit-placeholder/$commit/g" gui/package.json -rm -f gui/package.json-e \ No newline at end of file diff --git a/gui/.gitignore b/gui/.gitignore deleted file mode 100644 index dfa47e48416cf605a28eb39000507437496a74e9..0000000000000000000000000000000000000000 --- a/gui/.gitignore +++ /dev/null @@ -1,25 +0,0 @@ -# See https://help.github.com/ignore-files/ for more about ignoring files. - -# dependencies -/node_modules - -# testing -/coverage - -# production -/build - -# generated -public/metainfo/ -public/meta.json - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* diff --git a/gui/materia b/gui/materia index 6b008509b5183dd433965adb1ceb01d18967fed9..41a47b4f023a19379f67472906227b981d786b82 160000 --- a/gui/materia +++ b/gui/materia @@ -1 +1 @@ -Subproject commit 6b008509b5183dd433965adb1ceb01d18967fed9 +Subproject commit 41a47b4f023a19379f67472906227b981d786b82 diff --git a/gui/package.json b/gui/package.json index 6830c9d2b0934f8d00092f7dd3c4c80bbd274409..1e65778742be5726ac694b749edd2208e607cbdf 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,7 +1,5 @@ { "name": "nomad-fair-gui", - "version": "1.1.5", - "commit": "e98694e", "private": true, "workspaces": [ "materia", diff --git a/gui/public/env.js b/gui/public/env.js index a8a34214e1e42486a1de003bef9cedc68c5a7b40..0af6ff55201fb3d650c109663ad77195ebf1a402 100644 --- a/gui/public/env.js +++ b/gui/public/env.js @@ -2,7 +2,7 @@ window.nomadEnv = { 'appBase': 'http://localhost:8000/fairdi/nomad/latest', 'northBase': 'http://localhost:9000/fairdi/nomad/latest/north', 'keycloakBase': 'https://nomad-lab.eu/fairdi/keycloak/auth/', - 'keycloakRealm': 'fairdi_nomad_test', + 'keycloakRealm': 'fairdi_nomad_prod', 'keycloakClientId': 'nomad_public', 'debug': false, 'encyclopediaBase': 'https://nomad-lab.eu/prod/rae/encyclopedia/#', diff --git a/gui/src/components/About.js b/gui/src/components/About.js index 42538fa3f145770a45f4c084f13f04ee6b3f6f43..3d4a87ff9d56c0bbc439e41215c4f85445416446 100644 --- a/gui/src/components/About.js +++ b/gui/src/components/About.js @@ -21,7 +21,6 @@ import PropTypes from 'prop-types' import Markdown from './Markdown' import { isNil } from 'lodash' import { appBase, debug, aitoolkitEnabled, encyclopediaBase } from '../config' -import packageJson from '../../package.json' import { Button, Card, @@ -421,10 +420,7 @@ export default function About() { ` : ''} ### About this version - - version (API): \`${info ? info.version : 'loading'}/${info ? info.git.commit : 'loading'}\` - - version (GUI): \`${packageJson.version}/${packageJson.commit}\` - - git: \`${info ? info.git.ref : 'loading'}; ${info ? info.git.version : 'loading'}\` - - last commit message: *${info ? info.git.log : 'loading'}* + - version: \`${info ? info.version : 'loading'}\` - parsers: ${info ? info.parsers.join(', ') : 'loading'} - normalizers: ${info ? info.normalizers.join(', ') : 'loading'} `}</Markdown> diff --git a/gui/src/components/conftest.spec.js b/gui/src/components/conftest.spec.js index 236e94d8b1bd0272a7d4319f7883c02b08ceb45f..35637c3bda58a1a0bb71a34192bd7324d7528af7 100644 --- a/gui/src/components/conftest.spec.js +++ b/gui/src/components/conftest.spec.js @@ -325,7 +325,7 @@ let filepath const responseCapture = {} const readMode = process.env.READ_MODE || 'snapshot' const writeMode = process.env.WRITE_MODE || 'none' -const configPath = 'nomad-test.yaml' +const configPath = 'gui/tests/nomad-test.yaml' if (!fs.existsSync(`../${configPath}`)) { throw Error(` Could not find the NOMAD config file for testing at ../${configPath}. Note diff --git a/gui/src/exampleUploads.json b/gui/src/exampleUploads.json new file mode 100644 index 0000000000000000000000000000000000000000..2ebb820e436b1c511bd4b814844843292ed17fe3 --- /dev/null +++ b/gui/src/exampleUploads.json @@ -0,0 +1,17 @@ +{ + "theory": { + "path": "examples/data/uploads/theory.zip", + "title": "Electronic structure code input and output files", + "description": "This upload demonstrate the basic use of NOMAD's *parsers*. For many *electronic\nstructure codes* (VASP, etc.), NOMAD provides parsers. You simply upload\nthe *input and output files* of your simulations and NOMAD parsers are extracting\nall necessary metadata to produce a **FAIR** dataset.\n" + }, + "eln": { + "path": "examples/data/uploads/eln.zip", + "title": "Electronic Lab Notebook", + "description": "This example contains a custom NOMAD *schema* to create an **Electronic\nLab Notebook (ELN)** and a few example *data* entries that use this schema.\nThe schema demonstrates the basic concepts behind a NOMAD ELN and can be a good\n**starting point** to create you own schemas that model **FAIR data** acquired in your lab.\n" + }, + "tables": { + "path": "examples/data/uploads/tabular.zip", + "title": "Tabular Data", + "description": "This upload demonstrates the used of tabular data. In this example we use an *xlsx*\nfile in combination with a custom schema. The schema describes what the columns\nin the excel file mean and NOMAD can parse everything accordingly to\nproduce a **FAIR** dataset.\n" + } +} diff --git a/gui/src/metainfo.json b/gui/src/metainfo.json new file mode 100644 index 0000000000000000000000000000000000000000..425a84d3a17fdb2609acbb12863fb32c99184164 --- /dev/null +++ b/gui/src/metainfo.json @@ -0,0 +1,343055 @@ +{ + "m_def": "nomad.metainfo.metainfo.Environment", + "packages": [ + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 0, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.simulation.method", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "KMesh", + "description": "Section containing the values for", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_points", + "description": "Number of k points in the mesh (i.e. the k points used to evaluate energy_total).", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "generation_method", + "description": "Method used to generate the k points.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "density", + "description": "Density of k points.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "1 / meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "points", + "description": "List of all the k points in the $k$-point mesh. These are the k point used to\nevaluate energy_total, and are in fractional coordinates (in the basis of the\nreciprocal-lattice vectors).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_points", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "weights", + "description": "Weights of all the k points in the $k$-point mesh. These are the weights for\nk_mesh_points (i.e. the k point used to evaluate energy_total).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_points" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Scf", + "description": "Section containing the parameters related to self consistency.", + "extending_sections": [ + "/packages/26/section_definitions/7", + "/packages/44/section_definitions/2" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_max_iteration", + "description": "Specifies the maximum number of allowed self-consistent field (SCF) iterations in\na calculation.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.scf_threshold_energy_change" + ] + }, + "name": "threshold_energy_change", + "description": "Specifies the threshold for the total energy change between two subsequent\nself-consistent field (SCF) iterations. The SCF is considered converged when the\ntotal-energy change between two SCF cycles is below the threshold (possibly in\ncombination with other criteria).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "threshold_density_change", + "description": "Specifies the threshold for the average charge density change between two\nsubsequent self-consistent field (SCF) iterations. The SCF is considered converged\nwhen the density change between two SCF cycles is below the threshold (possibly in\ncombination with other criteria).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "minimization_algorithm", + "description": "Specifies the algorithm used for self consistency minimization.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "HubbardModel", + "description": "Setup of the Hubbard model used in DFT+U", + "extending_sections": [ + "/packages/35/section_definitions/25" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "orbital", + "description": "Orbital label corresponding to the parameter setting following the notation:\n'(3)d', '(4)f', ...", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.hubbard_model.u_effective" + ] + }, + "name": "u_effective", + "description": "Value of the effective U parameter (U-J).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.hubbard_model.u" + ] + }, + "name": "u", + "description": "Value of the on-site Coulomb interaction U", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.hubbard_model.j" + ] + }, + "name": "j", + "description": "Value of the exchange interaction J", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "method", + "description": "Name of the correction algorithm applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "projection_type", + "description": "Type of orbitals used for projection in order to calculate occupation numbers.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "AtomParameters", + "description": "Contains method-related information about a kind of atom identified by label. This allows the assignment of an atom-centered basis set or pseudopotential for different\natoms belonging to the same kind.", + "extending_sections": [ + "/packages/26/section_definitions/6", + "/packages/35/section_definitions/24", + "/packages/43/section_definitions/65", + "/packages/46/section_definitions/11", + "/packages/14/section_definitions/8", + "/packages/50/section_definitions/8", + "/packages/51/section_definitions/6", + "/packages/52/section_definitions/5", + "/packages/54/section_definitions/7", + "/packages/62/section_definitions/6", + "/packages/63/section_definitions/3" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "atom_number", + "description": "Atomic number (number of protons) of this atom kind, use 0 if not an atom.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_valence_electrons", + "description": "Number of valence electrons.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "String used to identify the atoms of this kind. This should correspond to the\natom labels of the configuration. It is possible for one atom kind to have\nmultiple labels (in order to allow two atoms of the same kind to have two\ndifferently defined sets of atom-centered basis functions or two different pseudo-\npotentials). Atom kind is typically the symbol of the atomic species but it can be\nalso a ghost or pseudo-atom.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "mass", + "description": "Mass of the atom.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kilogram" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "pseudopotential_name", + "description": "Name identifying the pseudopotential used.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "n_orbitals", + "description": "Number of valence orbitals of the atom.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "orbitals", + "description": "Label of the valence orbitals of the atoms.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_orbitals" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "onsite_energies", + "description": "Values of the atomic onsite energy corresponding to each orbital.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_orbitals" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "charge", + "description": "Total charge of the atom.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "coulomb" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "charges", + "description": "Values of the charge corresponding to each orbital.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_orbitals" + ], + "unit": "coulomb" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "hubbard_model", + "sub_section": "/packages/0/section_definitions/2", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "MoleculeParameters", + "description": "Contains method-related information about a kind of atom identified by label. This allows the assignment of an atom-centered basis set or pseudopotential for different\natoms belonging to the same kind.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "String to identify the molecule.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "Number of atoms in the molecule.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "atom_parameters", + "sub_section": "/packages/0/section_definitions/3", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "GaussianBasisGroup", + "description": "Section that describes a group of Gaussian contractions. Groups allow one to calculate the primitive Gaussian integrals once for several different linear combinations of\nthem. This defines basis functions with radial part $f_i(r) = r^{l_i} \\sum_{j} c_{i j}\nA(l_i, \\alpha_j) exp(-\\alpha_j r^2)$ where $A(l_i, \\alpha_j)$ is a the normalization\ncoefficient for primitive Gaussian basis functions. Here, $\\alpha_j$ is defined in\ngaussian_basis_group_exponents, $l_i$ is given in gaussian_basis_group_ls, and $c_{i\nj}$ is given in gaussian_basis_group_contractions, whereas the radial part is given by\nthe spherical harmonics $Y_{l m}$.\n\nThis section is defined only if the original basis function uses Gaussian basis\nfunctions, and the sequence of radial functions $f_i$ across all\nsection_gaussian_basis_group in section_basis_set_atom_centered should match the one\nof basis_set_atom_centered_radial_functions.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_contractions", + "description": "Gives the number of different contractions, i.e. resulting basis functions in a\ngaussian_basis_group section.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_exponents", + "description": "Gives the number of different Gaussian exponents in a section_gaussian_basis_group\nsection.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "contractions", + "description": "contraction coefficients $c_{i j}$ defining the contracted basis functions with\nrespect to *normalized* primitive Gaussian functions. They define the Gaussian\nbasis functions as described in section_gaussian_basis_group.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_contractions", + "n_exponents" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "exponents", + "description": "Exponents $\\alpha_j$ of the Gaussian functions defining this basis set\n$exp(-\\alpha_j r^2)$. One should be careful about the units of the coefficients.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_exponents" + ], + "unit": "1 / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "ls", + "description": "Azimuthal quantum number ($l$) values (of the angular part given by the spherical\nharmonic $Y_{l m}$ of the various contracted basis functions).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_contractions" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "BasisSetAtomCentered", + "description": "This section describes the atom-centered basis set. The main contained information is a short, non unique but human-interpretable, name for identifying the basis set\n(short_name), a longer unique name, the atomic number of the atomic species the\nbasis set is meant for.", + "extending_sections": [ + "/packages/12/section_definitions/4", + "/packages/44/section_definitions/3" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Code-specific, but explicative, base name for the basis set.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "atom_number", + "description": "Atomic number (i.e., number of protons) of the atom for which this basis set is\nconstructed (0 means unspecified or a pseudo atom).", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_basis_functions", + "description": "Gives the number of different basis functions in a basis_set_atom_centered\nsection. This equals the number of actual coefficients that are specified when\nusing this basis set.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "gaussian_basis_group", + "sub_section": "/packages/0/section_definitions/5", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "BasisSetCellDependent", + "description": "Section describing a cell-dependent (atom-independent) basis set, e.g. plane waves. The contained information is the type of basis set (in basis_set_cell_dependent_kind),\nits parameters (e.g., for plane waves in basis_set_planewave_cutoff), and a name that\nidentifies the actually used basis set (a string combining the type and the\nparameter(s), stored in name).", + "extending_sections": [ + "/packages/27/section_definitions/48", + "/packages/43/section_definitions/57" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "A string defining the type of the cell-dependent basis set (i.e., non atom\ncentered such as plane-waves). Can be one of plane_waves, realspace_grids or\nwavelets.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "A label identifying the cell-dependent basis set (i.e., non atom centered such as\nplane-waves). The following convetion should be followed:\nplane_waves (\"PW_\" + cutoff in Ry) realspace_grids (\"GR_\" + grid spacing in fm)\nwavelets (WV_\" + smallest wavelet spacing in fm).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "planewave_cutoff", + "description": "Spherical cutoff in reciprocal space for a plane-wave basis set. It is the energy\nof the highest plan-ewave ($\\frac{\\hbar^2|k+G|^2}{2m_e}$) included in the basis\nset. Note that normally this basis set is used for the wavefunctions, and the\ndensity would have 4 times the cutoff, but this actually depends on the use of the\nbasis set by the method.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "grid_spacing", + "description": "Grid spacing used for the realspace representation of the wave functions.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "BasisSet", + "description": "This section contains all basis sets used to represent the wavefunction or electron density.", + "extending_sections": [ + "/packages/26/section_definitions/5" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "String describing the use of the basis set, i.e, if it used for expanding a\nwavefunction or an electron density.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "The type of basis set used by the program. Valid values are: [`Numeric AOs`,\n`Gaussians`, `(L)APW+lo`, `plane waves`, `psinc functions`, `real-space grid`].", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.basis_set_name", + "results.method.simulation.dft.basis_set_name__suggestion" + ] + }, + "name": "name", + "description": "Identifies the basis set.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "cell_dependent", + "sub_section": "/packages/0/section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "atom_centered", + "sub_section": "/packages/0/section_definitions/6", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "Interaction", + "description": "Section containing the parameters of a contribution to a force field model.", + "extending_sections": [ + "/packages/50/section_definitions/6", + "/packages/51/section_definitions/7", + "/packages/53/section_definitions/2", + "/packages/54/section_definitions/8" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Denotes the classification of the potential.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Specifies the name of the potential. Can contain information on the species,\ncut-offs, potential versions.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "Number of atoms included in the interaction", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "atom_labels", + "description": "Labels of the atoms described by the interaction.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "atom_indices", + "description": "Indices of the atoms in the system described by the interaction.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "functional_form", + "description": "Specifies the functional form of the interaction potential.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "n_parameters", + "description": "Specifies the number of parameters in the interaction potential.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "parameters", + "description": "Dictionary of label and parameters of the interaction potential.", + "type": { + "type_kind": "Any" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "Model", + "description": "Section containing the parameters of a force field model. If specified, the parameters corresponding to the individual contributions to the model are given in contributions.\nOtherwise, the parameters can also be found in a reference to the published model.", + "extending_sections": [ + "/packages/50/section_definitions/7" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Identifies the name of the model.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "reference", + "description": "Reference to the model e.g. DOI, URL.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "contributions", + "sub_section": "/packages/0/section_definitions/9", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "Functional", + "description": "Section containing the parameters of an exchange or correlation functional.", + "extending_sections": [ + "/packages/46/section_definitions/13" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Provides the name of one of the exchange and/or correlation (XC) functional\nfollowing the libbx convention.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "parameters", + "description": "Contains an associative list of non-default values of the parameters for the\nfunctional.\n\nFor example, if a calculations using a hybrid XC functional (e.g., HSE06)\nspecifies a user-given value of the mixing parameter between exact and GGA\nexchange, then this non-default value is stored in this metadata.\n\nThe labels and units of these values may be defined in name.\n\nIf this metadata is not given, the default parameter values for the functional\nare assumed.", + "type": { + "type_kind": "Any" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "weight", + "description": "Provides the value of the weight for the functional.\n\nThis weight is used in the linear combination of the different functionals. If not\nspecified then the default is set to 1.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "XCFunctional", + "description": "Section describing the exchange-correlation functional used in the DFT calculation. The name of the exchange-correlation functional is given by name and the reference to\nthe published functional is provided by reference. Other contributions to the\nfunctional not covered by exchange, correlation or hybrid types may be specified in\ncontributions.", + "base_sections": [ + "/packages/0/section_definitions/10" + ], + "extending_sections": [ + "/packages/36/section_definitions/7" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "exchange", + "sub_section": "/packages/0/section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "correlation", + "sub_section": "/packages/0/section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "hybrid", + "sub_section": "/packages/0/section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "contributions", + "sub_section": "/packages/0/section_definitions/11", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "DFT", + "description": "Section containing the various parameters that define a DFT calculation. These include settings for the exchange correlation functionals, LDA+U, etc.", + "extending_sections": [ + "/packages/44/section_definitions/5" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "self_interaction_correction_method", + "description": "Contains the name for the self-interaction correction (SIC) treatment used to\ncalculate the final energy and related quantities. If skipped or empty, no special\ncorrection is applied.\n\nThe following SIC methods are available:\n\n| SIC method | Description |\n\n| ------------------------- | -------------------------------- |\n\n| `\"\"` | No correction |\n\n| `\"SIC_AD\"` | The average density correction |\n\n| `\"SIC_SOSEX\"` | Second order screened exchange |\n\n| `\"SIC_EXPLICIT_ORBITALS\"` | (scaled) Perdew-Zunger correction explicitly on a\nset of orbitals |\n\n| `\"SIC_MAURI_SPZ\"` | (scaled) Perdew-Zunger expression on the spin\ndensity / doublet unpaired orbital |\n\n| `\"SIC_MAURI_US\"` | A (scaled) correction proposed by Mauri and co-\nworkers on the spin density / doublet unpaired orbital |", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "xc_functional", + "sub_section": "/packages/0/section_definitions/12" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "Projection", + "description": "Section containing the various parameters that define a Wannier90-like projection", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_projected_orbitals", + "description": "Number of Wannier orbitals used to fit the DFT band structure", + "type": { + "type_kind": "numpy", + "type_data": "int32" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_bands", + "description": "Number of input Bloch bands to calculate the projection matrix.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "is_maximally_localized", + "description": "Are the projected orbitals maximally localized or just a single-shot projection?", + "type": { + "type_kind": "python", + "type_data": "bool" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "convergence_tolerance_max_localization", + "description": "Convergence tolerance for maximal localization of the projected orbitals.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "energy_window_outer", + "description": "Bottom and top of the outer energy window used for the projection.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "energy_window_inner", + "description": "Bottom and top of the inner energy window used for the projection.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "unit": "electron_volt" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "k_mesh", + "sub_section": "/packages/0/section_definitions/0", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "GW", + "description": "Section containing the various parameters that define a GW calculation.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "bare_coulomb_cutofftype", + "description": "Cutoff type for the calculation of the bare Coulomb potential: none, 0d, 1d, 2d.\nSee Rozzi et al., PRB 73, 205119 (2006)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "bare_coulomb_gmax", + "description": "Maximum G for the pw basis for the Coulomb potential.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "1 / meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "basis_set", + "description": "Auxillary basis set used for non-local operators: mixed - mixed basis set, Kotani\nand Schilfgaarde, Solid State Comm. 121, 461 (2002).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "core_treatment", + "description": "It specifies whether the core states are treated in the GW calculation: all - All\nelectron calculation; val - Valence electron only calculation; vab - Core\nelectrons are excluded from the mixed product basis; xal - All electron treatment\nof the exchange self-energy only", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "frequency_grid_type", + "description": "Frequency integration grid type for the correlational self energy: 'eqdis' -\nequidistant frequencies from 0 to freqmax; 'gaulag' - Gauss-Laguerre quadrature\nfrom 0 to infinity; 'gauleg' - Gauss-Legendre quadrature from 0 to freqmax;\n'gaule2' (default) - double Gauss-Legendre quadrature from 0 to freqmax and from\nfreqmax to infinity.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "max_frequency", + "description": "Maximum frequency for the calculation of the self energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "mixed_basis_gmax", + "description": "Cut-off parameter for the truncation of the expansion of the plane waves in the\ninterstitial region.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "1 / meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "mixed_basis_lmax", + "description": "Maximum l value used for the radial functions within the muffin-tin.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "mixed_basis_tolerance", + "description": "Eigenvalue threshold below which the egenvectors are discarded in the construction\nof the radial basis set.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "ngridq", + "description": "k/q-point grid size used in the GW calculation.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "n_frequencies", + "description": "Number of frequency points used in the calculation of the self energy.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "frequency_number", + "description": "Number referring to the frequency used in the calculation of the self energy.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_frequencies" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "frequency_values", + "description": "Values of the frequency used in the calculation of the self energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_frequencies" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "frequency_weights", + "description": "Weights of the frequency used in the calculation of the self energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_frequencies" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "polarizability_number_of_empty_states", + "description": "Number of empty states used to compute the polarizability P", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "qp_equation_treatment", + "description": "Methods to solve the quasi-particle equation: 'linearization', 'self-consistent'", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "screened_coulomb_volume_average", + "description": "Type of volume averaging for the dynamically screened Coulomb potential: isotropic\n- Simple averaging along a specified direction using only diagonal components of\nthe dielectric tensor; anisotropic - Anisotropic screening by C. Freysoldt et al.,\nCPC 176, 1-13 (2007)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "screened_coulomb", + "description": "Model used to calculate the dinamically-screened Coulomb potential: 'rpa' - Full-\nfrequency random-phase approximation; 'ppm' - Godby-Needs plasmon-pole model Godby\nand Needs, Phys. Rev. Lett. 62, 1169 (1989); 'ppm_hl' - Hybertsen and Louie, Phys.\nRev. B 34, 5390 (1986); 'ppm_lh' - von der Linden and P. Horsh, Phys. Rev. B 37,\n8351 (1988); 'ppm_fe' - Farid and Engel, Phys. Rev. B 47,15931 (1993); 'cdm' -\nContour deformation method, Phys. Rev. B 67, 155208 (2003).)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "self_energy_c_analytical_continuation", + "description": "Models for the correlation self-energy analytical continuation: 'pade' - Pade's\napproximant (by H. J. Vidberg and J. W. Serence, J. Low Temp. Phys. 29, 179\n(1977)); 'mpf' - Multi-Pole Fitting (by H. N Rojas, R. W. Godby and R. J. Needs,\nPhys. Rev. Lett. 74, 1827 (1995)); 'cd' - contour deformation; 'ra' - real axis", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "self_energy_c_number_of_empty_states", + "description": "Number of empty states to be used to calculate the correlation self energy.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "self_energy_c_number_of_poles", + "description": "Number of poles used in the analytical continuation.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "self_energy_singularity_treatment", + "description": "Treatment of the integrable singular terms in the calculation of the self energy.\nValues: 'mpb' - Auxiliary function method by S. Massidda, M. Posternak, and A.\nBaldereschi, PRB 48, 5058 (1993); 'crg' - Auxiliary function method by P. Carrier,\nS. Rohra, and A. Goerling, PRB 75, 205126 (2007).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "starting_point", + "description": "Exchange-correlation functional of the ground-state calculation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.gw.type", + "results.method.simulation.gw.type__suggestion" + ] + }, + "name": "type", + "description": "GW methodology: G0W0; ev-scGW: (eigenvalues self-consistent GW) \u2013 Phys.Rev.B 34,\n5390 (1986); qp-scGW: (quasi-particle self-consistent GW) \u2013 Phys. Rev. Lett. 96,\n226402 (2006) scGW0: (self-consistent G with fixed W0) \u2013 Phys.Rev.B 54, 8411\n(1996); scG0W: (self-consistent W with fixed G0); scGW: (self-consistent GW) \u2013\nPhys. Rev. B 88, 075105 (2013)", + "type": { + "type_kind": "Enum", + "type_data": [ + "G0W0", + "scGW", + "scGW0", + "scG0W", + "ev-scGW", + "qp-scGW" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "TBModel", + "description": "Section containing the parameters pertaining to a tight-binding calculation.", + "base_sections": [ + "/packages/0/section_definitions/10" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "hamiltonian", + "sub_section": "/packages/0/section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "overlap", + "sub_section": "/packages/0/section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "repulsion", + "sub_section": "/packages/0/section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "magnetic", + "sub_section": "/packages/0/section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "coulomb", + "sub_section": "/packages/0/section_definitions/9", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "name": "TB", + "description": "Section containing the parameters pertaining to a tight-binding calculation.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "The kind of tight-binding model used. Can be orthogonal or non-orthogonal.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "model", + "sub_section": "/packages/0/section_definitions/16", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "section_definitions", + "name": "NeighborSearching", + "description": "Section containing the parameters for neighbor searching/lists during a molecular dynamics run.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "neighbor_update_frequency", + "description": "Number of timesteps between updating the neighbor list.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "neighbor_update_cutoff", + "description": "The distance cutoff for determining the neighbor list.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "section_definitions", + "name": "ForceCalculations", + "description": "Section containing the parameters for force calculations according to the referenced force field during a molecular dynamics run.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "vdw_cutoff", + "description": "Cutoff for calculating VDW forces.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "coulomb_type", + "description": "Method used for calculating long-ranged Coulomb forces.\n\nAllowed values are:\n\n| Barostat Name | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `\"\"` | No thermostat |\n\n| `\"Cutoff\"` | Simple cutoff scheme. |\n\n| `\"Ewald\"` | Standard Ewald summation as described in any solid-state physics text. |\n\n| `\"Multi-Level Summation\"` | D. Hardy, J.E. Stone, and K. Schulten,\n[Parallel. Comput. **35**, 164](https://doi.org/10.1016/j.parco.2008.12.005)|\n\n| `\"Particle-Mesh-Ewald\"` | T. Darden, D. York, and L. Pedersen,\n[J. Chem. Phys. **98**, 10089 (1993)](https://doi.org/10.1063/1.464397) |\n\n| `\"Particle-Particle Particle-Mesh\"` | See e.g. Hockney and Eastwood, Computer Simulation Using Particles,\nAdam Hilger, NY (1989). |\n\n| `\"Reaction-Field\"` | J.A. Barker and R.O. Watts,\n[Mol. Phys. **26**, 789 (1973)](https://doi.org/10.1080/00268977300102101)|", + "type": { + "type_kind": "Enum", + "type_data": [ + "cutoff", + "ewald", + "multilevel_summation", + "particle_mesh_ewald", + "particle_particle_particle_mesh", + "reaction_field" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "coulomb_cutoff", + "description": "Cutoff for calculating short-ranged Coulomb forces.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "neighbor_searching", + "sub_section": "/packages/0/section_definitions/18", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "section_definitions", + "name": "ForceField", + "description": "Section containing the parameters pertaining to a force field calculation.", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "model", + "sub_section": "/packages/0/section_definitions/10", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "force_calculations", + "sub_section": "/packages/0/section_definitions/19", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "section_definitions", + "name": "Smearing", + "description": "Section containing the parameters related to the smearing of the electronic density of states at the Fermi level.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.smearing_kind", + "results.method.simulation.dft.smearing_kind__suggestion" + ] + }, + "name": "kind", + "description": "Specifies the kind of smearing on the electron occupation used to calculate the\nfree energy (see energy_free)\n\nValid values are:\n\n| Smearing kind | Description |\n\n| ------------------------- | --------------------------------- |\n\n| `\"empty\"` | No smearing is applied |\n\n| `\"gaussian\"` | Gaussian smearing |\n\n| `\"fermi\"` | Fermi smearing |\n\n| `\"marzari-vanderbilt\"` | Marzari-Vanderbilt smearing |\n\n| `\"methfessel-paxton\"` | Methfessel-Paxton smearing |\n\n| `\"tetrahedra\"` | Interpolation of state energies and occupations\n(ignores smearing_width) |", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.smearing_width" + ] + }, + "name": "width", + "description": "Specifies the width of the smearing in energy for the electron occupation used to\ncalculate the free energy (see energy_free).\n\n*NOTE:* Not all methods specified in smearing_kind uses this value.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "section_definitions", + "name": "Electronic", + "description": "Section containing the parameters related to the electronic structure.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "spin_target", + "description": "Stores the target (user-imposed) value of the spin multiplicity $M=2S+1$, where\n$S$ is the total spin. It is an integer number. This value is not necessarily the\nvalue obtained at the end of the calculation. See spin_S2 for the converged value\nof the spin moment.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "charge", + "description": "Stores the total charge of the system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [], + "unit": "coulomb" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_bands", + "description": "Specifies the number of bands used in the calculation.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "n_spin_channels", + "description": "Gives the number of spin channels.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_electrons", + "description": "Number of electrons in system", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "method", + "description": "Non-unique string identifying the used electronic structure method. It is not\nunique in the sense that two calculations with the same\nelectronic structure method string may have not been performed with exactly the\nsame method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.relativity_method", + "results.method.simulation.dft.relativity_method__suggestion" + ] + }, + "name": "relativity_method", + "description": "Describes the relativistic treatment used for the calculation of the final energy\nand related quantities. If skipped or empty, no relativistic treatment is applied.", + "type": { + "type_kind": "Enum", + "type_data": [ + "scalar_relativistic", + "pseudo_scalar_relativistic", + "scalar_relativistic_atomic_ZORA" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.van_der_Waals_method", + "results.method.simulation.dft.van_der_Waals_method__suggestion" + ] + }, + "name": "van_der_waals_method", + "description": "Describes the Van der Waals method. If skipped or an empty string is used, it\nmeans no Van der Waals correction is applied.\n\nAllowed values are:\n\n| Van der Waals method | Description |\n\n| --------------------- | ----------------------------------------- |\n\n| `\"\"` | No Van der Waals correction |\n\n| `\"TS\"` | A. Tkatchenko and M. Scheffler, [Phys. Rev. Lett.\n**102**, 073005 (2009)](http://dx.doi.org/10.1103/PhysRevLett.102.073005) |\n\n| `\"OBS\"` | F. Ortmann, F. Bechstedt, and W. G. Schmidt, [Phys. Rev.\nB **73**, 205101 (2006)](http://dx.doi.org/10.1103/PhysRevB.73.205101) |\n\n| `\"G06\"` | S. Grimme, [J. Comput. Chem. **27**, 1787\n(2006)](http://dx.doi.org/10.1002/jcc.20495) |\n\n| `\"JCHS\"` | P. Jure\u010dka, J. \u010cern\u00fd, P. Hobza, and D. R. Salahub,\n[Journal of Computational Chemistry **28**, 555\n(2007)](http://dx.doi.org/10.1002/jcc.20570) |\n\n| `\"MDB\"` | Many-body dispersion. A. Tkatchenko, R. A. Di Stasio Jr,\nR. Car, and M. Scheffler, [Physical Review Letters **108**, 236402\n(2012)](http://dx.doi.org/10.1103/PhysRevLett.108.236402) and A. Ambrosetti, A. M.\nReilly, R. A. Di Stasio Jr, and A. Tkatchenko, [The Journal of Chemical Physics\n**140**, 18A508 (2014)](http://dx.doi.org/10.1063/1.4865104) |\n\n| `\"XC\"` | The method to calculate the Van der Waals energy uses a\nnon-local functional which is described in section_XC_functionals. |", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "smearing", + "sub_section": "/packages/0/section_definitions/21" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "section_definitions", + "name": "Method", + "description": "Section containing the various parameters that define the theory and the approximations (convergence, thresholds, etc.) behind the calculation.", + "extending_sections": [ + "/packages/24/section_definitions/4", + "/packages/26/section_definitions/4", + "/packages/27/section_definitions/50", + "/packages/29/section_definitions/26", + "/packages/31/section_definitions/20", + "/packages/12/section_definitions/3", + "/packages/32/section_definitions/2", + "/packages/33/section_definitions/5", + "/packages/34/section_definitions/14", + "/packages/35/section_definitions/21", + "/packages/36/section_definitions/6", + "/packages/37/section_definitions/29", + "/packages/38/section_definitions/2", + "/packages/39/section_definitions/1", + "/packages/40/section_definitions/8", + "/packages/43/section_definitions/60", + "/packages/44/section_definitions/4", + "/packages/45/section_definitions/7", + "/packages/46/section_definitions/10", + "/packages/47/section_definitions/2", + "/packages/48/section_definitions/6", + "/packages/49/section_definitions/15", + "/packages/14/section_definitions/5", + "/packages/50/section_definitions/0", + "/packages/52/section_definitions/4", + "/packages/55/section_definitions/0", + "/packages/55/section_definitions/1", + "/packages/56/section_definitions/1", + "/packages/57/section_definitions/2", + "/packages/58/section_definitions/11", + "/packages/16/section_definitions/1", + "/packages/59/section_definitions/7", + "/packages/60/section_definitions/0", + "/packages/61/section_definitions/2", + "/packages/62/section_definitions/1", + "/packages/63/section_definitions/2" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "stress_tensor_method", + "description": "Specifies the method used to calculate stress_tensor for, e.g., molecular dynamics\nand geometry optimization.\n\nThe allowed values are:\n\n* numeric\n\n* analytic", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "starting_method_ref", + "description": "Links the current section method to a section method containing the starting\nparameters.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/0/section_definitions/23" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "core_method_ref", + "description": "Links the current section method to a section method containing the core settings.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/0/section_definitions/23" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "n_references", + "description": "Number of references to the current method.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "methods_ref", + "description": "Links the section method to other method sections. For instance, one calculation\nis a perturbation performed using a self-consistent field (SCF) calculation as\nstarting point, or a simulated system is partitioned in regions with different but\nconnected Hamiltonians (e.g., QM/MM, or a region treated via Kohn-Sham DFT\nembedded into a region treated via orbital-free DFT).", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/0/section_definitions/23" + }, + "shape": [ + "n_references" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "dft", + "sub_section": "/packages/0/section_definitions/13" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "projection", + "sub_section": "/packages/0/section_definitions/14" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "gw", + "sub_section": "/packages/0/section_definitions/15" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "tb", + "sub_section": "/packages/0/section_definitions/17" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "force_field", + "sub_section": "/packages/0/section_definitions/20" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "k_mesh", + "sub_section": "/packages/0/section_definitions/0" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "electronic", + "sub_section": "/packages/0/section_definitions/22" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "scf", + "sub_section": "/packages/0/section_definitions/1" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "atom_parameters", + "more": { + "label_quantity": "label" + }, + "sub_section": "/packages/0/section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "molecule_parameters", + "more": { + "label_quantity": "label" + }, + "sub_section": "/packages/0/section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "basis_set", + "more": { + "label_quantity": "type" + }, + "sub_section": "/packages/0/section_definitions/8", + "repeats": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 1, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.simulation.system", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "AtomsGroup", + "description": "Describes a group of atoms which may constitute a sub system as in the case of a molecule.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Label of the group.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type of the group.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "index", + "description": "Index of the group with respect to its parent group.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "composition_formula", + "description": "The overall composition of the group with respect to its subgroups.\nThe syntax for a groups composed of X and Y with x and y components of each,\nrespectively, is X(x)Y(y).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "The total number of atoms in the group.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "atom_indices", + "description": "Indices of the atoms in the group with respect to the system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "is_molecule", + "description": "Denotes if the atoms in this group represent a molecule. That is, all atoms\nin the group are connected via bonds, and no other atoms contain bonds\nwith these atoms.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "atoms_group", + "sub_section": "/packages/1/section_definitions/0", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Atoms", + "description": "Describes the atomic structure of the physical system. This includes the atom positions, lattice vectors, etc.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "The total number of species (atoms, particles) in the system.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "atomic_numbers", + "description": "List of atomic numbers Z of the atoms identified in labels. If a species cannot\nbe assigned Z, a negative value can also be used to distinguish it.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "equivalent_atoms", + "description": "Gives a mapping table of atoms to symmetrically independent atoms in the\nstandardized cell. This is used to find symmetrically equivalent atoms.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "wyckoff_letters", + "description": "Wyckoff letters corresponding to each atom.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "concentrations", + "description": "Concentrations of the species defined by labels which can be assigned for systems\nwith variable compositions.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "species", + "description": "Species of the atom (normally the atomic number Z, 0 or negative for unidentifed\nspecies or particles that are not atoms.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "labels", + "description": "List containing the labels of the atoms. In the usual case, these correspond to\nthe chemical symbols of the atoms. One can also append an index if there is a\nneed to distinguish between species with the same symbol, e.g., atoms of the\nsame species assigned to different atom-centered basis sets or pseudo-potentials,\nor simply atoms in different locations in the structure such as those in the bulk\nand on the surface. In the case where a species is not an atom, and therefore\ncannot be representated by a chemical symbol, the label can simply be the name of\nthe particles.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "positions", + "description": "Positions of all the species, in cartesian coordinates. This metadata defines a\nconfiguration and is therefore required. For alloys where concentrations of\nspecies are given for each site in the unit cell, it stores the position of the\nsites.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms", + 3 + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "velocities", + "description": "Velocities of the nuclei, defined as the change in cartesian coordinates of the\nnuclei with respect to time.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms", + 3 + ], + "unit": "meter / second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "lattice_vectors", + "description": "Lattice vectors in cartesian coordinates of the simulation cell. The\nlast (fastest) index runs over the $x,y,z$ Cartesian coordinates, and the first\nindex runs over the 3 lattice vectors.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "lattice_vectors_reciprocal", + "description": "Reciprocal lattice vectors in cartesian coordinates of the simulation cell. The\nfirst index runs over the $x,y,z$ Cartesian coordinates, and the second index runs\nover the 3 lattice vectors.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "1 / meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "local_rotations", + "description": "A rotation matrix defining the orientation of each atom. If the rotation matrix\ncannot be specified for an atom, the remaining atoms should set it to\nthe zero matrix (not the identity!)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms", + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "periodic", + "description": "Denotes if periodic boundary condition is applied to each of the lattice vectors.'", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "supercell_matrix", + "description": "Specifies the matrix that transforms the unit-cell into the super-cell in which\nthe actual calculation is performed.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "symmorphic", + "description": "Specifies if the space group is symmorphic. Set to True if all translations are\nzero.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Symmetry", + "description": "Section containing information about the symmetry properties of the atomic system.", + "extending_sections": [ + "/packages/14/section_definitions/7" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "bravais_lattice", + "description": "Identifier for the Bravais lattice in Pearson notation. The first lowercase letter\nidentifies the crystal family and can be one of the following: a (triclinic), b\n(monoclinic), o (orthorhombic), t (tetragonal), h (hexagonal) or c (cubic). The\nsecond uppercase letter identifies the centring and can be one of the following: P\n(primitive), S (face centred), I (body centred), R (rhombohedral centring) or F\n(all faces centred).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "choice", + "description": "String that specifies the centering, origin and basis vector settings of the 3D\nspace group that defines the symmetry group of the simulated physical system (see\nsection system). Values are as defined by spglib.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "crystal_system", + "description": "Name of the crystal system. Can be one of the following: triclinic, monoclinic,\northorhombic, tetragonal, trigonal, hexagonal or cubic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "hall_number", + "description": "The Hall number for this system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "hall_symbol", + "description": "The Hall symbol for this system.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "international_short_symbol", + "description": "Specifies the International Union of Crystallography (IUC) short symbol of the 3D\nspace group of this system", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "origin_shift", + "description": "Vector $\\mathbf{p}$ from the origin of the standardized system to the origin of\nthe original system. Together with the matrix $\\mathbf{P}$, found in\nspace_group_3D_transformation_matrix, the transformation between the standardized\ncoordinates $\\mathbf{x}_s$ and original coordinates $\\mathbf{x}$ is then given\nby $\\mathbf{x}_s = \\mathbf{P} \\mathbf{x} + \\mathbf{p}$.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "point_group", + "description": "Symbol of the crystallographic point group in the Hermann-Mauguin notation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "space_group_number", + "description": "Specifies the International Union of Crystallography (IUC) number of the 3D space\ngroup of this system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "symmetry_method", + "description": "Identifies the source of the symmetry information contained within this section.\nIf equal to 'spg_normalized' the information comes from a normalization step.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "transformation_matrix", + "description": "Matrix $\\mathbf{P}$ that is used to transform the standardized coordinates to the\noriginal coordinates. Together with the vector $\\mathbf{p}$, found in\nspace_group_3D_origin_shift, the transformation between the standardized\ncoordinates $\\mathbf{x}_s$ and original coordinates $\\mathbf{x}$ is then given by\n$\\mathbf{x}_s = \\mathbf{P} \\mathbf{x} + \\mathbf{p}$.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "system_original", + "sub_section": "/packages/1/section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "system_primitive", + "sub_section": "/packages/1/section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "system_std", + "sub_section": "/packages/1/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Prototype", + "description": "Information on the prototype corresponding to the current section.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "aflow_id", + "description": "AFLOW id of the prototype (see\nhttp://aflowlib.org/CrystalDatabase/prototype_index.html) identified on the basis\nof the space_group and normalized_wyckoff.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "aflow_url", + "description": "Url to the AFLOW definition of the prototype (see\nhttp://aflowlib.org/CrystalDatabase/prototype_index.html) identified on the basis\nof the space_group and normalized_wyckoff.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "assignment_method", + "description": "Method used to identify the prototype.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Label of the prototype identified on the basis of the space_group and\nnormalized_wyckoff. The label is in the same format as in the read_prototypes\nfunction: <space_group_number>-<prototype_name>-<Pearson's symbol>).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "SpringerMaterial", + "description": "Contains results of classification of materials with the same formula according to Springer Materials. These include material and compound classsification, formula,\nid, and references from the Springer Materials database.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "id", + "description": "Id of the classified material according to Springer Materials.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "alphabetical_formula", + "description": "The alphabetical formula of the material according to Springer Materials Database", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "url", + "description": "Url to the source page in Springer Materials describing the current entry", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "compound_class", + "description": "Name of a class of the current compound, as defined in by Springer Materials. This\nis a property of the chemical formula of the compound", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "N" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "classification", + "description": "Contains the classification name of the current material according to Springer\nMaterials", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "N" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Constraint", + "description": "Section describing a constraint between arbitrary atoms.", + "extending_sections": [ + "/packages/51/section_definitions/9", + "/packages/53/section_definitions/6" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "Short and unique name for this constraint type. Could be fix_a where a can be\nx, y, z denoting a constraint along a cartesian direction, xy, xz, yz denoting a\nconstaint along a cartesian plane, xyz denoting a fixed position, distance\ndenoting a fixed distance between two atoms, angle denoting a fixed angle between\nthree atoms, and dihedral denoting a fixed dihedral angle.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_constraints", + "description": "Number of constraints of this type.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "Number of atoms involved in this constraint.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "atom_indices", + "description": "List of the indexes involved in this constraint.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_constraints", + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "parameters", + "description": "Explicit constraint parameters for this kind of constraint (depending on the\nconstraint type, some might be given implicitly through other means).", + "type": { + "type_kind": "Any" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "System", + "description": "Contains parameters describing a system of atomic configuration. These inclue the compound name, atomic positions, lattice vectors, contraints on the atoms, etc.", + "extending_sections": [ + "/packages/24/section_definitions/5", + "/packages/27/section_definitions/47", + "/packages/31/section_definitions/21", + "/packages/12/section_definitions/0", + "/packages/32/section_definitions/5", + "/packages/34/section_definitions/10", + "/packages/35/section_definitions/23", + "/packages/36/section_definitions/4", + "/packages/37/section_definitions/24", + "/packages/40/section_definitions/11", + "/packages/43/section_definitions/56", + "/packages/44/section_definitions/1", + "/packages/45/section_definitions/6", + "/packages/46/section_definitions/12", + "/packages/47/section_definitions/8", + "/packages/48/section_definitions/5", + "/packages/14/section_definitions/6", + "/packages/51/section_definitions/4", + "/packages/52/section_definitions/2", + "/packages/53/section_definitions/0", + "/packages/54/section_definitions/4", + "/packages/56/section_definitions/2", + "/packages/57/section_definitions/3", + "/packages/59/section_definitions/5", + "/packages/60/section_definitions/1", + "/packages/61/section_definitions/1", + "/packages/62/section_definitions/2", + "/packages/63/section_definitions/1", + "/packages/64/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Specifies the name of the system. This information is provided by the user in some\ncodes and is stored here for debugging or visualization purposes.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type of the system (atom, bulk, surface, etc.) which is determined by the\nnormalizer.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "configuration_raw_gid", + "description": "checksum of the configuration_core, i.e. the geometry of the system. The values\nare not normalized in any way so equivalent configurations might have different\nvalues", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "is_representative", + "description": "Most systems in a run are only minor variations of each other. Systems marked\nrepresentative where chosen to be representative for all systems in the run.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_references", + "description": "Number of references to the current section system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "sub_system_ref", + "description": "Links the current section system to a sub system.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/1/section_definitions/6" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "systems_ref", + "description": "Links the current section system to other section systems. Such a link is\nnecessary for example between the supercell and the reference unit cell in a phonon\ncalculation. The relationship should be described by kind and the referred section\nsystem is given by value. An external url can also be provided in place of value.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/1/section_definitions/6" + }, + "shape": [ + "n_references" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "chemical_composition", + "description": "The full chemical composition of the system, based on atom species.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "chemical_composition_hill", + "description": "The chemical composition in the hill convention of the system, based on atom species.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "chemical_composition_reduced", + "description": "The chemical composition as reduced formula of the system, based on atom species.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "chemical_composition_anonymous", + "description": "The chemical composition without explicit element names of the system, based on\natom species.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "atoms", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/1/section_definitions/1" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "atoms_group", + "sub_section": "/packages/1/section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "constraint", + "sub_section": "/packages/1/section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "prototype", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/1/section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "springer_material", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/1/section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "symmetry", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/1/section_definitions/2", + "repeats": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 2, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.simulation.calculation", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "Atomic", + "description": "Generic section containing the values and information reqarding an atomic quantity such as charges, forces, multipoles.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "Kind of the quantity.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_orbitals", + "description": "Number of orbitals used in the projection.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "Number of atoms.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "n_spin_channels", + "description": "Number of spin channels.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "AtomicValues", + "description": "Generic section containing information regarding the values of an atomic quantity.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "spin", + "description": "Spin channel corresponding to the atomic quantity.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "atom_label", + "description": "Label of the atomic species corresponding to the atomic quantity.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "atom_index", + "description": "Index of the atomic species corresponding to the atomic quantity.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "m_kind", + "description": "String describing what the integer numbers of $m$ lm mean used in orbital\nprojections. The allowed values are listed in the [m_kind wiki page]\n(https://gitlab.rzg.mpg.de/nomad-lab/nomad-meta-info/wikis/metainfo/m-kind).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "lm", + "description": "Tuples of $l$ and $m$ values for which the atomic quantity are given. For\nthe quantum number $l$ the conventional meaning of azimuthal quantum number is\nalways adopted. For the integer number $m$, besides the conventional use as\nmagnetic quantum number ($l+1$ integer values from $-l$ to $l$), a set of\ndifferent conventions is accepted (see the [m_kind wiki\npage](https://gitlab.rzg.mpg.de/nomad-lab/nomad-meta-info/wikis/metainfo/m-kind).\nThe adopted convention is specified by m_kind.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "orbital", + "description": "String representation of the of the atomic orbital.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "AtomicGroup", + "description": "Generic section containing the values and information reqarding a molecular or sub-molecular quantity that is a function of an atomic group such as radius of gyration...", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "Kind of the quantity.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "AtomicGroupValues", + "description": "Generic section containing information regarding the values of a trajectory property.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Describes the atoms or molecule types involved in determining the property.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "atomsgroup_ref", + "description": "References to the atoms_group section containing the molecule for which Rg was calculated.", + "type": { + "type_kind": "reference", + "type_data": "/packages/1/section_definitions/0" + }, + "shape": [ + 1 + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "EnergyEntry", + "description": "Section describing a type of energy or a contribution to the total energy.", + "base_sections": [ + "/packages/2/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "reference", + "description": "Value of the reference energy to be subtracted from value to obtain a\ncode-independent value of the energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of the energy of the unit cell.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "value_per_atom", + "description": "Value of the energy normalized by the total number of atoms in the simulation\ncell.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "values_per_atom", + "description": "Value of the atom-resolved energies.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "potential", + "description": "Value of the potential energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "kinetic", + "description": "Value of the kinetic energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "correction", + "description": "Value of the correction to the energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Energy", + "description": "Section containing all energy types and contributions.", + "extending_sections": [ + "/packages/26/section_definitions/1", + "/packages/32/section_definitions/7", + "/packages/33/section_definitions/6", + "/packages/43/section_definitions/59", + "/packages/45/section_definitions/10", + "/packages/50/section_definitions/1", + "/packages/52/section_definitions/6", + "/packages/55/section_definitions/2" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "enthalpy", + "description": "Value of the calculated enthalpy per cell i.e. energy_total + pressure * volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "entropy", + "description": "Value of the entropy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "chemical_potential", + "description": "Value of the chemical potential.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "internal", + "description": "Value of the internal energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "change", + "description": "Stores the change of total energy with respect to the previous step.", + "categories": [ + "/packages/2/category_definitions/5", + "/packages/2/category_definitions/3" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "fermi", + "description": "Fermi energy (separates occupied from unoccupied single-particle states)", + "categories": [ + "/packages/2/category_definitions/4", + "/packages/2/category_definitions/3" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "highest_occupied", + "description": "The highest occupied energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "lowest_unoccupied", + "description": "The lowest unoccupied energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "total", + "description": "Contains the value and information regarding the total energy of the system.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "current", + "description": "Contains the value and information regarding the energy calculated with\ncalculation_method_current. energy_current is equal to energy_total for\nnon-perturbative methods. For perturbative methods, energy_current is equal to the\ncorrection: energy_total minus energy_total of the calculation_to_calculation_ref\nwith calculation_to_calculation_kind = starting_point", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "zero_point", + "description": "Contains the value and information regarding the converged zero-point\nvibrations energy calculated using the method described in zero_point_method.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "kinetic_electronic", + "description": "Contains the value and information regarding the self-consistent electronic\nkinetic energy.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "electronic", + "description": "Contains the value and information regarding the self-consistent electronic\nenergy.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "correlation", + "description": "Contains the value and information regarding the correlation energy calculated\nusing the method described in XC_functional.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "exchange", + "description": "Contains the value and information regarding the exchange energy calculated\nusing the method described in XC_functional.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "xc", + "description": "Contains the value and information regarding the exchange-correlation (XC)\nenergy calculated with the functional stored in XC_functional.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "xc_potential", + "description": "Contains the value and information regarding the exchange-correlation (XC)\npotential energy: the integral of the first order derivative of the functional\nstored in XC_functional (integral of v_xc*electron_density), i.e., the component\nof XC that is in the sum of the eigenvalues. Value associated with the\nconfiguration, should be the most converged value..", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "electrostatic", + "description": "Contains the value and information regarding the total electrostatic energy\n(nuclei + electrons), defined consistently with calculation_method.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "nuclear_repulsion", + "description": "Contains the value and information regarding the total nuclear-nuclear repulsion\nenergy.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "coulomb", + "description": "Contains the value and information regarding the Coulomb energy.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "madelung", + "description": "Contains the value and information regarding the Madelung energy.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "ewald", + "description": "Contains the value and information regarding the Ewald energy.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "free", + "description": "Contains the value and information regarding the free energy (nuclei + electrons)\n(whose minimum gives the smeared occupation density calculated with\nsmearing_kind).", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "sum_eigenvalues", + "description": "Contains the value and information regarding the sum of the eigenvalues of the\nHamiltonian matrix.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "total_t0", + "description": "Contains the value and information regarding the total energy extrapolated to\n$T=0$, based on a free-electron gas argument.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "van_der_waals", + "description": "Contains the value and information regarding the Van der Waals energy. A multiple\noccurence is expected when more than one van der Waals methods are defined. The\nvan der Waals kind should be specified in Energy.kind", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "hartree_fock_x_scaled", + "description": "Scaled exact-exchange energy that depends on the mixing parameter of the\nfunctional. For example in hybrid functionals, the exchange energy is given as a\nlinear combination of exact-energy and exchange energy of an approximate DFT\nfunctional; the exact exchange energy multiplied by the mixing coefficient of the\nhybrid functional would be stored in this metadata. Defined consistently with\nXC_method.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "contributions", + "description": "Contains other energy contributions to the total energy not already defined.", + "sub_section": "/packages/2/section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 20, + "m_parent_sub_section": "sub_sections", + "name": "types", + "description": "Contains other energy types not already defined.", + "sub_section": "/packages/2/section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 21, + "m_parent_sub_section": "sub_sections", + "name": "correction_entropy", + "description": "Entropy correction to the potential energy to compensate for the change in\noccupation so that forces at finite T do not need to keep the change of occupation\nin account. Defined consistently with XC_method.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 22, + "m_parent_sub_section": "sub_sections", + "name": "correction_hartree", + "description": "Correction to the density-density electrostatic energy in the sum of eigenvalues\n(that uses the mixed density on one side), and the fully consistent density-\ndensity electrostatic energy. Defined consistently with XC_method.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 23, + "m_parent_sub_section": "sub_sections", + "name": "correction_xc", + "description": "Correction to energy_XC.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 24, + "m_parent_sub_section": "sub_sections", + "name": "kinetic", + "description": "Contains the value and information regarding the kinetic energy.", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 25, + "m_parent_sub_section": "sub_sections", + "name": "potential", + "description": "Contains the value and information regarding the potential energy.", + "sub_section": "/packages/2/section_definitions/4" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "ForcesEntry", + "description": "Section describing a contribution to or type of atomic forces.", + "base_sections": [ + "/packages/2/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of the forces acting on the atoms. This is calculated as minus gradient of\nthe corresponding energy type or contribution **including** constraints, if\npresent. The derivatives with respect to displacements of nuclei are evaluated in\nCartesian coordinates. In addition, these are obtained by filtering out the\nunitary transformations (center-of-mass translations and rigid rotations for\nnon-periodic systems, see value_raw for the unfiltered counterpart).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms", + 3 + ], + "unit": "newton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value_raw", + "description": "Value of the forces acting on the atoms **not including** such as fixed atoms,\ndistances, angles, dihedrals, etc.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms", + 3 + ], + "unit": "newton" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "Forces", + "description": "Section containing all forces types and contributions.", + "extending_sections": [ + "/packages/26/section_definitions/2", + "/packages/50/section_definitions/2" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "total", + "description": "Contains the value and information regarding the total forces on the atoms\ncalculated as minus gradient of energy_total.", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "free", + "description": "Contains the value and information regarding the forces on the atoms\ncorresponding to the minus gradient of energy_free. The (electronic) energy_free\ncontains the information on the change in (fractional) occupation of the\nelectronic eigenstates, which are accounted for in the derivatives, yielding a\ntruly energy-conserved quantity.", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "t0", + "description": "Contains the value and information regarding the forces on the atoms\ncorresponding to the minus gradient of energy_T0.", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "contributions", + "description": "Contains other forces contributions to the total atomic forces not already\ndefined.", + "sub_section": "/packages/2/section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "types", + "description": "Contains other types of forces not already defined.", + "sub_section": "/packages/2/section_definitions/6", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "StressEntry", + "description": "Section describing a contribution to or a type of stress.", + "base_sections": [ + "/packages/2/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of the stress on the simulation cell. It is given as the functional\nderivative of the corresponding energy with respect to the deformation tensor.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "joule / meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "values_per_atom", + "description": "Value of the atom-resolved stresses.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3, + 3 + ], + "unit": "joule / meter ** 3" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "Stress", + "description": "Section containing all stress types and contributions.", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "total", + "description": "Contains the value and information regarding the stress on the simulation cell\nand the atomic stresses corresponding to energy_total.", + "sub_section": "/packages/2/section_definitions/8" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "contributions", + "description": "Contains contributions for the total stress.", + "sub_section": "/packages/2/section_definitions/8", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "types", + "description": "Contains other types of stress.", + "sub_section": "/packages/2/section_definitions/8", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "ChargesValue", + "description": "Contains information on the charge on an atom or projected onto an orbital.", + "base_sections": [ + "/packages/2/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of the charge projected on atom and orbital.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "coulomb" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_electrons", + "description": "Value of the number of electrons projected on atom and orbital.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "spin_z", + "description": "Value of the azimuthal spin projected on atom and orbital.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "Charges", + "description": "Section describing the charges on the atoms obtained through a given analysis method. Also contains information on the orbital projection of charges.", + "base_sections": [ + "/packages/2/section_definitions/0" + ], + "extending_sections": [ + "/packages/33/section_definitions/7" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "analysis_method", + "description": "Analysis method employed in evaluating the atom and partial charges.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of the atomic charges calculated through analysis_method.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms" + ], + "unit": "coulomb" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_electrons", + "description": "Value of the number of electrons on the atoms.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "spins", + "description": "Value of the atomic spins.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "total", + "description": "Value of the total charge of the system.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "coulomb" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "spin_projected", + "sub_section": "/packages/2/section_definitions/10", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "orbital_projected", + "sub_section": "/packages/2/section_definitions/10", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "BandGap", + "description": "\n Contains information for each present spin channel.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "index", + "description": "The spin channel index.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Band gap value. Value of zero corresponds to not having a band gap.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Band gap type.", + "type": { + "type_kind": "Enum", + "type_data": [ + "direct", + "indirect" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "energy_highest_occupied", + "description": "The highest occupied energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "energy_lowest_unoccupied", + "description": "The lowest unoccupied energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "value_fundamental", + "description": "GW fundamental band gap", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "value_optical", + "description": "GW optical band gap", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "BandEnergies", + "description": "This section describes the eigenvalue spectrum for a set of kpoints given by band_energies_kpoints.", + "extending_sections": [ + "/packages/26/section_definitions/0", + "/packages/32/section_definitions/4", + "/packages/37/section_definitions/28", + "/packages/46/section_definitions/15", + "/packages/47/section_definitions/4", + "/packages/14/section_definitions/10" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_spin_channels", + "description": "Number of spin channels.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_bands", + "description": "Number of bands for which the eigenvalues are evaluated.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_kpoints", + "description": "Number of kpoints for which the eigenvalues are evaluated.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "kpoints", + "description": "Fractional coordinates of the $k$ or $q$ points (in the basis of the reciprocal-\nlattice vectors) for which the eigenvalues are evaluated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_kpoints", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "kpoints_weights", + "description": "Weights of the $k$ points in the calculation of the band energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_kpoints" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "kpoints_multiplicities", + "description": "Multiplicities of the $k$ point (i.e., how many distinct points per cell this\nexpands to after applying all symmetries). This defaults to 1. If expansion is\nperformed then each point will have weight\nband_energies_kpoints_weights/band_energies_kpoints_multiplicities.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_kpoints" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "endpoints_labels", + "description": "Labels of the points along a one-dimensional path sampled in the $k$-space or\n$q$-space, using the conventional symbols, e.g., Gamma, K, L.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "orbital_labels", + "description": "Labels corresponding to each band/orbital", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_bands" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "occupations", + "description": "Values of the occupations of the bands.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "Values of the band energies.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "qp_linearization_prefactor", + "description": "Values of the GW quasi particle linearization pre-factor.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "value_xc_potential", + "description": "Diagonal matrix elements of the GW exchange-correlation potential.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "value_correlation", + "description": "Diagonal matrix elements of the GW correlation energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "value_exchange", + "description": "Diagonal matrix elements of the GW exchange energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "value_xc", + "description": "Diagonal matrix elements of the GW exchange-correlation energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "value_qp", + "description": "Diagonal matrix elements of the GW quasi-particle energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "value_ks", + "description": "Diagonal matrix elements of the Kohn-Sham energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "value_ks_xc", + "description": "Diagonal matrix elements of the Kohn-Sham exchange-correlation energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_kpoints", + "n_bands" + ], + "unit": "joule" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "band_gap", + "sub_section": "/packages/2/section_definitions/12", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "BandStructure", + "description": "This section stores information on a band structure evaluation along one-dimensional pathways in the $k$ or $q$ (reciprocal) space given in section_band_segment.\nEigenvalues calculated at the actual $k$-mesh used for energy_total evaluations,\ncan be found in the eigenvalues section.", + "extending_sections": [ + "/packages/27/section_definitions/53", + "/packages/35/section_definitions/20", + "/packages/43/section_definitions/63" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "path_standard", + "description": "String to specify the standard used for the kpoints path within bravais\nlattice.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "reciprocal_cell", + "description": "The reciprocal cell within which the band structure is calculated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "1 / meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energy_fermi", + "description": "Fermi energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "band_gap", + "sub_section": "/packages/2/section_definitions/12", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "segment", + "sub_section": "/packages/2/section_definitions/13", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "DosFingerprint", + "description": "Section for the fingerprint of the electronic density-of-states (DOS). DOS fingerprints are a modification of the D-Fingerprints reported in Chem. Mater. 2015,\n27, 3, 735\u2013743 (doi:10.1021/cm503507h). The fingerprint consists of a binary\nrepresentation of the DOS, that is used to evaluate the similarity of materials based\non their electronic structure.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "bins", + "description": "Byte representation of the DOS fingerprint.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "indices", + "description": "Indices used to compare DOS fingerprints of different energy ranges.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "stepsize", + "description": "Stepsize of interpolation in the first step of the generation of DOS fingerprints.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "filling_factor", + "description": "Proportion of 1 bins in the DOS fingerprint.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "grid_id", + "description": "Identifier of the DOS grid that was used for the creation of the fingerprint.\nSimilarity can only be calculated if the same grid was used for both fingerprints.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "DosValues", + "description": "Section containing information regarding the values of the density of states (DOS).", + "base_sections": [ + "/packages/2/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "phonon_mode", + "description": "Phonon mode corresponding to the DOS used for phonon projections.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "normalization_factor", + "description": "Normalization factor for DOS values to get a cell-independent intensive DOS.\nFor total dos, this is given by 1 / (unit cell volume).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "1 / meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of DOS, i.e. number of states for a given energy. The set of discrete\nenergy values is given in energies.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_energies" + ], + "unit": "1 / joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "value_integrated", + "description": "Integrated DOS starting from the mimunum energy up to given a energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_energies" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "name": "Dos", + "description": "Section containing information of an electronic-energy or phonon density of states (DOS) evaluation.", + "base_sections": [ + "/packages/2/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_energies", + "description": "Gives the number of energy values for the DOS, see energies.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "Contains the set of discrete energy values for the DOS.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_energies" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energy_shift", + "description": "Value necessary to shift the energies array so that the energy zero corresponds to\nthe highest occupied energy level.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "energy_fermi", + "description": "Fermi energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "band_gap", + "sub_section": "/packages/2/section_definitions/12", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "total", + "sub_section": "/packages/2/section_definitions/16", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "atom_projected", + "sub_section": "/packages/2/section_definitions/16", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "species_projected", + "sub_section": "/packages/2/section_definitions/16", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "orbital_projected", + "sub_section": "/packages/2/section_definitions/16", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "fingerprint", + "sub_section": "/packages/2/section_definitions/15", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "section_definitions", + "name": "MultipolesValues", + "description": "Section containing the values of the multipoles projected unto an atom or orbital.", + "base_sections": [ + "/packages/2/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of the multipole.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "section_definitions", + "name": "MultipolesEntry", + "description": "Section describing a multipole term. The unit of the values are given by C * m ^ n, where n = 1 for dipole, 2 for quadrupole, etc.", + "base_sections": [ + "/packages/2/section_definitions/0" + ], + "extending_sections": [ + "/packages/55/section_definitions/3" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "origin", + "description": "Origin in cartesian space.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_multipoles", + "description": "Number of multipoles.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of the multipoles projected unto the atoms.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_atoms", + "n_multipoles" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "total", + "description": "Total value of the multipoles.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_multipoles" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "orbital_projected", + "sub_section": "/packages/2/section_definitions/18", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "section_definitions", + "name": "Multipoles", + "description": "Section containing the multipoles (dipoles, quadrupoles, ...) for each atom.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "Kind of the multipoles being described.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "dipole", + "sub_section": "/packages/2/section_definitions/19", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "quadrupole", + "sub_section": "/packages/2/section_definitions/19", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "octupole", + "sub_section": "/packages/2/section_definitions/19", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "higher_order", + "sub_section": "/packages/2/section_definitions/19", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "section_definitions", + "name": "Thermodynamics", + "description": "Section containing results related to a thermodynamics calculation.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "enthalpy", + "description": "Value of the calculated enthalpy per cell i.e. energy_total + pressure * volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "entropy", + "description": "Value of the entropy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "chemical_potential", + "description": "Value of the chemical potential.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "kinetic_energy", + "description": "Value of the kinetic energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "potential_energy", + "description": "Value of the potential energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "internal_energy", + "description": "Value of the internal energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "vibrational_free_energy_at_constant_volume", + "description": "Value of the vibrational free energy per cell unit at constant volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "pressure", + "description": "Value of the pressure of the system.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Value of the temperature of the system at which the properties are calculated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "volume", + "description": "Value of the volume of the system at which the properties are calculated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "heat_capacity_c_v", + "description": "Stores the heat capacity per cell unit at constant volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "heat_capacity_c_p", + "description": "Stores the heat capacity per cell unit at constant pressure.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "time_step", + "description": "The number of time steps with respect to the start of the calculation.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "section_definitions", + "name": "Volumetric", + "description": "Section defining a set of volumetric data on a uniform real-space grid. Kind should be specified if the data is not explicitly defined by a metainfo class.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "The kind of function if not already defined.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "multiplicity", + "description": "Number of functions stored.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_x", + "description": "number of points along x axis", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "n_y", + "description": "number of points along y axis", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_z", + "description": "number of points along z axis", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "displacements", + "description": "displacement vectors between grid points along each axis; same indexing rules as\nlattice_vectors. In many cases, displacements and number of points are related to\nlattice_vectors through: [displacement] * [number of points + N] =\n[lattice_vector],where N is 1 for periodic directions and 0 for non-periodic ones", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "origin", + "description": "location of the first grid point; same coordinate system as atom_positions when\napplicable.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of the volumetric data defined by kind.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "multiplicity", + "n_x", + "n_y", + "n_z" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "section_definitions", + "name": "PotentialValue", + "description": "Section containing the values of the potential evaluated on a uniform real-space grid.", + "base_sections": [ + "/packages/2/section_definitions/22" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of the potential evaluated at each grid point.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "multiplicity", + "n_x", + "n_y", + "n_z" + ], + "unit": "joule / meter ** 3" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 24, + "m_parent_sub_section": "section_definitions", + "name": "Potential", + "description": "Section containing all potential types.", + "base_sections": [ + "/packages/2/section_definitions/22" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "effective", + "sub_section": "/packages/2/section_definitions/23", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "hartree", + "sub_section": "/packages/2/section_definitions/23", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 25, + "m_parent_sub_section": "section_definitions", + "name": "Density", + "description": "Section containing the values of the density evaluated on a uniform real-space grid.", + "base_sections": [ + "/packages/2/section_definitions/22" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of the potential evaluated at each grid point.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "multiplicity", + "n_x", + "n_y", + "n_z" + ], + "unit": "1 / meter ** 3" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 26, + "m_parent_sub_section": "section_definitions", + "name": "HoppingMatrix", + "description": "Section containing the hopping/overlap matrix elements between two projected orbitals.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_orbitals", + "description": "Number of projected orbitals.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_wigner_seitz_points", + "description": "Number of Wigner-Seitz real points.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "degeneracy_factors", + "description": "Degeneracy of each Wigner-Seitz grid point.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_wigner_seitz_points" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Real space hopping matrix for each Wigner-Seitz grid point. The elements are\ndefined as follows:\n n_x n_y n_z orb_1 orb_2 real_part imag_part\nwhere (n_x, n_y, n_z) define the Wigner-Seitz cell vector in fractional coordinates,\n(orb_1, orb_2) indicates the hopping amplitude between orb_1 and orb_2, and the\nreal and imaginary parts of the hopping in electron_volt.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_wigner_seitz_points", + "n_orbitals * n_orbitals", + 7 + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 27, + "m_parent_sub_section": "section_definitions", + "name": "ExcitedStates", + "description": "Excited states properties.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_excited_states", + "description": "Number of excited states.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "excitation_energies", + "description": "Excitation energies.", + "categories": [ + "/packages/2/category_definitions/3" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_excited_states" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "oscillator_strengths", + "description": "Excited states oscillator strengths.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_excited_states" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "transition_dipole_moments", + "description": "Transition dipole moments.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_excited_states", + 3 + ], + "unit": "coulomb * meter" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 28, + "m_parent_sub_section": "section_definitions", + "name": "VibrationalFrequenciesValues", + "description": "Section describing a vibrational spectrum.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "kind", + "description": "Kind of the vibration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Short description of the vibration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_vibrations", + "description": "Number of values in the vibration spectrum.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "activity", + "description": "Describes the activity corresponding to each of the value of the vibration\nspectrum.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_vibrations" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "intensity", + "description": "Intensity of the vibration.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_vibrations" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 29, + "m_parent_sub_section": "section_definitions", + "name": "VibrationalFrequencies", + "description": "Section containing results related to vibrational frequencies.", + "extending_sections": [ + "/packages/32/section_definitions/9", + "/packages/54/section_definitions/11" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_frequencies", + "description": "Number of vibration frequencies", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of vibrational frequencies (m-1)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_frequencies" + ], + "unit": "1 / meter" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "raman", + "sub_section": "/packages/2/section_definitions/28", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "infrared", + "sub_section": "/packages/2/section_definitions/28", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 30, + "m_parent_sub_section": "section_definitions", + "name": "RadiusOfGyrationValues", + "description": "Section containing information regarding the values of radius of gyration (Rg).", + "base_sections": [ + "/packages/2/section_definitions/3" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of Rg.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 31, + "m_parent_sub_section": "section_definitions", + "name": "RadiusOfGyration", + "description": "Section containing information about the calculation of radius of gyration (Rg).", + "base_sections": [ + "/packages/2/section_definitions/2" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "radius_of_gyration_values", + "sub_section": "/packages/2/section_definitions/30", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 32, + "m_parent_sub_section": "section_definitions", + "name": "BaseCalculation", + "description": "Contains computed properties of a configuration as defined by the corresponding section system and with the simulation method defined by section method. The\nreferences to the system and method sections are given by system_ref and method_ref,\nrespectively.\n\nProperties derived from a group of configurations are not included in this section but\ncan be accessed in section workflow.", + "extending_sections": [ + "/packages/36/section_definitions/8" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "system_ref", + "description": "Links the calculation to a section system.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/1/section_definitions/6" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "method_ref", + "description": "Links the calculation to a section method.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/0/section_definitions/23" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "starting_calculation_ref", + "description": "Links the current section calculation to the starting calculation.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/34" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "n_references", + "description": "Number of references to the current section calculation.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "calculations_ref", + "description": "Links the current section calculation to other section calculations. Such a link\nis necessary for example if the referenced calculation is a self-consistent\ncalculation that serves as a starting point or a calculation is part of a domain\ndecomposed simulation that needs to be connected.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/34" + }, + "shape": [ + "n_references" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "calculations_path", + "description": "Links the current section calculation to other section calculations. Such a link\nis necessary for example if the referenced calculation is a self-consistent\ncalculation that serves as a starting point or a calculation is part of a domain\ndecomposed simulation that needs to be connected.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_references" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "time_calculation", + "description": "Stores the wall-clock time needed for a calculation i.e. the real time that has\nbeen elapsed from start to end.", + "categories": [ + "/packages/2/category_definitions/2", + "/packages/2/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "calculation_converged", + "description": "Indicates whether a the calculation is converged.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "hessian_matrix", + "description": "The matrix with the second derivative of the energy with respect to atom\ndisplacements.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + "number_of_atoms", + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "spin_S2", + "description": "Stores the value of the total spin moment operator $S^2$ for the converged\nwavefunctions calculated with the XC_method. It can be used to calculate the spin\ncontamination in spin-unrestricted calculations.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "time_physical", + "description": "The elapsed time with respect to the start of the simulation.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "volume", + "description": "Value of the volume of the system.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "pressure", + "description": "Value of the pressure of the system.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Value of the temperature of the system.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "step", + "description": "The number of time steps with respect to the start of the simulation.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "time", + "description": "The elapsed simulated physical time since the start of the simulation.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "energy", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/2/section_definitions/5" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "forces", + "sub_section": "/packages/2/section_definitions/7" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "stress", + "sub_section": "/packages/2/section_definitions/9" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "dos_electronic", + "sub_section": "/packages/2/section_definitions/17", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "dos_phonon", + "sub_section": "/packages/2/section_definitions/17", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "eigenvalues", + "sub_section": "/packages/2/section_definitions/13", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "band_structure_electronic", + "sub_section": "/packages/2/section_definitions/14", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "band_structure_phonon", + "sub_section": "/packages/2/section_definitions/14", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "thermodynamics", + "sub_section": "/packages/2/section_definitions/21", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "hopping_matrix", + "sub_section": "/packages/2/section_definitions/26", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "excited_states", + "sub_section": "/packages/2/section_definitions/27", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "vibrational_frequencies", + "sub_section": "/packages/2/section_definitions/29", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "potential", + "sub_section": "/packages/2/section_definitions/24", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "multipoles", + "sub_section": "/packages/2/section_definitions/20", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "charges", + "sub_section": "/packages/2/section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "density_charge", + "sub_section": "/packages/2/section_definitions/25", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "radius_of_gyration", + "sub_section": "/packages/2/section_definitions/31", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 33, + "m_parent_sub_section": "section_definitions", + "name": "ScfIteration", + "description": "Every scf_iteration section represents a self-consistent field (SCF) iteration, and gives detailed information on the SCF procedure of the specified quantities.", + "base_sections": [ + "/packages/2/section_definitions/32" + ], + "extending_sections": [ + "/packages/12/section_definitions/1", + "/packages/32/section_definitions/3", + "/packages/34/section_definitions/13", + "/packages/35/section_definitions/19", + "/packages/36/section_definitions/5", + "/packages/37/section_definitions/27", + "/packages/43/section_definitions/64", + "/packages/46/section_definitions/14", + "/packages/47/section_definitions/3", + "/packages/48/section_definitions/4", + "/packages/14/section_definitions/9" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 34, + "m_parent_sub_section": "section_definitions", + "name": "Calculation", + "description": "Every calculation section contains the values computed during a *single configuration calculation*, i.e. a calculation performed on a given\nconfiguration of the system (as defined in section_system) and a given computational\nmethod (e.g., exchange-correlation method, basis sets, as defined in section_method).\n\nThe link between the current section calculation and the related\nsystem and method sections is established by the values stored in system_ref and\nmethod_ref, respectively.\n\nThe reason why information on the system configuration and computational method is\nstored separately is that several *single configuration calculations* can be performed\non the same system configuration, viz. several system configurations can be evaluated\nwith the same computational method. This storage strategy avoids redundancies.", + "base_sections": [ + "/packages/2/section_definitions/32" + ], + "extending_sections": [ + "/packages/24/section_definitions/6", + "/packages/27/section_definitions/49", + "/packages/29/section_definitions/27", + "/packages/31/section_definitions/22", + "/packages/32/section_definitions/8", + "/packages/33/section_definitions/8", + "/packages/34/section_definitions/9", + "/packages/35/section_definitions/18", + "/packages/37/section_definitions/25", + "/packages/38/section_definitions/1", + "/packages/39/section_definitions/0", + "/packages/40/section_definitions/9", + "/packages/41/section_definitions/0", + "/packages/43/section_definitions/58", + "/packages/13/section_definitions/0", + "/packages/44/section_definitions/7", + "/packages/45/section_definitions/9", + "/packages/46/section_definitions/8", + "/packages/47/section_definitions/6", + "/packages/49/section_definitions/6", + "/packages/14/section_definitions/3", + "/packages/50/section_definitions/5", + "/packages/51/section_definitions/10", + "/packages/52/section_definitions/9", + "/packages/54/section_definitions/10", + "/packages/56/section_definitions/3", + "/packages/58/section_definitions/12", + "/packages/16/section_definitions/0", + "/packages/59/section_definitions/8", + "/packages/62/section_definitions/5", + "/packages/63/section_definitions/8" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_scf_iterations", + "description": "Gives the number of performed self-consistent field (SCF) iterations.", + "categories": [ + "/packages/2/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "scf_iteration", + "sub_section": "/packages/2/section_definitions/33", + "repeats": true + } + ] + } + ], + "category_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 0, + "m_parent_sub_section": "category_definitions", + "name": "ScfInfo", + "description": "Contains information on the self-consistent field (SCF) procedure, i.e. the number of\nSCF iterations (number_of_scf_iterations) or a section_scf_iteration section with\ndetailed information on the SCF procedure of specified quantities." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 1, + "m_parent_sub_section": "category_definitions", + "name": "AccessoryInfo", + "description": "Information that *in theory* should not affect the results of the calculations (e.g.,\ntiming)." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 2, + "m_parent_sub_section": "category_definitions", + "name": "TimeInfo", + "description": "Stores information on the date and timings of the calculation. They are useful for,\ne.g., debugging or visualization purposes.", + "categories": [ + "/packages/2/category_definitions/1" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 3, + "m_parent_sub_section": "category_definitions", + "name": "EnergyValue", + "description": "This metadata stores an energy value." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 4, + "m_parent_sub_section": "category_definitions", + "name": "EnergyTypeReference", + "description": "This metadata stores an energy used as reference point.", + "categories": [ + "/packages/2/category_definitions/3" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 5, + "m_parent_sub_section": "category_definitions", + "name": "ErrorEstimateContribution", + "description": "An estimate of a partial quantity contributing to the error for a given quantity." + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 3, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.simulation.run", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "Program", + "description": "Contains the specifications of the program.", + "extending_sections": [ + "/packages/32/section_definitions/6", + "/packages/49/section_definitions/2" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Specifies the name of the program that generated the data.", + "categories": [ + "/packages/3/category_definitions/0", + "/packages/3/category_definitions/1" + ], + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "version", + "description": "Specifies the version of the program that was used. This should be the version\nnumber of an official release, the version tag or a commit id as well as the\nlocation of the repository.", + "categories": [ + "/packages/3/category_definitions/0", + "/packages/3/category_definitions/1" + ], + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "compilation_datetime", + "description": "Contains the program compilation date and time from *Unix epoch* (00:00:00 UTC on\n1 January 1970) in seconds. For date and times without a timezone, the default\ntimezone GMT is used.", + "categories": [ + "/packages/3/category_definitions/0", + "/packages/3/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "compilation_host", + "description": "Specifies the host on which the program was compiled.", + "categories": [ + "/packages/3/category_definitions/0", + "/packages/3/category_definitions/1" + ], + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "TimeRun", + "description": "Contains information on timing information of the run.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "date_end", + "description": "Stores the end date of the run as time since the *Unix epoch* (00:00:00 UTC on 1\nJanuary 1970) in seconds. For date and times without a timezone, the default\ntimezone GMT is used.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "date_start", + "description": "Stores the start date of the run as time since the *Unix epoch* (00:00:00 UTC on 1\nJanuary 1970) in seconds. For date and times without a timezone, the default\ntimezone GMT is used.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "cpu1_end", + "description": "Stores the end time of the run on CPU 1.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "cpu1_start", + "description": "Stores the start time of the run on CPU 1.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "wall_end", + "description": "Stores the internal wall-clock time at the end of the run.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "wall_start", + "description": "Stores the internal wall-clock time from the start of the run.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "MessageRun", + "description": "Contains warning, error, and info messages of the run.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type of the message. Can be one of warning, error, info, debug.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Value of the message of the computational program, given by type.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Run", + "description": "Every section run represents a single call of a program.", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "extending_sections": [ + "/packages/25/section_definitions/2", + "/packages/24/section_definitions/3", + "/packages/27/section_definitions/46", + "/packages/28/section_definitions/1015", + "/packages/29/section_definitions/23", + "/packages/30/section_definitions/330", + "/packages/31/section_definitions/19", + "/packages/12/section_definitions/2", + "/packages/34/section_definitions/15", + "/packages/35/section_definitions/22", + "/packages/36/section_definitions/3", + "/packages/37/section_definitions/26", + "/packages/40/section_definitions/7", + "/packages/41/section_definitions/1", + "/packages/42/section_definitions/0", + "/packages/43/section_definitions/55", + "/packages/44/section_definitions/0", + "/packages/45/section_definitions/8", + "/packages/46/section_definitions/9", + "/packages/47/section_definitions/7", + "/packages/48/section_definitions/3", + "/packages/49/section_definitions/3", + "/packages/14/section_definitions/4", + "/packages/51/section_definitions/8", + "/packages/52/section_definitions/3", + "/packages/53/section_definitions/5", + "/packages/54/section_definitions/9", + "/packages/56/section_definitions/0", + "/packages/15/section_definitions/8", + "/packages/59/section_definitions/2", + "/packages/64/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "calculation_file_uri", + "description": "Contains the nomad uri of a raw the data file connected to the current run. There\nshould be an value for the main_file_uri and all ancillary files.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "clean_end", + "description": "Indicates whether this run terminated properly (true), or if it was killed or\nexited with an error code unequal to zero (false).", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "raw_id", + "description": "An optional calculation id, if one is found in the code input/output files.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "starting_run_ref", + "description": "Links the current section run to a section run containing the calculations from\nwhich the current section starts.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/3/section_definitions/3" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_references", + "description": "Number of references to the current section calculation.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "runs_ref", + "description": "Links the the current section to other run sections. Such a link is necessary for\nexample for workflows that may contain a series of runs.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/3/section_definitions/3" + }, + "shape": [ + "n_references" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "program", + "sub_section": "/packages/3/section_definitions/0" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "time_run", + "sub_section": "/packages/3/section_definitions/1" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "message", + "sub_section": "/packages/3/section_definitions/2" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "method", + "sub_section": "/packages/0/section_definitions/23", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "system", + "sub_section": "/packages/1/section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "calculation", + "sub_section": "/packages/2/section_definitions/34", + "repeats": true + } + ] + } + ], + "category_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 0, + "m_parent_sub_section": "category_definitions", + "name": "AccessoryInfo", + "description": "Information that *in theory* should not affect the results of the calculations (e.g.,\ntiming)." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 1, + "m_parent_sub_section": "category_definitions", + "name": "ProgramInfo", + "description": "Contains information on the program that generated the data, i.e. the program_name,\nprogram_version, program_compilation_host and program_compilation_datetime as direct\nchildren of this field.", + "categories": [ + "/packages/3/category_definitions/0" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 4, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.measurements", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "Sample", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "sample_id", + "description": "Identification number or signatures of the sample used.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "A human readable free text name for the sample.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "A description of the sample.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "sample_state", + "description": "The physical state of the sample.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "sample_temperature", + "description": "The temperature of the sample during the measurement.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "sample_microstructure", + "description": "The sample microstructure.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "sample_constituents", + "description": "The constituents.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "elements", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Experiment", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "A human readable free text name for the experiment.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "A description of the experiment.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "steps", + "description": "Human readable experiment steps.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "sample_ref", + "description": "Reference to the used sample.", + "type": { + "type_kind": "reference", + "type_data": "/packages/4/section_definitions/0" + } + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "description": "The used sample.", + "sub_section": "/packages/4/section_definitions/0" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "measurement", + "description": "Measurements performed in this experiment.", + "sub_section": "/packages/4/section_definitions/3", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Instrument", + "extending_sections": [ + "/packages/17/section_definitions/4" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "instrument_id", + "description": "Identification number or signatures of the instrument used.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "A human readable free text name for the instrument.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "A description of the instrument.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Measurement", + "extending_sections": [ + "/packages/17/section_definitions/3" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "measurement_id", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "method_name", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "method_abbreviation", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "The datetime of the beginning of the measurement.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "The datetime of the measurement end.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "facility", + "description": "Description of the facility (e.g. in full or an acronym) where\nthe measurement was conducted.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "sub_section": "/packages/4/section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "sub_section": "/packages/4/section_definitions/2", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "SpectrumChannel", + "description": "Provides the metadata for a generic additional spectrum channel. Do not use it for energy or count; they have their predefined channels.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "channel_id", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "label", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "unit", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Spectrum", + "description": "Generic spectrum data with energies and counts. May include additional channels.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "count", + "description": "The count at each energy value, dimensionless", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "The energy range of the spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "additional_channel_data", + "description": "Data from additional channels. The channels are described in `additional channels`.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_channels", + "n_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_additional_channels", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "additional_channels", + "description": "Metadata for additional channels. The order is the same as the channel data\nappears in `additional_channel_data`.", + "sub_section": "/packages/4/section_definitions/5/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "SpectrumChannel", + "description": "Provides the metadata for a generic additional spectrum channel. Do not use it for energy or count; they have their predefined channels.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "channel_id", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "label", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "unit", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 5, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.results", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "BandGap", + "description": "\n Band gap information.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Label to identify the band gap data, e.g. method employed.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.band_gap_optical.index" + ] + }, + "name": "index", + "description": "Index of the data, e.g. spin channel index.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.band_gap_optical.value" + ] + }, + "name": "value", + "description": "Band gap value. Value of zero corresponds to not having a band gap.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.band_gap_optical.type", + "results.properties.optoelectronic.band_gap_optical.type__suggestion.suggestion" + ] + }, + "name": "type", + "description": "Band gap type.", + "type": { + "type_kind": "Enum", + "type_data": [ + "direct", + "indirect" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "BandGapElectronic", + "description": "\n Band gap information for electronic structure.\n ", + "base_sections": [ + "/packages/5/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy_highest_occupied", + "description": "The highest occupied energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energy_lowest_unoccupied", + "description": "The lowest unoccupied energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "BandGapOptical", + "description": "\n Optical band gap.\n ", + "base_sections": [ + "/packages/5/section_definitions/0" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "LatticeParameters", + "description": "\n Lattice parameters of a cell.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.lattice_parameters.a" + ] + }, + "name": "a", + "description": "Length of the first basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.lattice_parameters.b" + ] + }, + "name": "b", + "description": "Length of the second basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.lattice_parameters.c" + ] + }, + "name": "c", + "description": "Length of the third basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.lattice_parameters.alpha" + ] + }, + "name": "alpha", + "description": "Angle between second and third basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "radian" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.lattice_parameters.beta" + ] + }, + "name": "beta", + "description": "Angle between first and third basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "radian" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.lattice_parameters.gamma" + ] + }, + "name": "gamma", + "description": "Angle between first and second basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "radian" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "WyckoffSet", + "description": "\n Section for storing Wyckoff set information. Only available for\n conventional cells that have undergone symmetry analysis.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wyckoff_letter", + "description": "The Wyckoff letter for this set.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "indices", + "description": "Indices of the atoms belonging to this group.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "1..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "element", + "description": "Chemical element at this Wyckoff position.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x", + "description": "The free parameter x if present.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "y", + "description": "The free parameter y if present.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "z", + "description": "The free parameter z if present.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Structure", + "description": "\n Describes an atomistic structure.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "dimension_types", + "description": "List of three integers. For each of the three directions indicated by\nthe three lattice vectors (see property lattice_vectors). This list\nindicates if the direction is periodic (value 1) or non-periodic (value\n0). Note: the elements in this list each refer to the direction of the\ncorresponding entry in lattice_vectors and not the Cartesian x, y, z\ndirections.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [ + 3 + ], + "default": [ + 0, + 0, + 0 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.nperiodic_dimensions" + ] + }, + "name": "nperiodic_dimensions", + "description": "An integer specifying the number of periodic dimensions in the\nstructure, equivalent to the number of non-zero entries in\ndimension_types.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "lattice_vectors", + "description": "The three lattice vectors in Cartesian coordinates.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "cartesian_site_positions", + "description": "Cartesian positions of each site. A site is an atom, a site potentially\noccupied by an atom, or a placeholder for a virtual mixture of atoms\n(e.g., in a virtual crystal approximation).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_sites", + 3 + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.n_sites" + ] + }, + "name": "n_sites", + "description": "An integer specifying the length of the cartesian_site_positions property.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "default": 0, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "species_at_sites", + "description": "Name of the species at each site (where values for sites are specified with the same\norder of the cartesian_site_positions property). The properties of the species are\nfound in the species property.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_sites" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.structure_optimized.cell_volume" + ] + }, + "name": "cell_volume", + "description": "Volume of the cell.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "atomic_density", + "description": "Atomic density of the material (atoms/volume).'", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "1 / meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "mass_density", + "description": "Mass density of the material.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "kilogram / meter ** 3" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "species", + "sub_section": "/packages/23/section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "lattice_parameters", + "sub_section": "/packages/5/section_definitions/3" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "wyckoff_sets", + "sub_section": "/packages/5/section_definitions/4", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "Structures", + "description": "\n Contains full atomistic representations of the material in different\n forms.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "structure_original", + "description": "Contains a selected representative structure from the the original\ndata.", + "sub_section": "/packages/5/section_definitions/5", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "structure_conventional", + "description": "Contains the conventional structure that is derived from\nstructure_original. This conventional stucture has been idealized and\nthe conventions employed by spglib are used.", + "sub_section": "/packages/5/section_definitions/5", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "structure_primitive", + "description": "Contains the primitive structure that is derived from\nstructure_original. This primitive stucture has been idealized and the\nconventions employed by spglib are used.", + "sub_section": "/packages/5/section_definitions/5", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "Symmetry", + "description": "\n Section containing information about the symmetry of the material. All\n of these properties are derived by running a symmetry analysis on a\n representative geometry from the original data. This original geometry\n is stored in results.properties together with the primitive and\n conventional structures.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.bravais_lattice", + "results.material.symmetry.bravais_lattice__suggestion.suggestion" + ] + }, + "name": "bravais_lattice", + "description": "Identifier for the Bravais lattice in Pearson notation. The first lowercase letter\nidentifies the crystal family and can be one of the following: a (triclinic), b\n(monoclinic), o (orthorhombic), t (tetragonal), h (hexagonal) or c (cubic). The\nsecond uppercase letter identifies the centring and can be one of the following: P\n(primitive), S (face centred), I (body centred), R (rhombohedral centring) or F\n(all faces centred).", + "type": { + "type_kind": "Enum", + "type_data": [ + "aP", + "mP", + "mS", + "oP", + "oS", + "oF", + "oI", + "tP", + "tI", + "hP", + "hR", + "cP", + "cF", + "cI" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.crystal_system", + "results.material.symmetry.crystal_system__suggestion.suggestion" + ] + }, + "name": "crystal_system", + "description": "Name of the crystal system.", + "type": { + "type_kind": "Enum", + "type_data": [ + "triclinic", + "monoclinic", + "orthorhombic", + "tetragonal", + "trigonal", + "hexagonal", + "cubic" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.hall_number" + ] + }, + "name": "hall_number", + "description": "The Hall number for this system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.hall_symbol", + "results.material.symmetry.hall_symbol__suggestion.suggestion" + ] + }, + "name": "hall_symbol", + "description": "The Hall symbol for this system.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.point_group", + "results.material.symmetry.point_group__suggestion.suggestion" + ] + }, + "name": "point_group", + "description": "Symbol of the crystallographic point group in the Hermann-Mauguin notation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.space_group_number" + ] + }, + "name": "space_group_number", + "description": "Specifies the International Union of Crystallography (IUC) number of the 3D space\ngroup of this system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.space_group_symbol", + "results.material.symmetry.space_group_symbol__suggestion.suggestion" + ] + }, + "name": "space_group_symbol", + "description": "The International Union of Crystallography (IUC) short symbol of the 3D\nspace group of this system.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.prototype_formula" + ] + }, + "name": "prototype_formula", + "description": "The formula of the prototypical material for this structure.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.prototype_aflow_id", + "results.material.symmetry.prototype_aflow_id__suggestion.suggestion" + ] + }, + "name": "prototype_aflow_id", + "description": "The identifier of this structure in the AFLOW encyclopedia of\ncrystallographic prototypes:\nhttp://www.aflowlib.org/prototype-encyclopedia/index.html", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.structure_name", + "results.material.symmetry.structure_name__suggestion" + ] + }, + "name": "structure_name", + "description": "A common name for this structure, e.g. fcc, bcc.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.symmetry.strukturbericht_designation", + "results.material.symmetry.strukturbericht_designation__suggestion.suggestion" + ] + }, + "name": "strukturbericht_designation", + "description": "Classification of the material according to the historically grown\n'strukturbericht'.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "Cell", + "description": "\n Properties of a unit cell.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.a" + ] + }, + "name": "a", + "description": "Length of the first basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.b" + ] + }, + "name": "b", + "description": "Length of the second basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.c" + ] + }, + "name": "c", + "description": "Length of the third basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.alpha" + ] + }, + "name": "alpha", + "description": "Angle between second and third basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "radian" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.beta" + ] + }, + "name": "beta", + "description": "Angle between first and third basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "radian" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.gamma" + ] + }, + "name": "gamma", + "description": "Angle between first and second basis vector.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "radian" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.volume" + ] + }, + "name": "volume", + "description": "Volume of the cell.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.atomic_density" + ] + }, + "name": "atomic_density", + "description": "Atomic density of the material (atoms/volume).'", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "1 / meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.cell.mass_density" + ] + }, + "name": "mass_density", + "description": "Mass density of the material.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "kilogram / meter ** 3" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "Prototype", + "description": "Information on the prototype corresponding to the current section.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.prototype.aflow_id", + "results.material.topology.prototype.aflow_id__suggestion.suggestion" + ] + }, + "name": "aflow_id", + "description": "AFLOW id of the prototype (see\nhttp://aflowlib.org/CrystalDatabase/prototype_index.html) identified on the basis\nof the space_group and normalized_wyckoff.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "assignment_method", + "description": "Method used to identify the prototype.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Label of the prototype identified on the basis of the space_group and\nnormalized_wyckoff. The label is in the same format as in the read_prototypes\nfunction: <space_group_number>-<prototype_name>-<Pearson's symbol>).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.prototype.name", + "results.material.topology.prototype.name__suggestion" + ] + }, + "name": "name", + "description": "A common name for this prototypical structure, e.g. fcc, bcc.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.prototype.formula" + ] + }, + "name": "formula", + "description": "The formula of the prototypical material for this structure.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "SymmetryNew", + "description": "\n Section containing information about the symmetry properties of a\n conventional cell related to a system.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.symmetry.bravais_lattice", + "results.material.topology.symmetry.bravais_lattice__suggestion.suggestion" + ] + }, + "name": "bravais_lattice", + "description": "Identifier for the Bravais lattice in Pearson notation. The first lowercase letter\nidentifies the crystal family and can be one of the following: a (triclinic), b\n(monoclinic), o (orthorhombic), t (tetragonal), h (hexagonal) or c (cubic). The\nsecond uppercase letter identifies the centring and can be one of the following: P\n(primitive), S (face centred), I (body centred), R (rhombohedral centring) or F\n(all faces centred).", + "type": { + "type_kind": "Enum", + "type_data": [ + "aP", + "mP", + "mS", + "oP", + "oS", + "oF", + "oI", + "tP", + "tI", + "hP", + "hR", + "cP", + "cF", + "cI" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.symmetry.crystal_system", + "results.material.topology.symmetry.crystal_system__suggestion.suggestion" + ] + }, + "name": "crystal_system", + "description": "Name of the crystal system.", + "type": { + "type_kind": "Enum", + "type_data": [ + "triclinic", + "monoclinic", + "orthorhombic", + "tetragonal", + "trigonal", + "hexagonal", + "cubic" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.symmetry.hall_number" + ] + }, + "name": "hall_number", + "description": "The Hall number for this system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.symmetry.hall_symbol", + "results.material.topology.symmetry.hall_symbol__suggestion.suggestion" + ] + }, + "name": "hall_symbol", + "description": "The Hall symbol for this system.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.symmetry.point_group", + "results.material.topology.symmetry.point_group__suggestion.suggestion" + ] + }, + "name": "point_group", + "description": "Symbol of the crystallographic point group in the Hermann-Mauguin notation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.symmetry.space_group_number" + ] + }, + "name": "space_group_number", + "description": "Specifies the International Union of Crystallography (IUC) number of the 3D space\ngroup of this system.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.symmetry.space_group_symbol", + "results.material.topology.symmetry.space_group_symbol__suggestion.suggestion" + ] + }, + "name": "space_group_symbol", + "description": "The International Union of Crystallography (IUC) short symbol of the 3D\nspace group of this system.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "choice", + "description": "String that specifies the centering, origin and basis vector settings of the 3D\nspace group that defines the symmetry group of the simulated physical system (see\nsection system). Values are as defined by spglib.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.symmetry.strukturbericht_designation", + "results.material.topology.symmetry.strukturbericht_designation__suggestion.suggestion" + ] + }, + "name": "strukturbericht_designation", + "description": "Classification of the material according to the historically grown\n'strukturbericht'.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "symmetry_method", + "description": "Identifies the source of the symmetry information contained within this\nsection. If equal to 'spg_normalized' the information comes from a\nnormalization step.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "origin_shift", + "description": "Vector $\\mathbf{p}$ from the origin of the standardized system to the origin of\nthe original system. Together with the matrix $\\mathbf{P}$, found in\nspace_group_3D_transformation_matrix, the transformation between the standardized\ncoordinates $\\mathbf{x}_s$ and original coordinates $\\mathbf{x}$ is then given\nby $\\mathbf{x}_s = \\mathbf{P} \\mathbf{x} + \\mathbf{p}$.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "transformation_matrix", + "description": "Matrix $\\mathbf{P}$ that is used to transform the standardized coordinates to the\noriginal coordinates. Together with the vector $\\mathbf{p}$, found in\nspace_group_3D_origin_shift, the transformation between the standardized\ncoordinates $\\mathbf{x}_s$ and original coordinates $\\mathbf{x}$ is then given by\n$\\mathbf{x}_s = \\mathbf{P} \\mathbf{x} + \\mathbf{p}$.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "symmorphic", + "description": "Specifies if the space group is symmorphic. Set to True if all\ntranslations are zero.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "Species", + "description": "Contains information about a particle species. Note that the particle can also be something else than atoms, e.g. coarse-grained particle, isotopes,\netc.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "name" + ] + }, + "name": "name", + "description": "Name that uniquely identifies this species within a system.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "mass", + "description": "Mass of the species.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kilogram" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "atomic_number", + "description": "The atomic number of the species if available.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "Relation", + "description": "Contains information about the relation between two different systems.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.system_relation.type" + ] + }, + "name": "type", + "description": "The type of relation.", + "type": { + "type_kind": "Enum", + "type_data": [ + "subsystem", + "idealization" + ] + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "System", + "description": "\n Describes a a structural part that has been identified within the entry.\n May be related to other systems.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.system_id" + ] + }, + "name": "system_id", + "description": "That path of this section within the metainfo that is used as a unique\nidentifier.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.label" + ] + }, + "name": "label", + "description": "Descriptive label that identifies this structural part.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.method" + ] + }, + "name": "method", + "description": "The method used for identifying this system.", + "type": { + "type_kind": "Enum", + "type_data": [ + "parser", + "user", + "matid" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.description" + ] + }, + "name": "description", + "description": "A short description about this part of the topology.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.material_id" + ] + }, + "name": "material_id", + "description": "A fixed length, unique material identifier in the form of a hash\ndigest.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.material_name", + "results.material.topology.material_name__suggestion" + ] + }, + "name": "material_name", + "description": "Meaningful names for this a material if any can be assigned.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.structural_type", + "results.material.topology.structural_type__suggestion" + ] + }, + "name": "structural_type", + "description": "The structural classification for this system.", + "type": { + "type_kind": "Enum", + "type_data": [ + "bulk", + "surface", + "2D", + "1D", + "molecule / cluster", + "atom", + "unavailable", + "not processed", + "group", + "molecule", + "monomer" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.functional_type", + "results.material.topology.functional_type__suggestion" + ] + }, + "name": "functional_type", + "description": "Classification based on the functional properties.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.compound_type", + "results.material.topology.compound_type__suggestion" + ] + }, + "name": "compound_type", + "description": "Classification based on the chemical formula.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.elements", + "results.material.topology.elements__suggestion.suggestion" + ] + }, + "name": "elements", + "description": "Names of the different elements present in the structure.", + "type": { + "type_kind": "Enum", + "type_data": [ + "X", + "H", + "He", + "Li", + "Be", + "B", + "C", + "N", + "O", + "F", + "Ne", + "Na", + "Mg", + "Al", + "Si", + "P", + "S", + "Cl", + "Ar", + "K", + "Ca", + "Sc", + "Ti", + "V", + "Cr", + "Mn", + "Fe", + "Co", + "Ni", + "Cu", + "Zn", + "Ga", + "Ge", + "As", + "Se", + "Br", + "Kr", + "Rb", + "Sr", + "Y", + "Zr", + "Nb", + "Mo", + "Tc", + "Ru", + "Rh", + "Pd", + "Ag", + "Cd", + "In", + "Sn", + "Sb", + "Te", + "I", + "Xe", + "Cs", + "Ba", + "La", + "Ce", + "Pr", + "Nd", + "Pm", + "Sm", + "Eu", + "Gd", + "Tb", + "Dy", + "Ho", + "Er", + "Tm", + "Yb", + "Lu", + "Hf", + "Ta", + "W", + "Re", + "Os", + "Ir", + "Pt", + "Au", + "Hg", + "Tl", + "Pb", + "Bi", + "Po", + "At", + "Rn", + "Fr", + "Ra", + "Ac", + "Th", + "Pa", + "U", + "Np", + "Pu", + "Am", + "Cm", + "Bk", + "Cf", + "Es", + "Fm", + "Md", + "No", + "Lr", + "Rf", + "Db", + "Sg", + "Bh", + "Hs", + "Mt", + "Ds", + "Rg", + "Cn", + "Nh", + "Fl", + "Mc", + "Lv", + "Ts", + "Og" + ] + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.n_elements" + ] + }, + "name": "n_elements", + "description": "Number of different elements in the structure as an integer.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "default": 0, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.elements_exclusive" + ] + }, + "name": "elements_exclusive", + "description": "String containing the chemical elements in alphabetical order and\nseparated by a single whitespace. This quantity can be used for\nexclusive element searches where you want to find entries/materials\nwith only certain given elements.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.formula_hill", + "results.material.topology.formula_hill__suggestion" + ] + }, + "name": "formula_hill", + "description": "The chemical formula for a structure in Hill form with element symbols followed by\ninteger chemical proportion numbers. The proportion number MUST be omitted if it is 1.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.formula_reduced", + "results.material.topology.formula_reduced__suggestion" + ] + }, + "name": "formula_reduced", + "description": "The reduced chemical formula for a structure as a string with element symbols and\ninteger chemical proportion numbers. The proportion number MUST be omitted if it is 1.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.formula_anonymous", + "results.material.topology.formula_anonymous__suggestion" + ] + }, + "name": "formula_anonymous", + "description": "The anonymous formula is the chemical_formula_reduced, but where the elements are\ninstead first ordered by their chemical proportion number, and then, in order left to\nright, replaced by anonymous symbols A, B, C, ..., Z, Aa, Ba, ..., Za, Ab, Bb, ... and\nso on.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.formula_reduced_fragments" + ] + }, + "name": "formula_reduced_fragments", + "description": "The reduced formula separated into individual terms containing both the atom\ntype and count. Used for searching parts of a formula.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.parent_system" + ] + }, + "name": "parent_system", + "description": "Reference to the parent system.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.child_systems" + ] + }, + "name": "child_systems", + "description": "References to the child systems.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "atoms_ref", + "description": "Reference to an atomistic structure that is associated with this\nsystem'.", + "type": { + "type_kind": "reference", + "type_data": "/packages/5/section_definitions/5" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.topology.n_atoms" + ] + }, + "name": "n_atoms", + "description": "The total number of species (atoms, particles) in the system.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "indices", + "description": "Indices of the atoms belonging to this group. These indices refer to\nthe original system. Each row represents a new instance.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "*", + "*" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "atoms", + "description": "The atomistic structure that is associated with this\nsystem'.", + "sub_section": "/packages/5/section_definitions/5", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "system_relation", + "sub_section": "/packages/5/section_definitions/12", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "cell", + "sub_section": "/packages/5/section_definitions/8", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "symmetry", + "sub_section": "/packages/5/section_definitions/10", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "prototype", + "sub_section": "/packages/5/section_definitions/9", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "Material", + "description": "\n Contains information that is specific to bulk crystalline materials.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.material_id" + ] + }, + "name": "material_id", + "description": "A fixed length, unique material identifier in the form of a hash\ndigest.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.material_name", + "results.material.material_name__suggestion" + ] + }, + "name": "material_name", + "description": "Meaningful names for this a material if any can be assigned.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.structural_type", + "results.material.structural_type__suggestion" + ] + }, + "name": "structural_type", + "description": "Classification based on structural features.", + "type": { + "type_kind": "Enum", + "type_data": [ + "bulk", + "surface", + "2D", + "1D", + "molecule / cluster", + "atom", + "unavailable", + "not processed" + ] + }, + "default": "not processed" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.functional_type", + "results.material.functional_type__suggestion" + ] + }, + "name": "functional_type", + "description": "Classification based on the functional properties.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.compound_type", + "results.material.compound_type__suggestion" + ] + }, + "name": "compound_type", + "description": "Classification based on the chemical formula.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.elements", + "results.material.elements__suggestion.suggestion" + ] + }, + "name": "elements", + "description": "Names of the different elements present in the structure.", + "type": { + "type_kind": "Enum", + "type_data": [ + "X", + "H", + "He", + "Li", + "Be", + "B", + "C", + "N", + "O", + "F", + "Ne", + "Na", + "Mg", + "Al", + "Si", + "P", + "S", + "Cl", + "Ar", + "K", + "Ca", + "Sc", + "Ti", + "V", + "Cr", + "Mn", + "Fe", + "Co", + "Ni", + "Cu", + "Zn", + "Ga", + "Ge", + "As", + "Se", + "Br", + "Kr", + "Rb", + "Sr", + "Y", + "Zr", + "Nb", + "Mo", + "Tc", + "Ru", + "Rh", + "Pd", + "Ag", + "Cd", + "In", + "Sn", + "Sb", + "Te", + "I", + "Xe", + "Cs", + "Ba", + "La", + "Ce", + "Pr", + "Nd", + "Pm", + "Sm", + "Eu", + "Gd", + "Tb", + "Dy", + "Ho", + "Er", + "Tm", + "Yb", + "Lu", + "Hf", + "Ta", + "W", + "Re", + "Os", + "Ir", + "Pt", + "Au", + "Hg", + "Tl", + "Pb", + "Bi", + "Po", + "At", + "Rn", + "Fr", + "Ra", + "Ac", + "Th", + "Pa", + "U", + "Np", + "Pu", + "Am", + "Cm", + "Bk", + "Cf", + "Es", + "Fm", + "Md", + "No", + "Lr", + "Rf", + "Db", + "Sg", + "Bh", + "Hs", + "Mt", + "Ds", + "Rg", + "Cn", + "Nh", + "Fl", + "Mc", + "Lv", + "Ts", + "Og" + ] + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.n_elements" + ] + }, + "name": "n_elements", + "description": "Number of different elements in the structure as an integer.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "default": 0, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.elements_exclusive" + ] + }, + "name": "elements_exclusive", + "description": "String containing the chemical elements in alphabetical order and\nseparated by a single whitespace. This quantity can be used for\nexclusive element searches where you want to find entries/materials\nwith only certain given elements.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.chemical_formula_descriptive", + "results.material.chemical_formula_descriptive__suggestion" + ] + }, + "name": "chemical_formula_descriptive", + "description": "The chemical formula for a structure as a string in a form chosen by the API\nimplementation.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.chemical_formula_reduced", + "results.material.chemical_formula_reduced__suggestion" + ] + }, + "name": "chemical_formula_reduced", + "description": "The reduced chemical formula for a structure as a string with element symbols and\ninteger chemical proportion numbers. The proportion number MUST be omitted if it is 1.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.chemical_formula_hill", + "results.material.chemical_formula_hill__suggestion" + ] + }, + "name": "chemical_formula_hill", + "description": "The chemical formula for a structure in Hill form with element symbols followed by\ninteger chemical proportion numbers. The proportion number MUST be omitted if it is 1.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.chemical_formula_anonymous", + "results.material.chemical_formula_anonymous__suggestion" + ] + }, + "name": "chemical_formula_anonymous", + "description": "The anonymous formula is the chemical_formula_reduced, but where the elements are\ninstead first ordered by their chemical proportion number, and then, in order left to\nright, replaced by anonymous symbols A, B, C, ..., Z, Aa, Ba, ..., Za, Ab, Bb, ... and\nso on.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.material.chemical_formula_reduced_fragments" + ] + }, + "name": "chemical_formula_reduced_fragments", + "description": "The reduced formula separated into individual terms containing both the atom\ntype and count. Used for searching parts of a formula.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "symmetry", + "sub_section": "/packages/5/section_definitions/7", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "topology" + ] + }, + "name": "topology", + "sub_section": "/packages/5/section_definitions/13", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "HubbardModel", + "description": "Setup of the Hubbard model used in DFT+U", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "atom_label", + "description": "String used to identify the atoms of this kind. This should correspond to the\natom labels of the configuration. It is possible for one atom kind to have\nmultiple labels (in order to allow two atoms of the same kind to have two\ndifferently defined sets of atom-centered basis functions or two different pseudo-\npotentials). Atom kind is typically the symbol of the atomic species but it can be\nalso a ghost or pseudo-atom.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "orbital", + "description": "Orbital label corresponding to the parameter setting following the notation:\n'(3)d', '(4)f', ...", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.hubbard_model.u_effective" + ] + }, + "name": "u_effective", + "description": "Value of the effective U parameter (U-J).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.hubbard_model.u" + ] + }, + "name": "u", + "description": "Value of the on-site Coulomb interaction U", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.hubbard_model.j" + ] + }, + "name": "j", + "description": "Value of the exchange interaction J", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "method", + "description": "Name of the correction algorithm applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "projection_type", + "description": "Type of orbitals used for projection in order to calculate occupation numbers.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "DFT", + "description": "\n Methodology for a DFT calculation.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.basis_set_type", + "results.method.simulation.dft.basis_set_type__suggestion" + ] + }, + "name": "basis_set_type", + "description": "The used basis set functions.", + "type": { + "type_kind": "Enum", + "type_data": [ + "(L)APW+lo", + "gaussians", + "numeric AOs", + "plane waves", + "psinc functions", + "real-space grid", + "unavailable", + "not processed" + ] + }, + "default": "unavailable" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.basis_set_name", + "results.method.simulation.dft.basis_set_name__suggestion" + ] + }, + "name": "basis_set_name", + "description": "Identifies the basis set.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.core_electron_treatment", + "results.method.simulation.dft.core_electron_treatment__suggestion" + ] + }, + "name": "core_electron_treatment", + "description": "How the core electrons are described.", + "type": { + "type_kind": "Enum", + "type_data": [ + "full all electron", + "all electron frozen core", + "pseudopotential", + "unavailable" + ] + }, + "default": "unavailable" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.spin_polarized" + ] + }, + "name": "spin_polarized", + "description": "Whether the calculation is spin-polarized.", + "type": { + "type_kind": "python", + "type_data": "bool" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.scf_threshold_energy_change" + ] + }, + "name": "scf_threshold_energy_change", + "description": "Specifies the threshold for the total energy change between two subsequent\nself-consistent field (SCF) iterations. The SCF is considered converged when the\ntotal-energy change between two SCF cycles is below the threshold (possibly in\ncombination with other criteria).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.van_der_Waals_method", + "results.method.simulation.dft.van_der_Waals_method__suggestion" + ] + }, + "name": "van_der_Waals_method", + "description": "The used van der Waals method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.relativity_method", + "results.method.simulation.dft.relativity_method__suggestion" + ] + }, + "name": "relativity_method", + "description": "Describes the relativistic treatment used for the calculation of the final energy\nand related quantities. If skipped or empty, no relativistic treatment is applied.", + "type": { + "type_kind": "Enum", + "type_data": [ + "scalar_relativistic", + "pseudo_scalar_relativistic", + "scalar_relativistic_atomic_ZORA" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.smearing_kind", + "results.method.simulation.dft.smearing_kind__suggestion" + ] + }, + "name": "smearing_kind", + "description": "Specifies the kind of smearing on the electron occupation used to calculate the\nfree energy (see energy_free)\n\nValid values are:\n\n| Smearing kind | Description |\n\n| ------------------------- | --------------------------------- |\n\n| `\"empty\"` | No smearing is applied |\n\n| `\"gaussian\"` | Gaussian smearing |\n\n| `\"fermi\"` | Fermi smearing |\n\n| `\"marzari-vanderbilt\"` | Marzari-Vanderbilt smearing |\n\n| `\"methfessel-paxton\"` | Methfessel-Paxton smearing |\n\n| `\"tetrahedra\"` | Interpolation of state energies and occupations\n(ignores smearing_width) |", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.smearing_width" + ] + }, + "name": "smearing_width", + "description": "Specifies the width of the smearing in energy for the electron occupation used to\ncalculate the free energy (see energy_free).\n\n*NOTE:* Not all methods specified in smearing_kind uses this value.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.xc_functional_type" + ] + }, + "name": "xc_functional_type", + "description": "The libXC based xc functional classification used in the simulation.", + "type": { + "type_kind": "Enum", + "type_data": [ + "GGA", + "HF", + "OEP", + "hybrid", + "meta-GGA", + "vdW", + "LDA", + "unavailable", + "not processed" + ] + }, + "default": "not processed" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.xc_functional_names", + "results.method.simulation.dft.xc_functional_names__suggestion" + ] + }, + "name": "xc_functional_names", + "description": "The list of libXC functional names that where used in this entry.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.dft.exact_exchange_mixing_factor" + ] + }, + "name": "exact_exchange_mixing_factor", + "description": "Amount of exact exchange mixed in with the XC functional (value range = [0,1]).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + } + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "hubbard_model" + ] + }, + "name": "hubbard_model", + "sub_section": "/packages/5/section_definitions/15", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "name": "Projection", + "description": "\n Methodology for a Projection calculation.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.projection.localization_type", + "results.method.simulation.projection.localization_type__suggestion" + ] + }, + "name": "localization_type", + "description": "Projection method type for the virtual (Wannier) orbitals.", + "type": { + "type_kind": "Enum", + "type_data": [ + "single_shot", + "maximally_localized" + ] + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "section_definitions", + "name": "GW", + "description": "\n Methodology for a GW calculation.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.gw.type", + "results.method.simulation.gw.type__suggestion" + ] + }, + "name": "type", + "description": "GW methodology: G0W0; ev-scGW: (eigenvalues self-consistent GW) \u2013 Phys.Rev.B 34,\n5390 (1986); qp-scGW: (quasi-particle self-consistent GW) \u2013 Phys. Rev. Lett. 96,\n226402 (2006) scGW0: (self-consistent G with fixed W0) \u2013 Phys.Rev.B 54, 8411\n(1996); scG0W: (self-consistent W with fixed G0); scGW: (self-consistent GW) \u2013\nPhys. Rev. B 88, 075105 (2013)", + "type": { + "type_kind": "Enum", + "type_data": [ + "G0W0", + "scGW", + "scGW0", + "scG0W", + "ev-scGW", + "qp-scGW" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.gw.starting_point" + ] + }, + "name": "starting_point", + "description": "The list of libXC functional names that were used for the ground state calculation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ], + "default": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "section_definitions", + "name": "QuantumCircuit", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "processors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "number_of_registers", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "simulated", + "type": { + "type_kind": "python", + "type_data": "bool" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "section_definitions", + "name": "QuantumCMS", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "transformation", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "quantum_computer_system", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "quantum_computing_libraries", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "computation_datetime", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "number_of_shots", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "quantum_volume", + "type": { + "type_kind": "python", + "type_data": "int" + } + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "quantum_circuit", + "sub_section": "/packages/5/section_definitions/19" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "section_definitions", + "name": "Simulation", + "description": "\n Contains method details for a simulation entry.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.program_name", + "results.method.simulation.program_name__suggestion" + ] + }, + "name": "program_name", + "description": "The name of the used program.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "default": "not processed" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.simulation.program_version", + "results.method.simulation.program_version__suggestion" + ] + }, + "name": "program_version", + "description": "The version of the used program.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "default": "not processed" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "dft", + "sub_section": "/packages/5/section_definitions/16", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "projection", + "sub_section": "/packages/5/section_definitions/17", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "gw", + "sub_section": "/packages/5/section_definitions/18", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "quantum_cms", + "sub_section": "/packages/5/section_definitions/20", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "section_definitions", + "name": "Method", + "description": "\n Contains a summary of the methodology that has been used in this entry.\n This methodology applies to all of the reported properties and\n determines the result of a single energy evalution. The individual\n properties may be further methodological details affect e.g. the\n sampling.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.method_id" + ] + }, + "name": "method_id", + "description": "Identifier for the used method. Only available for a subset of entries\nfor which the methodology has been identified with precision.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "equation_of_state_id", + "description": "Identifier that can be used to group entries within an equation of\nstate calculation. Only available for a subset of entries for which the\nstructure and methodology have been identified with precision.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "parameter_variation_id", + "description": "Identifier that can be used to group entries that target the same\nstructure but with varying parameter settings. Only available for a\nsubset of entries for which the structure and methodology have been\nidentified with precision.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.method_name", + "results.method.method_name__suggestion" + ] + }, + "name": "method_name", + "description": "Common name for the used method.", + "type": { + "type_kind": "Enum", + "type_data": [ + "DFT", + "Projection", + "GW", + "EELS", + "XPS", + "unavailable" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.workflow_name", + "results.method.workflow_name__suggestion" + ] + }, + "name": "workflow_name", + "description": "The workflow type.", + "type": { + "type_kind": "Enum", + "type_data": [ + "GW", + "single_point", + "geometry_optimization", + "phonon", + "elastic", + "molecular_dynamics", + "debye_model", + "equation_of_state", + "nudged_elastic_band", + "convex_hull", + "adsorption", + "magnetic_ordering", + "raman", + "interface", + "thermodynamics" + ] + }, + "shape": [ + "*" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "simulation", + "sub_section": "/packages/5/section_definitions/21", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "section_definitions", + "name": "MolecularDynamics", + "description": "\n Methodology for molecular dynamics.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.thermodynamic.trajectory.methodology.molecular_dynamics.time_step" + ] + }, + "name": "time_step", + "description": "The timestep at which the numerical integration is performed.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.thermodynamic.trajectory.methodology.molecular_dynamics.ensemble_type" + ] + }, + "name": "ensemble_type", + "description": "The type of thermodynamic ensemble that was simulated.\n\nAllowed values are:\n\n| Thermodynamic Ensemble | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `\"NVE\"` | Constant number of particles, volume, and energy |\n\n| `\"NVT\"` | Constant number of particles, volume, and temperature |\n\n| `\"NPT\"` | Constant number of particles, pressure, and temperature |\n\n| `\"NPH\"` | Constant number of particles, pressure, and enthalpy |", + "type": { + "type_kind": "Enum", + "type_data": [ + "NVE", + "NVT", + "NPT", + "NPH" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 24, + "m_parent_sub_section": "section_definitions", + "name": "Methodology", + "description": "\n Contains methodological information and can be attached to any physical\n property.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "molecular_dynamics", + "sub_section": "/packages/5/section_definitions/23", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 25, + "m_parent_sub_section": "section_definitions", + "name": "PropertySection", + "description": "\n Base class for that can be used to attach a specific methodology to a\n physical property.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "methodology", + "sub_section": "/packages/5/section_definitions/24", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 26, + "m_parent_sub_section": "section_definitions", + "name": "DOS", + "description": "\n Base class for density of states information.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "Array containing the set of discrete energy values for the density of\nstates (DOS).", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/2/section_definitions/17/quantities/1" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "total", + "description": "Density of states (DOS) values normalized with unit cell volume and\nnumber of atoms.", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/16" + }, + "shape": [ + "*" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 27, + "m_parent_sub_section": "section_definitions", + "name": "DOSPhonon", + "description": "\n Contains the total phonon density of states.\n ", + "base_sections": [ + "/packages/5/section_definitions/26" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 28, + "m_parent_sub_section": "section_definitions", + "name": "DOSElectronic", + "description": "\n Contains the total electronic density of states.\n ", + "base_sections": [ + "/packages/5/section_definitions/26" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Label to identify the DOS data, e.g. the method employed.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.electronic.dos_electronic.spin_polarized" + ] + }, + "name": "spin_polarized", + "description": "Whether the DOS is spin-polarized, i.e. is contains channels for both\nspin values.", + "type": { + "type_kind": "python", + "type_data": "bool" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energy_fermi", + "description": "Fermi energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "band_gap" + ] + }, + "name": "band_gap", + "sub_section": "/packages/5/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 29, + "m_parent_sub_section": "section_definitions", + "name": "BandStructure", + "description": "\n Base class for band structure information.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Label to identify the bandstructure data, e.g. the method employed.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "reciprocal_cell", + "description": "The reciprocal cell within which the band structure is calculated.", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/2/section_definitions/14/quantities/1" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "segment", + "description": "Collection of linear path segments in the reciprocal space. The\nsegments are represented as third-order tensors: one dimension for the\nspin channels, one for the sequence of reciprocal space points for the\nsegment, and one for the sequence of eigenvalues at a given point.", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/13" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "path_standard", + "description": "String that identifies the possible standard used in sampling the\nreciprocal space.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 30, + "m_parent_sub_section": "section_definitions", + "name": "BandStructurePhonon", + "description": "\n This section stores information on a vibrational band structure\n evaluation along one-dimensional pathways in the reciprocal space.\n ", + "base_sections": [ + "/packages/5/section_definitions/29" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 31, + "m_parent_sub_section": "section_definitions", + "name": "BandStructureElectronic", + "description": "\n This section stores information on a electonic band structure\n evaluation along one-dimensional pathways in the reciprocal space.\n ", + "base_sections": [ + "/packages/5/section_definitions/29" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.electronic.band_structure_electronic.spin_polarized" + ] + }, + "name": "spin_polarized", + "description": "Whether the band structure is spin-polarized, i.e. is contains channels\nfor both spin values.", + "type": { + "type_kind": "python", + "type_data": "bool" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energy_fermi", + "description": "Fermi energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "band_gap" + ] + }, + "name": "band_gap", + "sub_section": "/packages/5/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 32, + "m_parent_sub_section": "section_definitions", + "name": "HeatCapacityConstantVolume", + "description": "\n Contains the values of the specific (per mass) and isochoric (constant\n volume) heat capacity at different temperatures.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "heat_capacities", + "description": "Specific heat capacity values at constant volume.", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/22/section_definitions/15/quantities/5" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "temperatures", + "description": "The temperatures at which heat capacities are calculated.", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/22/section_definitions/15/quantities/1" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 33, + "m_parent_sub_section": "section_definitions", + "name": "EnergyFreeHelmholtz", + "description": "\n Contains the values of the Helmholtz free energy per atom at constant\n volume and at different temperatures.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "The Helmholtz free energies per atom at constant volume.", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/22/section_definitions/15/quantities/7" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "temperatures", + "description": "The temperatures at which Helmholtz free energies are calculated.", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/22/section_definitions/15/quantities/1" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 34, + "m_parent_sub_section": "section_definitions", + "name": "VibrationalProperties", + "description": "\n Vibrational properties.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "band_structure_phonon", + "sub_section": "/packages/5/section_definitions/30", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "dos_phonon", + "sub_section": "/packages/5/section_definitions/27", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "heat_capacity_constant_volume", + "sub_section": "/packages/5/section_definitions/32", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "energy_free_helmholtz", + "sub_section": "/packages/5/section_definitions/33", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 35, + "m_parent_sub_section": "section_definitions", + "name": "EnergyVolumeCurve", + "description": "\n Energy volume curve.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.mechanical.energy_volume_curve.type", + "results.properties.mechanical.energy_volume_curve.type__suggestion" + ] + }, + "name": "type", + "type": { + "type_kind": "Enum", + "type_data": [ + "raw", + "mie_gruneisen", + "pack_evans_james", + "vinet", + "tait", + "birch_euler", + "pourier_tarantola", + "birch_lagrange", + "murnaghan" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "volumes", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/22/section_definitions/7/quantities/1" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energies_raw", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/22/section_definitions/7/quantities/2" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "energies_fit", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/22/section_definitions/6/quantities/1" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 36, + "m_parent_sub_section": "section_definitions", + "name": "BulkModulus", + "description": "\n Contains bulk modulus values calculated with different methodologies.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.mechanical.bulk_modulus.type", + "results.properties.mechanical.bulk_modulus.type__suggestion" + ] + }, + "name": "type", + "description": "Describes the methodology for obtaining the value.", + "type": { + "type_kind": "Enum", + "type_data": [ + "mie_gruneisen", + "pack_evans_james", + "vinet", + "tait", + "birch_euler", + "pourier_tarantola", + "birch_lagrange", + "murnaghan", + "voigt_average", + "reuss_average", + "voigt_reuss_hill_average" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.mechanical.bulk_modulus.value" + ] + }, + "name": "value", + "description": "Bulk modulus value.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "pascal" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 37, + "m_parent_sub_section": "section_definitions", + "name": "ShearModulus", + "description": "\n Contains shear modulus values calculated with different methodologies.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.mechanical.shear_modulus.type", + "results.properties.mechanical.shear_modulus.type__suggestion" + ] + }, + "name": "type", + "description": "Describes the methodology for obtaining the value.", + "type": { + "type_kind": "Enum", + "type_data": [ + "voigt_average", + "reuss_average", + "voigt_reuss_hill_average" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.mechanical.shear_modulus.value" + ] + }, + "name": "value", + "description": "Shear modulus value.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "pascal" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 38, + "m_parent_sub_section": "section_definitions", + "name": "GeometryOptimization", + "description": "\n Geometry optimization results and settings.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "trajectory", + "description": "List of references to each section_single_configuration_calculation in\nthe optimization trajectory.", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/34" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "List of energy_total values gathered from the single configuration\ncalculations that are a part of the optimization trajectory.", + "type": { + "type_kind": "quantity_reference", + "type_data": "/packages/22/section_definitions/9/quantities/10" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "The type of geometry optimization, which denotes what is being optimized.\n\nAllowed values are:\n\n| Type | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `\"static\"` | no optimization |\n\n| `\"atomic\"` | the atomic coordinates alone are updated |\n\n| `\"cell_volume\"` | `\"atomic\"` + cell lattice paramters are updated isotropically |\n\n| `\"cell_shape\"` | `\"cell_volume\"` but without the isotropic constraint: all cell parameters are updated |", + "type": { + "type_kind": "Enum", + "type_data": [ + "static", + "atomic", + "cell_shape", + "cell_volume" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.convergence_tolerance_energy_difference" + ] + }, + "name": "convergence_tolerance_energy_difference", + "description": "The input energy difference tolerance criterion.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.convergence_tolerance_force_maximum" + ] + }, + "name": "convergence_tolerance_force_maximum", + "description": "The input maximum net force tolerance criterion.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "newton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.final_force_maximum" + ] + }, + "name": "final_force_maximum", + "description": "The maximum net force in the last optimization step.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "newton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.final_energy_difference" + ] + }, + "name": "final_energy_difference", + "description": "The difference in the energy_total between the last two steps during\noptimization.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.final_displacement_maximum" + ] + }, + "name": "final_displacement_maximum", + "description": "The maximum displacement in the last optimization step with respect to previous.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "structure_optimized", + "description": "Contains a structure that is the result of a geometry optimization.", + "sub_section": "/packages/5/section_definitions/5", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 39, + "m_parent_sub_section": "section_definitions", + "name": "MechanicalProperties", + "description": "\n Mechanical properties.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "energy_volume_curve", + "sub_section": "/packages/5/section_definitions/35", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "bulk_modulus" + ] + }, + "name": "bulk_modulus", + "sub_section": "/packages/5/section_definitions/36", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "shear_modulus" + ] + }, + "name": "shear_modulus", + "sub_section": "/packages/5/section_definitions/37", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 40, + "m_parent_sub_section": "section_definitions", + "name": "ElectronicProperties", + "description": "\n Electronic properties.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "band_structure_electronic", + "sub_section": "/packages/5/section_definitions/31", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "dos_electronic", + "sub_section": "/packages/5/section_definitions/28", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 41, + "m_parent_sub_section": "section_definitions", + "name": "QuantityDynamic", + "description": "\n Contains the values for a quantity at different times.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "time", + "description": "The explicit times at which the values are evaluated. Provide either\nthis or time_step and time_start.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "time_step", + "description": "The time step between successive evaluations. Provide either\nthis and time_start or the explicit times.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "time_start", + "description": "The time at which the evaluation started. Provide either this and\ntime_step or the explicit times.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "second" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 42, + "m_parent_sub_section": "section_definitions", + "name": "VolumeDynamic", + "description": "\n Contains volume values evaluated at different times.\n ", + "base_sections": [ + "/packages/5/section_definitions/41" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "The volume values.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter ** 3" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 43, + "m_parent_sub_section": "section_definitions", + "name": "PressureDynamic", + "description": "\n Contains pressure values evaluated at different times.\n ", + "base_sections": [ + "/packages/5/section_definitions/41" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "The pressure values.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 44, + "m_parent_sub_section": "section_definitions", + "name": "TemperatureDynamic", + "description": "\n Contains temperature values evaluated at different times.\n ", + "base_sections": [ + "/packages/5/section_definitions/41" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "The temperature value.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kelvin" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 45, + "m_parent_sub_section": "section_definitions", + "name": "EnergyDynamic", + "description": "\n Contains energy values evaluated at different times.\n ", + "base_sections": [ + "/packages/5/section_definitions/41" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "The energy values.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 46, + "m_parent_sub_section": "section_definitions", + "name": "Trajectory", + "description": "\n Thermodynamic properties reported for an ensemble evolving in time.\n ", + "base_sections": [ + "/packages/5/section_definitions/25" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.thermodynamic.trajectory.available_properties" + ] + }, + "name": "available_properties", + "description": "Subset of the property names that are present in this trajectory.", + "type": { + "type_kind": "Enum", + "type_data": [ + "temperature", + "pressure", + "volume", + "energy_potential" + ] + }, + "shape": [ + "0..*" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "temperature", + "sub_section": "/packages/5/section_definitions/44", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "pressure", + "sub_section": "/packages/5/section_definitions/43", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "volume", + "sub_section": "/packages/5/section_definitions/42", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "energy_potential", + "sub_section": "/packages/5/section_definitions/45", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 47, + "m_parent_sub_section": "section_definitions", + "name": "ThermodynamicProperties", + "description": "\n Thermodynamic properties.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "trajectory" + ] + }, + "name": "trajectory", + "sub_section": "/packages/5/section_definitions/46", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 48, + "m_parent_sub_section": "section_definitions", + "name": "RadialDistributionFunction", + "description": "\n Radial distribution function.\n ", + "base_sections": [ + "/packages/5/section_definitions/25" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.structural.radial_distribution_function.type", + "results.properties.structural.radial_distribution_function.type__suggestion" + ] + }, + "name": "type", + "description": "Describes if the observable is calculated at the molecular or atomic level.", + "type": { + "type_kind": "Enum", + "type_data": [ + "molecular", + "atomic" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.structural.radial_distribution_function.label", + "results.properties.structural.radial_distribution_function.label__suggestion" + ] + }, + "name": "label", + "description": "Describes the atoms or molecule types involved in determining the property.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "bins", + "description": "Distances along which the rdf was calculated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_bins" + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "n_bins", + "description": "Number of bins.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of the property.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_bins" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "frame_start", + "description": "Trajectory frame number where the ensemble averaging starts.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "frame_end", + "description": "Trajectory frame number where the ensemble averaging ends.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 49, + "m_parent_sub_section": "section_definitions", + "name": "StructuralProperties", + "description": "\n Structural properties.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "radial_distribution_function" + ] + }, + "name": "radial_distribution_function", + "sub_section": "/packages/5/section_definitions/48", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 50, + "m_parent_sub_section": "section_definitions", + "name": "MeanSquaredDisplacement", + "description": "\n Mean Squared Displacements.\n ", + "base_sections": [ + "/packages/5/section_definitions/25" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.dynamical.mean_squared_displacement.type", + "results.properties.dynamical.mean_squared_displacement.type__suggestion" + ] + }, + "name": "type", + "description": "Describes if the correlation function is calculated at the molecular or atomic level.", + "type": { + "type_kind": "Enum", + "type_data": [ + "molecular", + "atomic" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "direction", + "description": "Describes the direction in which the correlation function was calculated.", + "type": { + "type_kind": "Enum", + "type_data": [ + "x", + "y", + "z", + "xy", + "yz", + "xz", + "xyz" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "error_type", + "description": "Describes the type of error reported for this correlation function.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.dynamical.mean_squared_displacement.label", + "results.properties.dynamical.mean_squared_displacement.label__suggestion" + ] + }, + "name": "label", + "description": "Describes the atoms or molecule types involved in determining the property.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_times", + "description": "Number of times windows for the calculation of the correlation function.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "times", + "description": "Time windows used for the calculation of the msds.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_times" + ], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Msd values.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_times" + ], + "unit": "meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "errors", + "description": "Error associated with the determination of the msds.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "diffusion_constant_value", + "description": "Values of the diffusion constants.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter ** 2 / second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "diffusion_constant_error_type", + "description": "Describes the type of error reported for this observable.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "diffusion_constant_errors", + "description": "Error associated with the determination of the diffusion constant.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 51, + "m_parent_sub_section": "section_definitions", + "name": "DynamicalProperties", + "description": "\n Dynamical properties.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "mean_squared_displacement" + ] + }, + "name": "mean_squared_displacement", + "sub_section": "/packages/5/section_definitions/50", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 52, + "m_parent_sub_section": "section_definitions", + "name": "SolarCell", + "description": "\n Properties of solar cells.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.efficiency" + ] + }, + "name": "efficiency", + "description": "Power conversion effciency of a solar cell in percentage %.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.fill_factor" + ] + }, + "name": "fill_factor", + "description": "Fill factor of a solar cell in absolute values (from 0 to 1).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.open_circuit_voltage" + ] + }, + "name": "open_circuit_voltage", + "description": "Open circuit voltage of a solar cell.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.short_circuit_current_density" + ] + }, + "name": "short_circuit_current_density", + "description": "Short circuit current density of a solar cell.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "ampere / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.illumination_intensity" + ] + }, + "name": "illumination_intensity", + "description": "The light intensity during the IV measurement.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "watt / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.device_area" + ] + }, + "name": "device_area", + "description": "The total area of the cell during IV and stability measurements under illumination.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.device_architecture", + "results.properties.optoelectronic.solar_cell.device_architecture__suggestion" + ] + }, + "name": "device_architecture", + "description": "Device architecture of the solar cell. Examples are:\n`pn-Heterojunction`, `pin`, `nip`, ...", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.device_stack", + "results.properties.optoelectronic.solar_cell.device_stack__suggestion" + ] + }, + "name": "device_stack", + "description": "Layers of the entire device.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.absorber", + "results.properties.optoelectronic.solar_cell.absorber__suggestion" + ] + }, + "name": "absorber", + "description": "Absorber layers used in the solar cell.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.absorber_fabrication", + "results.properties.optoelectronic.solar_cell.absorber_fabrication__suggestion" + ] + }, + "name": "absorber_fabrication", + "description": "Technique describing the fabrication of the absorber layer. Examples are:\n`Spin-coating`, `Evaporation`, `Doctor blading`, ...", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.electron_transport_layer", + "results.properties.optoelectronic.solar_cell.electron_transport_layer__suggestion" + ] + }, + "name": "electron_transport_layer", + "description": "Electron selective contact layers used in the solar cell.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.hole_transport_layer", + "results.properties.optoelectronic.solar_cell.hole_transport_layer__suggestion" + ] + }, + "name": "hole_transport_layer", + "description": "Hole selective contact layers used in the solar cell.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.substrate", + "results.properties.optoelectronic.solar_cell.substrate__suggestion" + ] + }, + "name": "substrate", + "description": "Substrate layers used in the solar cell.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.optoelectronic.solar_cell.back_contact", + "results.properties.optoelectronic.solar_cell.back_contact__suggestion" + ] + }, + "name": "back_contact", + "description": "Back contact layers used in the solar cell.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 53, + "m_parent_sub_section": "section_definitions", + "name": "OptoelectronicProperties", + "description": "\n Optoelectronic properties.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "band_gap_optical" + ] + }, + "name": "band_gap_optical", + "description": "Optical band gap.", + "sub_section": "/packages/5/section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "solar_cell", + "sub_section": "/packages/5/section_definitions/52", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 54, + "m_parent_sub_section": "section_definitions", + "name": "SpectroscopyProperties", + "description": "\n Spectroscopic properties.\n ", + "extending_sections": [ + "/packages/17/section_definitions/5" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "spectrum", + "type": { + "type_kind": "reference", + "type_data": "/packages/4/section_definitions/5" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 55, + "m_parent_sub_section": "section_definitions", + "name": "Properties", + "description": "\n Contains the physical properties that have been calculated or used in\n this entry.\n ", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.n_calculations" + ] + }, + "name": "n_calculations", + "description": "The number of performed single configuration calculations.'", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.available_properties" + ] + }, + "name": "available_properties", + "description": "Subset of the property names that are present in this entry.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "structural", + "sub_section": "/packages/5/section_definitions/49", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "dynamical", + "sub_section": "/packages/5/section_definitions/51", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "structures", + "sub_section": "/packages/5/section_definitions/6", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "vibrational", + "sub_section": "/packages/5/section_definitions/34", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "electronic", + "sub_section": "/packages/5/section_definitions/40", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "optoelectronic", + "sub_section": "/packages/5/section_definitions/53", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "mechanical", + "sub_section": "/packages/5/section_definitions/39", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "thermodynamic", + "sub_section": "/packages/5/section_definitions/47", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "spectroscopy", + "sub_section": "/packages/5/section_definitions/54", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "geometry_optimization", + "sub_section": "/packages/5/section_definitions/38", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 56, + "m_parent_sub_section": "section_definitions", + "name": "ELN", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.eln.sections" + ] + }, + "name": "sections", + "description": "The type of sections used in entries to search for. By default these are the names\nof the used section definitions.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.eln.tags" + ] + }, + "name": "tags", + "description": "Short tags that are useful to quickly search based on various\nuser defined criteria.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.eln.names" + ] + }, + "name": "names", + "description": "Short human readable and descriptive names that appear in\nELN entries.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.eln.descriptions" + ] + }, + "name": "descriptions", + "description": "'Human descriptions that appear in ELN entries.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.eln.instruments" + ] + }, + "name": "instruments", + "description": "The name or type of instrument used in an activity, e.g. process or\nmeasurement.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.eln.methods" + ] + }, + "name": "methods", + "description": "The name or the applied method in an activity, e.g. process or measurement", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.eln.lab_ids", + "results.eln.lab_ids__suggestion" + ] + }, + "name": "lab_ids", + "description": "The laboratory specific id for any item, e.g. sample, chemical, instrument.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 57, + "m_parent_sub_section": "section_definitions", + "name": "Results", + "description": "\n Contains a summary of the entry contents.\n ", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "material", + "sub_section": "/packages/5/section_definitions/14", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "method", + "sub_section": "/packages/5/section_definitions/22", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "properties", + "sub_section": "/packages/5/section_definitions/55", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "eln", + "sub_section": "/packages/5/section_definitions/56", + "repeats": false + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 6, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.eln.perovskite_solar_cell_database", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "eln": [ + { + "lane_width": "800px" + } + ] + }, + "name": "Ref", + "description": "Information about the source of the data. It describes who curated the data, the journal in which the data was published,\nthe DOI number of the publication, the lead author and the publication date.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "internal_sample_id", + "description": "This is your own unique cell identifier. With this text string alone, you should be able to identify this cell in your own internal data management system.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RichTextEditQuantity" + } + ] + }, + "name": "free_text_comment", + "description": "This could be anything given additional description to the cell that is not captured by any other field.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "ID", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "ID_temp", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "name_of_person_entering_the_data", + "description": "Your name.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "data_entered_by_author", + "description": "TRUE if you how enter the data also was involved in making the device or if you are a co-author of the paper where the data is presented.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [] + } + } + ] + }, + "name": "DOI_number", + "description": "The DOI number referring to the published paper or dataset where the data can be found. If the data is unpublished, enter \u201cUnpublished\u201d\nExamples:\n10.1021/jp5126624\n10.1016/j.electacta.2017.06.032\nUnpublished", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [] + } + } + ] + }, + "name": "lead_author", + "description": "The surname of the first author. If several authors, end with et al. If the DOI number is given correctly, this will be extracted automatically from www.crossref.org", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "publication_date", + "description": "Publication date. If the DOI number is given correctly, this will be extracted automatically from www.crossref.org", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "journal", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "part_of_initial_dataset", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "original_filename_data_upload", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Cell", + "description": "General information about the solar cell. It includes information about the device area, the layer stack sequence and the device architecture.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "42P2O5-22Li2O-22ZnO-12Sm2O3-2CeO2 | FTO | Perovskite | Metal", + "A.R.C. | SLG | FTO | TiO2-c | Perovskite | PTAA | Au", + "A.R.C. | SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "A.R.C. | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | Au | A.R.C.", + "A.R.C. | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "A.R.C. | SLG | ITO | 2PACz | Perovskite | C60 | BCP | Cu", + "A.R.C. | SLG | ITO | PTAA | Perovskite | C60 | BCP | Cu", + "A.R.C. | SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "Ag-np | SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Al", + "Ag-nw; GFRHybrimer; ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "Ag-nw; Graphene; Polycarbonate; Polystyrene | MoO3 | Perovskite | PCBM-60 | BCP | Ag", + "Au | 4-methoxythiophenol | Perovskite | 4-chlorothiophenol | Au", + "Au | Ni | Al | Ti | GaN | Perovskite | Graphene aerogel | Spiro-MeOTAD | Au", + "Au | Ni | Al | Ti | GaN | Perovskite | Spiro-MeOTAD | Au", + "Au | Ni | Al | Ti | GaN | Perovskite | hexagonal-BN | Perovskite | Graphene aerogel | Spiro-MeOTAD | Au", + "Au | Ni | Al | Ti | GaN | Perovskite | hexagonal-BN | Perovskite | Spiro-MeOTAD | Au", + "Au | Perovskite | C60 | BCP | Au", + "Au | Perovskite | PCBM-60 | Ag", + "Au | ZnO-c | Perovskite | Cu2O | Au", + "Carbon-np | SLG | ITO | Graphene oxide | Perovskite | PCBM-60 | BCP | Ag", + "Carbon-nt-fiber | TiO2-c | TiO2-mp | Perovskite | P3HT; SWCNTs | Ag-nw", + "Carbon-nt-fiber | TiO2-c | TiO2-mp | Perovskite | P3HT; SWCNTs | Ag-nw | PMMA", + "Carbon-nt-yarn | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Pt-Carbon-nt", + "CdSeS-QDs | SLG | ITO | NiO-c | Perovskite | ADAHCl | C60 | BCP | Ag", + "Cellophane | TiO2-c | Ag | TiO2-c | CPTA | Perovskite | Spiro-MeOTAD | Au", + "Cellulose paper | Carbon black | Perovskite | C60 | BCP | Cu | Au", + "Cu | CuI | Perovskite | ZnO-np | Ag-nw", + "Cu-nw; GFRHybrimer; ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "Epoxy | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "Eu(TTA)2(Phen)MAA | SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "Eu(TTA)2(Phen)MAA | SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | NiO | Ag | NiO | NaYF4 | Ag", + "Eu-complex LDL | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "FPA-PDMS | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "FTO | TiO2-c | Perovskite | Carbon", + "Flexible | IZO | PEIE | C60 | 3TPYMB | Perovskite | Spiro-MeOTAD | Au", + "Flexible | IZO | PEIE | C60 | B4PyMPM | Perovskite | Spiro-MeOTAD | Au", + "Flexible | IZO | PEIE | C60 | BCP | Perovskite | Spiro-MeOTAD | Au", + "Flexible | IZO | PEIE | C60 | LiF | Perovskite | Spiro-MeOTAD | Au", + "Foil | AZO | C60 | Perovskite | Spiro-MeOTAD | Au", + "Foil | AZO | LiF | C60 | Perovskite | Spiro-MeOTAD | Au", + "Foil | AZO | PEIE | C60 | Perovskite | Spiro-MeOTAD | Au", + "Graphite | Perovskite | CdS | ITO", + "HCLaminate | IZO | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "INVAR | ITO | SiO2 | ITO | NiO-c | Perovskite | PCBM-60 | IZTO", + "ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "ITO | PEN | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "ITO | PEN | SnO2-np | Perovskite | PEDOT:PSS | Carbon", + "ITO | PEN | WOx | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "ITO | PET | ZnO2-c | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "ITO | PTAA | Perovskite | PCBM-60 | Ti | Au", + "ITO | ZnO-c | Perovskite | Cu2O | ITO", + "MgF2 | PET | ITO | 1\u2010benzyl\u20103\u2010methylimidazolium chloride | Perovskite | Spiro-MeOTAD | Au", + "MgF2 | PET | ITO | Perovskite | Spiro-MeOTAD | Au", + "MgF2 | Quartz | ITO | PTAA | CuSCN | Perovskite | PCBM-60 | AZO-np | PEI | Ag", + "MgF2 | Quartz | ITO | PTAA | Perovskite | PCBM-60 | AZO-np | PEI | Ag", + "MgF2 | SLG | FTO | TiO2-c | Perovskite | Perovskite-QD | PTAA | Au", + "MgF2 | SLG | FTO | TiO2-c | TiO2-mp | PCBM-60; PMMA | Perovskite | Spiro-MeOTAD | ITO | Au-grid | MgF2", + "MgF2 | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | Au", + "MgF2 | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "MgF2 | SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoOx | ITO | Au | MgF2", + "MgF2 | Willow glass | AZO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "MgF2 | Willow glass | ITO | PTAA | Perovskite | C60 | BCP | Cu", + "MgF2 | Willow glass | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "MgF2 | Willow glass | IZO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "Mica | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "Mn:CsPbCl3-QDs | SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "Moth eye PDMS | SLG | ITO | PTAA | Perovskite | C60 | BCP | Cu", + "N-Graphene-QDs | SLG | FTO | TiO2-c | Perovskite | PTAA | Au", + "NOA63 | Au | PEDOT:PSS | Perovskite | PCBM-60 | MoO3 \u2223 Au \u2223 Ag \u2223 MoO3 | Alq3", + "NOA63 | ITO | PEDOT:PSS | Perovskite | PCBM-60 | MoO3 | Au | Ag | MoO3 | Alq3", + "NOA63 | MoO3 | Au | PEDOT:PSS | Perovskite | PCBM-60 | MoO3 | Au | Ag | MoO3 | Alq3", + "NOA63 | PEDOT:PSS | Perovskite | PCBM-60 | GaIn", + "NOA88 | PEI | Au | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "NOA88 | PEI | Au | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Ag", + "NaYF4:Eu-np | SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "Nanopaper | TiO2 | Ag | TiO2-c | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "Nb:SrTiO3 | Perovskite | ITO", + "PAA-PEG | Ti | PANI | Perovskite | PCBM-60 | Ti-grid", + "PAA-PEG | Ti | PANI | Ti | Perovskite | PCBM-60 | Ti", + "PDMS | Graphene | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PDMS | PEDOT:PSS | Perovskite | PCBM-60 | PEI | PEDOT:PSS | PDMS", + "PDMS | PET | Au-grid | PEDOT:PSS | Perovskite | C60 | BCP | Cu", + "PDMS | PET | PEDOT:PSS | Perovskite | C60 | BCP | Cu | Parylene-film", + "PDMS | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PDMS | SLG | ITO | PTAA | Perovskite | C60 | BCP | Cu", + "PEG | ITO | PEDOT:PSS | Perovskite | bis-C60 | BCP | Ag", + "PEG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "PEI | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "PEN | AZO | ZnO-c | C60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | Ag-grid | ZnO-c | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Ag", + "PEN | Ag-nw | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Al", + "PEN | FTO | PEI | PCBM-60 | Perovskite | PTAA\uff5cAu", + "PEN | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Ag", + "PEN | FTO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PEN | Graphene | MoO3 | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "PEN | Graphene | Perovskite | PCBM-60 | Ag", + "PEN | Graphene; MoO3 | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "PEN | ITO | Al2O3-c | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | Au-np | NiO-c | Perovskite | PCBM-60 | PEI | Ag", + "PEN | ITO | Black P-QDs | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | C60 | C60-np | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | C60 | PAA | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | C60 | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | C60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "PEN | ITO | CdSe | PCBM-60 | Perovskite | CuPc | Carbon", + "PEN | ITO | CuPc | PEI | Perovskite | PCBM-60 | BCP | Ag", + "PEN | ITO | HfO2 | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | LiQ; PEIE | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | MC8-9-NPC | Perovskite | PCBM-60 | LiF | Al", + "PEN | ITO | MFGO | Perovskite | PCBM-60 | BCP | Ag", + "PEN | ITO | NiO-c | Perovskite | CSCNT@Al2O3-c | CSCNT@SnO2", + "PEN | ITO | NiO-c | Perovskite | PCBM-60 | Ag", + "PEN | ITO | NiO-c | Perovskite | PCBM-60 | Au | ITO | PEN", + "PEN | ITO | NiO-c | Perovskite | PCBM-60 | BCP | Ag", + "PEN | ITO | NiO-c | Perovskite | PCBM-60 | BCP | Bi2Te3", + "PEN | ITO | NiO-np | Perovskite | C60 | BCP | Ag", + "PEN | ITO | NiO-np | Perovskite | PCBM-60 | Ag", + "PEN | ITO | NiO-np | Perovskite | PCBM-60 | Al", + "PEN | ITO | NiO-np | Perovskite | PCBM-60 | BCP | Ag", + "PEN | ITO | NiO-np | Perovskite | PCBM-60 | TiO2-c | Ag", + "PEN | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | Al", + "PEN | ITO | NiO-np | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "PEN | ITO | PCBM-60 | Perovskite | PTAA | Au", + "PEN | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Ag", + "PEN | ITO | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "PEN | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "PEN | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PEN | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "PEN | ITO | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Ag", + "PEN | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Ag", + "PEN | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Au", + "PEN | ITO | PEIE | PCBM-60 | Perovskite | P3HT | Au", + "PEN | ITO | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "PEN | ITO | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | PhNa-1T | Perovskite | PCBM-60 | Ag", + "PEN | ITO | PyCEE | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | SnO2 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-QDs | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-c | Perovskite | PTAA | Au", + "PEN | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-c | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-np | CPTA | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-np | Perovskite | P3HT; Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-np | Perovskite | PTAA | NiO-c | Au | PEN", + "PEN | ITO | SnO2-np | Perovskite | PTAA | NiO-c | ITO | PEN", + "PEN | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-np | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnO2-np | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | SnS2 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | Ti(OiPr)4 | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | TiO2-c | Perovskite | Carbon-nt", + "PEN | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | TiO2-c | SnO2-c | Perovskite | Graphene; P3HT | Carbon", + "PEN | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | TiO2-np | C60 | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | TiO2-np | C70 | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | TiO2-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | WOx | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | WOx | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | X1 | Perovskite | PCBM-60 | C3-CBL | Ag", + "PEN | ITO | Zn2SnO4 | Perovskite | PTAA | Au", + "PEN | ITO | ZnO | PEIE | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | ZnO-c | Perovskite | Carbon", + "PEN | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | Ag", + "PEN | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "PEN | ITO | ZnO-np | Perovskite | PTAA | Au", + "PEN | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | nTi-MOF | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | ITO | rGO | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "PEN | PEDOT:PSS | PEI | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PEN | Planarization | SiN | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PEN | SWCNTs | MoO3 | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "PES | AZO | CuNW | AZO | SnO2-np | Perovskite | P3HT; Spiro-MeOTAD | Au", + "PES | FTO | Perovskite | Spiro-MeOTAD | Au", + "PES | ITO | Perovskite | Spiro-MeOTAD | Au", + "PES | PEDOT:PSS | Ag | PEI | PCBM-60 | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "PES | Ti | Graphene | NiO-c | Perovskite | PCBM-60 | AZO | Ag | AZO", + "PET | APTES | AuCl3; Graphene | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | APTES; Graphene | PCBM-60 | Perovskite | PTAA | Au", + "PET | AZO | Ag | AZO | PEDOT:PSS | Perovskite | PCBM-60 | Au", + "PET | AZO | Ag | AZO | PEDOT:PSS | PolyTPD | Perovskite | PCBM-60 | Au", + "PET | AZO | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "PET | Ag | MoOx | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Cu | Ag | MoO3", + "PET | Ag-grid | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | Ag-grid | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Al", + "PET | Ag-grid | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Ag", + "PET | Ag-grid | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | Al", + "PET | Ag-grid | PEDOT:PSS; PEI | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Ag", + "PET | Ag-grid | ZnO-c | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Ag", + "PET | Ag-mesh | PH1000 | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | Ag-mesh:PH1000 | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "PET | Ag-nw | FZO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "PET | Ag-nw | Graphene | ZnO-np | Perovskite | PTAA | Au", + "PET | Ag-nw | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | Ag-nw; Graphene oxide | PEDOT:PSS | Perovskite | PCBM-60 | PFN-P1 | Ag", + "PET | Ag-nw; PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | Al2O3 | Ti | C60 | Perovskite | NiO-c | Ni | Al2O3 | PET", + "PET | Au | PEDOT:PSS | NPB | Perovskite | PCBM-60 | BCP | Ag", + "PET | Au-np; Graphene; TFSA | Graphene-QDs | Perovskite | PCBM-60 | Al", + "PET | AuCl3; Graphene | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | Carbon-nt; P3HT | PEDOT:PSS | Perovskite | Carbon-nt:PCBM-60", + "PET | FTO | NiO-c | Perovskite | PCBM-60 | BCP | Ag", + "PET | FTO | NiO-np | Perovskite | C60 | bis-C60 | Ag", + "PET | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "PET | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "PET | Graphene | PEDOT:PSS | Perovskite | C60 | BCP | Ag", + "PET | Graphene | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | Graphene | PTAA | PEDOT:PSS | Perovskite | ZnO-np | Graphene | PET", + "PET | Graphene | PTAA | PEDOT:PSS | Perovskite | ZnO-np | TETA-Graphene | PET", + "PET | Graphene | TiO2-c | PCBM-60 | Perovskite | Carbon-nt", + "PET | Graphene | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Carbon-nt", + "PET | Graphene | ZnO-np | Perovskite | PTAA | PEDOT:PSS | Graphene | PET", + "PET | Graphene | ZnO-np | Perovskite | PTAA | PEDOT:PSS | TFSA-Graphene | PET", + "PET | Graphene; TETA | PTAA | PEDOT:PSS | Perovskite | ZnO-np | Graphene | PET", + "PET | Graphene; TETA | PTAA | PEDOT:PSS | Perovskite | ZnO-np | Graphene; TETA | PET", + "PET | Graphene; TETA | PTAA | PEDOT:PSS | Perovskite | ZnO-np | Graphene; TETA | PET | Ag", + "PET | Graphene; TETA | ZnO-np | Perovskite | PTAA | PEDOT:PSS | Graphene | PET", + "PET | Graphene; TETA | ZnO-np | Perovskite | PTAA | PEDOT:PSS | Graphene; TFSA | PET", + "PET | Graphene; TETA | ZnO-np | Perovskite | PTAA | PEDOT:PSS | Graphene; TFSA | PET | Ag", + "PET | ITO | Ag-nw | ZnO-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "PET | ITO | Ag-nw | ZnO-c | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "PET | ITO | C60 | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | CPTA | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | CdS | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | CuPc | PEI | Perovskite | C60 | BCP | Ag", + "PET | ITO | CuPc | PEI | Perovskite | PCBM-60 | BCP | Ag", + "PET | ITO | CzPAF-TPA | Perovskite | PCBM-60 | ZnO | Ag", + "PET | ITO | CzPAF-TPA | Perovskite | PCBM-60 | ZnO-np | Ag", + "PET | ITO | FPI-PEIE | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | Graphene | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | Graphene | ZnO-QDs | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | LiCoO2 | Perovskite | C60 | BCP | Ca | Al", + "PET | ITO | N-PDI | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | Nb2O5 | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | Nb2O5; TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | NiO-c | NiO-nw | Perovskite | PCBM-60 | BCP | Ag", + "PET | ITO | NiO-c | Perovskite | C60 | BCP | Ag", + "PET | ITO | NiO-c | Perovskite | C60 | bis-C60 | Ag", + "PET | ITO | NiO-c | Perovskite | PCBM-60 | BCP | Ag", + "PET | ITO | NiO-c | Perovskite | PCBM-60 | LiF | Ag", + "PET | ITO | NiO-c | Perovskite | PCBM-60 | bis-C60 | Ag", + "PET | ITO | NiO-c | Perovskite | TPA-3CN | BCP | Al", + "PET | ITO | NiO-np | Perovskite | PCBM-60 | BCP | Ag", + "PET | ITO | P3CT-CH3NH2 | Perovskite | PCBM-60 | C60 | BCP | Ag", + "PET | ITO | P3CT-Na | Perovskite | PCBM-60 | Ag", + "PET | ITO | P3CT-Na | Perovskite | PCBM-60 | HDAC | Ag", + "PET | ITO | PANI | Perovskite | PCBM-60 | Au", + "PET | ITO | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | PEDOT:PSS | 3-aminopropanoic acid-SAM | Perovskite | PCBM-60 | ZnO-np | Ag", + "PET | ITO | PEDOT:PSS | NiO-c | Perovskite | PCBM-60 | TIPD | Al", + "PET | ITO | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | ITO | PEDOT:PSS | PEI-HI | Perovskite | PCBM-60 | LiF | Ag", + "PET | ITO | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | C60 | Al", + "PET | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Ca | Al", + "PET | ITO | PEDOT:PSS | Perovskite | EVA | PCBM-60 | BCP | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | F8BT | Al", + "PET | ITO | PEDOT:PSS | Perovskite | P(NDI2DT-TTCN) | BCP | Au", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Au", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Al", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Au", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Al", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Al", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ca | Al", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Cu", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Cu-ribbon", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Al", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | PEDOT:PSS", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PPy | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | C60 | Rhodamine 101 | LiF | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TiO2 | Al", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO | Ag", + "PET | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Ag", + "PET | ITO | PEDOT:PSS | Perovsktie | ZnO-np | Al", + "PET | ITO | PEI | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | PEIE | CDIN | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | PFN | C60; PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | PTAA | Perovskite | Fluorosilane | C60 | BCP | Al", + "PET | ITO | PTAA | Perovskite | PCBM-60 | C60 | BCP | Al", + "PET | ITO | PTAA | Perovskite | PCBM-60 | C60 | BCP | Cu", + "PET | ITO | PTAA | Perovskite | PVDF-TrFE | C60 | BCP | Al", + "PET | ITO | PTAA | Perovskite | Plastic foam | C60 | BCP | Al", + "PET | ITO | PTAA | Perovskite | Polystyrene | C60 | BCP | Al", + "PET | ITO | PTAA | Perovskite | Teflon | C60 | BCP | Al", + "PET | ITO | PTCA | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | Perovskite | PCBM-60 | Ag", + "PET | ITO | Perovskite | PCBM-60 | Al", + "PET | ITO | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | SnO2-c | Al2O3-np | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | SnO2-c | C60 | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | SnO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | SnO2-c | SnO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | Au | MoO3", + "PET | ITO | SnO2-np | KCl | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | SnO2-np | Perosvkite | P3HT | Ag", + "PET | ITO | SnO2-np | Perosvkite | Spiro-MeOTAD | Ag", + "PET | ITO | SnO2-np | Perovskite | PCPD2FBT:BCF | PEDOT:PSS | ITO | PET", + "PET | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | SnO2-np | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | TPA-BP-OXD | Perovskite | PCBM-60 | ZnO-np | Ag", + "PET | ITO | Ti | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | TiO2-c | Perovskite | PTAA | Au", + "PET | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | TiS2 | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | VB-DAAF | Perovskite | C60 | BCP | Al", + "PET | ITO | VOx | Cu phtalocyanine | Perovskite | C60 | BCP | Ag", + "PET | ITO | ZSO-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | ZnO-c | Perovskite | PTAA | Au", + "PET | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "PET | ITO | ZnO-c | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "PET | ITO | ZnO-c | Urea | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | ZnO-c | ZnO-nanospheres | Perovskite | Spiro-MeOTAD | Ag", + "PET | ITO | ZnO-c | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | ZnO-np | PCBM-60 | Perovskite | P3HT | PEDOT:PSS | Ag", + "PET | ITO | ZnO-np | Perovskite | P3HT | Ag", + "PET | ITO | ZnO-np | Perovskite | PB(NAP-Th)TBT | Ag", + "PET | ITO | ZnO-np | Perovskite | PTAA | Au", + "PET | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "PET | ITO | ZnO-np | p-(F)-PO-TAZ | Perovskite | PB(NAP-Th)TBT | Ag", + "PET | ITO | c-TCTA | Perovskite | c-HATNA | bis-C60 | Ag", + "PET | IWO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "PET | IZO | PTAA | Perovskite | C60 | BCP | Ag", + "PET | IZO | PTAA | Perovskite | PCBC6 | BCP | Ag", + "PET | IZO | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "PET | IZO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PET | IZO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PET | IZO | TiO2-c | TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "PET | IZO | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "PET | IZO | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "PET | In2O3 | ZnO-c | Perovskite | Spiro-MeOTAD | Ag", + "PET | MSA-PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | C60 | Rhodamine 101 | LiF | Ag", + "PET | Ni-mesh:PH1000 | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "PET | PEDOT:PSS | Ag-nw | SnO2-np | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "PET | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | TiO2 | Al", + "PET | PEDOT:PSS | PEI | Perovskite | Spiro-MeOTAD | Au", + "PET | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "PET | PEDOT:PSS | Perovskite | PCBM-60 | GaIn", + "PET | PEDOT:PSS | Perovskite | PCTDI | Cr | Au", + "PET | PEDOT:PSS | Perovskite | PCTDI | Cr | Cu", + "PET | PEDOT:PSS | ZnO-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "PET | SWCNTs | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "PET | SnO2-c | Au | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "PET | TCE | ZnO-c | Perovskite | P3HT | Ag", + "PET | TCE | ZnO-c | Perovskite | PEDOT:PSS | Ag", + "PET | TiO2-c | Ag | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PET | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PET | WO3 | Ag | WO3 | PEDOT:PSS | Perovskite | C60 | Bphen | Ag", + "PET | Zeocoat | Graphene | P3HT | Perovskite | PCBM-60 | Ag", + "PET | ZnO-c | Ag | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PETUG | C60 | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "PI | Ag-np | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Ag", + "PI | Cu-grid | Graphene | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Ag", + "PI | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Ag", + "PI | PEDOT:PSS | ZnO-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "PS | ZnO | Perovskite | Spiro-MeOTAD | Ag", + "Paper | Au | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | Au | MoO3", + "Perovskite | C60 | BCP | Au", + "Phosphor-in-glass | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "Polyester-satin textile | Polyurethane | Carbon-nt; PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "Polyimide | ITO | ZnO-np | Perovskite | PTAA | Au", + "Polyimide | In2O3:H | PTAA | Perovskite | PCBM-60 | ZnO-np | AZO | Ni | Al", + "Polyimide | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "Pt | Perovskite | Al", + "Quartz | Graphene | C60 | Perovskite | Carbon", + "Quartz | TaN | TaS2 | Perovskite | CdS | ITO", + "Regenerated cellulose film | Ag-nw | PEDOT:PSS | Perovskite | PCBM-60 | Au", + "SLD | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Ag", + "SLG FTO | TiO2-c | TiO2-mp | Perovskite | BTX-OMeTAD | Au", + "SLG FTO | TiO2-c | TiO2-mp | Perovskite | BX-OMeTAD | Au", + "SLG FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | APTES; Graphene | PCBM-60 | Perovskite | PTAA | Au", + "SLG | AZO | Ag-grid | AZO | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | Ag-nw | AZO | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | Au | AZO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | Ba(OH)2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | Cu-nw | AZO | ZnO-c | PEI | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | Cu@Ni-nw | ZnO-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | PCBM-60 | Perovskite | P3HT | Au", + "SLG | AZO | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | AZO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Au", + "SLG | AZO | Perovskite | P3HT | Au", + "SLG | AZO | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | SnO2-c | SnO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | ZnO-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | ZnO-c | ZTO | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | AZO | ZnO-nw | Perovskite | Carbon", + "SLG | AZO | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | Ag | MoOx | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Cu | Ag | MoO3", + "SLG | Ag | MoOx | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | ITO", + "SLG | Ag | PCBM-60 | Perovskite | PTAA | Ag", + "SLG | Ag | TiO2-c | Perovskite | Au", + "SLG | Ag-nw | AZO | Perovskite | Spiro-MeOTAD | Au", + "SLG | Ag-nw | Graphene oxide | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | Ag-nw | Graphene | ZnO-np | Perovskite | PTAA | Au", + "SLG | Ag-nw | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | Ag-nw; Chitosan | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Al", + "SLG | Ag-nw; Graphene oxide | PEDOT:PSS | Perovskite | PCBM-60 | PFN-P1 | Ag", + "SLG | Au | OMeTP-SAM | Perovskite | CITP-SAM | Au", + "SLG | Au-np; Graphene | Graphene-QDs | Perovskite | PCBM-60 | Al", + "SLG | Au-np; Graphene; TFSA | Graphene-QDs | Perovskite | PCBM-60 | Al", + "SLG | Au-np; Graphene; TFSA | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | Au; NiO-c | Perovskite | C60 | BCP | Al", + "SLG | Cd2SnO4 | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | Cu | NiO-c | Perovskite | PCBM-60 | PEIE | Cu", + "SLG | Cu | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Cu", + "SLG | Cu-BHT | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | Cu-nw | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | CuS | Perovskite | PCBM-60 | Rhodamine 101 | Ag", + "SLG | DWCNTs | PTAA | PFN-P2 | Perovskite | C60 | BCP | Cu", + "SLG | FAZO | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FGZO | SnO2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | (RhCp*Cp)2 | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | (RhCp*Cp)2 | PTCBI | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | 1-ethyl-3-methylimidazolium iodide | C60 | 1-ethyl-3-methylimidazolium iodide | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | 1-ethyl-3-methylimidazolium iodide | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | 1-ethyl-3-methylimidazolium iodide | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | 2H-TaS2 | Perovskite | P3HT | Ag", + "SLG | FTO | AZO-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | AZO-np | Perovskite | PCE-10 | MoO3 | Al", + "SLG | FTO | AZO-np | Perovskite | PTB7 | MoO3 | Al", + "SLG | FTO | Ag-nancubes | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Ag-np | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Ag-np; PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | FTO | Ag-np; TiO2-c | TiO2-mp | Perovskite | Au", + "SLG | FTO | Ag-np; TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Ag-np; TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | Ag:CuO-nanofibers | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | FTO | AgAu-np | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Al2O3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Al2O3-c | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Al2O3-mp | Perovskite | Au", + "SLG | FTO | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Al2O3; TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | Al:ITO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Al:ITO-c | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Au-grid | TiO2-c | SnO2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Au-np | NiO-c | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Au-np | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Au-np; SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Au-nw | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | BCP | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | BaCoF4 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | BaSnO3 | Perovskite | NiO | FTO | SLG", + "SLG | FTO | BaSnO3-mp | Perovskite | Spiro-MeOTAD | Carbon", + "SLG | FTO | BaSnO3-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | BaSnO3-nw | Perovskite | Spiro-MeOTAD | Carbon", + "SLG | FTO | BenMeIM-Cl | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | BenMeIM-Cl | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | BiFeO3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Black P-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | C3N5 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | C60 | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | C60 | BenMeIM-Cl | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | C60 | PAA | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | C60 | Perovskite | Carbon", + "SLG | FTO | C60 | Perovskite | CuPc | Au", + "SLG | FTO | C60 | Perovskite | F4-TCNQ | CuPc | Au", + "SLG | FTO | C60 | Perovskite | FU7 | Au", + "SLG | FTO | C60 | Perovskite | P3HT | Au", + "SLG | FTO | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | C60 | Perovskite | Spiro-MeOTAD | Al", + "SLG | FTO | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | C60 | Perovskite | Thiophene | Spiro-MeOTAD | Au", + "SLG | FTO | C60 | [EMIM]PF6-IL | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | C70 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | CF-Sp-BTh | Perovskite | PCBM-60 | Au", + "SLG | FTO | CIGS | Perovskite | PCBM-60 | Zr(Acac) | Ag", + "SLG | FTO | CL1-2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | CZTS | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Carbon | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Carbon-mp | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | CdS | Perovskite | Carbon | Ag", + "SLG | FTO | CdS | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | CdS | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | CdS-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | CdS-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | CdSe | PCBM-60 | Perovskite | CuPc | Carbon", + "SLG | FTO | CdSe | Perovskite | CuPc | Carbon", + "SLG | FTO | CeO2-c | Perovskite | CuSCN | Au", + "SLG | FTO | CeO2-c | TiO2-c | Perovskite | CuSCN | Au", + "SLG | FTO | CeOx | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | CeOx | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | CoCuO | Perovskite | PCBM-60 | Ag", + "SLG | FTO | CoO | Perovskite | PCBM-60 | Ag", + "SLG | FTO | CoOx | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Cr2O3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | CrO2 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | CrOx | Perovskite | PCBM-60 | Ag", + "SLG | FTO | CrOx | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | Cu0.2Cr0.8O2 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Cu0.33Cr0.67O2 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Cu0.5Cr0.5O2 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Cu0.67Cr0.33O2 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Cu0.8Cr0.2O2 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Cu2BaSnS4 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Cu2O | Perovskite | SiO2-c | ZnO-c | Ag", + "SLG | FTO | Cu3PS4-np | Perovskite | PCBM-60 | Ag", + "SLG | FTO | CuCrO2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | CuGaO2-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | CuI | Perovskite | PCBM-60 | Al", + "SLG | FTO | CuI | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | CuI | Perovskite | PCBM-60 | PEI | Ag", + "SLG | FTO | CuInS2 | Al2O3-np | Perovskite | Ag", + "SLG | FTO | CuO | Perovskite | PCBM-60 | Ag", + "SLG | FTO | CuO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | CuO2 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | CuSCN | Perovskite | PCBM-60 | Ag", + "SLG | FTO | CuSCN | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | ETM | Perovskite | HTM | Metal", + "SLG | FTO | F4-TCNQ | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | Fe2O3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | Fe2O3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Fe2O3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Fe2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Fe2O3-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | FeO | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | GO-nanoribbons | Perovskite | ZnO-np | Al", + "SLG | FTO | GaN | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Graphene oxide | Perovskite | Graphene oxide | Al", + "SLG | FTO | Graphene oxide | Perovskite | Graphene oxide; TiO2-c | Al", + "SLG | FTO | Graphene oxide | Perovskite | TiO2-c | Al", + "SLG | FTO | Graphene oxide | Perovskite | ZnO-np | Al", + "SLG | FTO | Graphene oxide; TiO2-np | Perovskite | Au", + "SLG | FTO | Graphene | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Graphene | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Graphene-QDs | Perovskite | Carbon", + "SLG | FTO | Graphene; NDI; SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Graphene; TiO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | IDIC | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ITIC | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | IZO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | In2O3 | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | In2O3 | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | FTO | In2S3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | In2S3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | In2S3 | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | KY7F22-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Li4SiW12O40 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | LiMgNiO-c | Perovskite | PCBM-60 | Ag", + "SLG | FTO | LiMgNiO-c | Perovskite | PCBM-60 | Carbon-QDs | Ag", + "SLG | FTO | LiNiO-c | Perovskite | PCBM-60 | Al", + "SLG | FTO | MTDATA | Perovskite | C60 | BCP | Cu", + "SLG | FTO | Mg0.05Zn0.95O-np | Perovskite | P3HT | Au", + "SLG | FTO | Mg0.15Zn0.85O-np | Perovskite | P3HT | Au", + "SLG | FTO | Mg0.1Zn0.9O-np | Perovskite | P3HT | Au", + "SLG | FTO | Mg0.25Zn0.75O-np | Perovskite | P3HT | Au", + "SLG | FTO | Mg0.2Zn0.8O-np | Perovskite | P3HT | Au", + "SLG | FTO | MgO | NiO-mp | Perovskite | Carbon", + "SLG | FTO | MgO | SnO2-np | Ethanol amine | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | MgO | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | MgO | TiO2-mp | NiO-mp | Perovskite | Carbon", + "SLG | FTO | MgO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | MgO-c | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | MgO-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | MoS2 | Perovskite | C60 | BCP | Ag", + "SLG | FTO | MoS2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | MoS2-nanosheets | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | N-PDI | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | NDI; SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nafion; PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | FTO | Nb2O3-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5 | (EMIM)PF6 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5 | PCBM-60 | (EMIM)PF6 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5 | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5 | Perovskite | Carbon", + "SLG | FTO | Nb2O5 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | Nb2O5 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5 | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5-c | Nb2O5-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5-c | Perovskite | CuPc | Carbon", + "SLG | FTO | Nb2O5-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Nb2O5; TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | NbOH5 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | NbOx | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | NiCoO4 | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | FTO | NiMgLiO | 5-AVA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiMgLiO | Perovskite | 2-acetylpyridine | PCBM-60 | BCP | Ag", + "SLG | FTO | NiMgLiO | Perovskite | 3-acetylpyridine | PCBM-60 | BCP | Ag", + "SLG | FTO | NiMgLiO | Perovskite | 4-DMABA | PCBM-60 | BCP | Ag", + "SLG | FTO | NiMgLiO | Perovskite | 4-acetylpyridine | PCBM-60 | BCP | Ag", + "SLG | FTO | NiMgLiO | Perovskite | CeOx-np | Ag", + "SLG | FTO | NiMgLiO | Perovskite | In2O3-c | Ag", + "SLG | FTO | NiMgLiO | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiMgLiO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiMgLiO | Perovskite | PCBM-60 | CeOx-np | Ag", + "SLG | FTO | NiMgLiO | Perovskite | PCBM-60 | TiO2-c | Ag", + "SLG | FTO | NiMgLiO | Perovskite | SnO2-c | Ag", + "SLG | FTO | NiMgLiO | Perovskite | TiO2-c | Ag", + "SLG | FTO | NiMgLiO | Perovskite | TiO2-np | Sb", + "SLG | FTO | NiMgLiO | Perovskite | ZnO-c | Ag", + "SLG | FTO | NiMgLiO-c | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiMgLiO-c | Perovskite | PCBM-60 | BCP | Bi | Au", + "SLG | FTO | NiMgLiO-c | Perovskite | PCBM-60 | TiO2-c | Ag", + "SLG | FTO | NiMgLiO-c | Perovskite | SFX-PDI4 | TiO2-c | Ag", + "SLG | FTO | NiMgO-c | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO | Perovskite | C60 | BCP | Ag", + "SLG | FTO | NiO | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO | Perovskite | PCBM-60 | Al", + "SLG | FTO | NiO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO | Perovskite | PCBM-60 | LiF | Ag", + "SLG | FTO | NiO | Perovskite | PCBM-60 | PEI | Ag", + "SLG | FTO | NiO | Perovskite | PCBM-60:PS | Al", + "SLG | FTO | NiO | Perovskite | PTEG-1 | Ag", + "SLG | FTO | NiO | Perovskite | Q10 | BCP | Ag", + "SLG | FTO | NiO-c | Al2O3-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | Al2O3-mp | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | NiO-c | Al2O3-mp; Au@SnO2-np | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | NiO-c | Al2O3-mp; Au@SnO2-nw | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | NiO-c | BMIMBF4 | Perovskite | PCBM-60 | BCP | Cr | Au", + "SLG | FTO | NiO-c | CuGaO2-c | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | CuGaO2-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | CuI | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | DEA | Perovskite | PCBM-60 | PN4N | Al", + "SLG | FTO | NiO-c | MoOx | Perovskite | PCBM-60 | Al", + "SLG | FTO | NiO-c | MoOx | Perovskite | ZrO2-c | PCBM-60 | Al", + "SLG | FTO | NiO-c | N719 dye | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-c | NiO-mp | Perovsite | C60 | BCP | Al", + "SLG | FTO | NiO-c | NiO-mp | Perovsite | ZnO | Al", + "SLG | FTO | NiO-c | NiO-mp | Perovskite | Acetyl acetate; I2; LiI | Pt | FTO | SLG", + "SLG | FTO | NiO-c | NiO-mp | Perovskite | Ethyl acetate; I2; LiI; TBP; Urea | Pt | FTO | SLG", + "SLG | FTO | NiO-c | NiO-mp | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-c | NiO-mp | Perovskite | PCBM-60 | Al", + "SLG | FTO | NiO-c | NiO-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | NiO-mp | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | NiO-c | PMMA | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-c | PS | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-c | PTAA | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | NiO-c | PTZ-1 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-c | PTZ-2 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-c | Perovskite | (4AMP)I2 | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | Ag", + "SLG | FTO | NiO-c | Perovskite | Au", + "SLG | FTO | NiO-c | Perovskite | BCP | Au", + "SLG | FTO | NiO-c | Perovskite | C5-NCMA | bis-C60 | Ag", + "SLG | FTO | NiO-c | Perovskite | C60 | Ag", + "SLG | FTO | NiO-c | Perovskite | C60 | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | C60-BPy | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | C60-HPy | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | C60-MPy | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | C60; PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | CSCNT@Al2O3-c | CSCNT", + "SLG | FTO | NiO-c | Perovskite | CSCNT@Al2O3-c | CSCNT@SnO2", + "SLG | FTO | NiO-c | Perovskite | CSCNT@SnO2", + "SLG | FTO | NiO-c | Perovskite | Carbon", + "SLG | FTO | NiO-c | Perovskite | CdS-np | Au", + "SLG | FTO | NiO-c | Perovskite | CeOx | Ag", + "SLG | FTO | NiO-c | Perovskite | FA-PDI2 | TiO2-c | Ag", + "SLG | FTO | NiO-c | Perovskite | Fulleropyrrolidinium Iodide | Ag", + "SLG | FTO | NiO-c | Perovskite | Graphitic carbon nitride | PCBM-60; Graphene | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | MAI | PCBM-60 | PEI | Ag", + "SLG | FTO | NiO-c | Perovskite | MoOx | Au", + "SLG | FTO | NiO-c | Perovskite | NMPFP | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | AZO-c", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | Al", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | Au", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | BCP | Al", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | BCP | Cr | Au", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | BCP | Ga2O3 | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | C60 | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | Carbon-nt; PEI | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | CeOx | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | LiF | Al", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | PCBDAN | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | PEI | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | PEIE | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | PFN-Br | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | PN4N | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | PN4N | Al", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | PPDIN6 | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | SnO2-c | AZO-c", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | TIPD | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | TiO2-c | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | [BMIM]BF4 | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60; Graphene | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | PCBM-60; Zn0.8Cd0.2S-np | Ag", + "SLG | FTO | NiO-c | Perovskite | PEAI | PCBM-60 | PEI | Ag", + "SLG | FTO | NiO-c | Perovskite | PMMA | PCBM-60 | Ag", + "SLG | FTO | NiO-c | Perovskite | PPA | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | PPEA | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | Perovskite | PS | PCBM-60 | Ag", + "SLG | FTO | NiO-c | Perovskite | SnO2-c | AZO-c", + "SLG | FTO | NiO-c | Perovskite | TEABr | PCBM-60 | PEI | Ag", + "SLG | FTO | NiO-c | Perovskite | TEACl | PCBM-60 | PEI | Ag", + "SLG | FTO | NiO-c | Perovskite | TEAI | PCBM-60 | PEI | Ag", + "SLG | FTO | NiO-c | Perovskite | TPA-3CN | BCP | Al", + "SLG | FTO | NiO-c | Perovskite | TiO2 | Ag", + "SLG | FTO | NiO-c | Perovskite | ZnO | C60 | Au", + "SLG | FTO | NiO-c | Perovskite | ZnO-c | Ag", + "SLG | FTO | NiO-c | Perovskite | ZnO-np | Al", + "SLG | FTO | NiO-c | Perovskite | ZnO-np | C60 | Ag", + "SLG | FTO | NiO-c | SDSB | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-c | TiO2-c | Perovskite | Carbon", + "SLG | FTO | NiO-c | n-Butylamine | Perovskite | C60 | BCP | Ag", + "SLG | FTO | NiO-mp | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-mp | Perovskite | PCBM-60 | BCP | Al", + "SLG | FTO | NiO-mp | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | FTO | NiO-nanowalls | Diethanolamine | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | FTO | NiO-nanowalls | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | FTO | NiO-np | Graphene oxide | Perovskite | GO-Li | TiO2-c | Al", + "SLG | FTO | NiO-np | Perovskite | C60 | bis-C60 | Ag", + "SLG | FTO | NiO-np | Perovskite | PCBM-60 | Ag", + "SLG | FTO | NiO-np | Perovskite | PCBM-60 | Au", + "SLG | FTO | NiO-np | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | NiO-np | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | NiO-np | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | FTO | Oxo-Graphene | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | FTO | P1-2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PANI | Perovskite | PCBM-60 | Au", + "SLG | FTO | PCBCB | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | PCBCB | Perovskite | Thiophene | Spiro-MeOTAD | Au", + "SLG | FTO | PCBM-60 | BCP | Perovskite | CuO | Ag", + "SLG | FTO | PCBM-60 | BCP | Perovskite | NiO-np | Ag", + "SLG | FTO | PCBM-60 | Carbon | Perovskite | PEDOT:PSS | Ag", + "SLG | FTO | PCBM-60 | Perovskite | CuPc | Carbon", + "SLG | FTO | PCBM-60 | Perovskite | P3HT | Au", + "SLG | FTO | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | PCBM-60-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | PCBM-60; TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | PEDOT | Perovskite | PCBM-60 | Au", + "SLG | FTO | PEDOT:PSS | CuSCN | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | NPB | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | PTAA | Perovskite | Me4NBr | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | 1,2-diaminoethane | C60 | BCP | Ag | Au", + "SLG | FTO | PEDOT:PSS | Perovskite | 2-HI-PVK | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | 4-HI-PVK | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | B-DIPBI | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | C60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | C60 | BCP | Ag | Au", + "SLG | FTO | PEDOT:PSS | Perovskite | C60 | BCP | Cu", + "SLG | FTO | PEDOT:PSS | Perovskite | Cytop | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | D-C60 | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | DMEC-60 | LiF | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | DMEC-70 | LiF | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | F8TBT | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | H-DIPBI | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | MABr | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | Me4NBr | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | Me4NI | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PC61BEH | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | Au", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | C3-CBL | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Ag | Au", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | Ca | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | Carbon | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | TIPD | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | TiO2 | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | TiO2 | BCP | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | TiO2-c | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60; F8TBT | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-60; PCDTBT | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-70 | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCBM-70 | LiF | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PCPDT-PDI | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PDBS-PDI | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PSe-PDI | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PT-PDI | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | PV-PDI | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | Ru(acac) | Au", + "SLG | FTO | PEDOT:PSS | Perovskite | ZnO-c | Ag", + "SLG | FTO | PEDOT:PSS | Perovskite | ZnO-np | Al", + "SLG | FTO | PEDOT:PSS | Perovskite | Zr(acac)4 | Au", + "SLG | FTO | PEDOT:PSS | Perovskte | PCBM-60 | Ag", + "SLG | FTO | PEDOT:PSS | Perovskte | PCBM-60 | Cr2O3 | Ag", + "SLG | FTO | PEDOT:PSS | TPA-NAP-TPA | Perovskite | PCBM-70 | Ag", + "SLG | FTO | PEDOT:PSS\uff5cPerovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PEG; PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PEI | PCBM-60 | Perovskite | PTAA | Au", + "SLG | FTO | PEI | PCBM-60 | Perovskite | PTAA\uff5cAu", + "SLG | FTO | PTAA | CuGaO2-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PTAA | PFN | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PTAA | Perovskite | C60 | Ag", + "SLG | FTO | PTAA | Perovskite | C60 | BCP | Cu", + "SLG | FTO | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PTAA | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | PTAA | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | FTO | PTCA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | PTCBI | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | PTEG-1 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | PTO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | PTPD | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PbZrTiO3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Perovskite | Ag", + "SLG | FTO | Perovskite | Au", + "SLG | FTO | Perovskite | BCP | Au", + "SLG | FTO | Perovskite | Carbon", + "SLG | FTO | Perovskite | CuPc | Carbon", + "SLG | FTO | Perovskite | Graphene | Ag", + "SLG | FTO | Perovskite | HTM | Ag", + "SLG | FTO | Perovskite | KY7F22-np | Spiro-MeOTAD | Au", + "SLG | FTO | Perovskite | Metal", + "SLG | FTO | Perovskite | P3HT | Ag", + "SLG | FTO | Perovskite | P3HT | Au", + "SLG | FTO | Perovskite | PCBM-60 | Ag", + "SLG | FTO | Perovskite | PCBM-60 | Al", + "SLG | FTO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | Perovskite | PCBM-60 | C60 | BCP | Cu", + "SLG | FTO | Perovskite | PCBM-60 | C60 | BCP | Cu | Au | BCP", + "SLG | FTO | Perovskite | PCBM-60 | PEI | Ag", + "SLG | FTO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | Perovskite | Spiro-MeOTAD | Al", + "SLG | FTO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Perovskite | Spiro-MeOTAD | CANP | Spiro-MeOTAD | Au", + "SLG | FTO | Poly-EDOT-C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | PolyTPD | PFN | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PolyTPD | Perovskite | C60 | BCP | Ag", + "SLG | FTO | PolyTPD | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | PyCEE | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2 | Perovskite | Spiro-MeOTAD | MoOx | Ag", + "SLG | FTO | SnO2 | Perovskite | Spiro-MeOTAD | MoOx | IAI", + "SLG | FTO | SnO2-QDs | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-QDs | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-QDs | Perovskite | Au@CdS | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-QDs | Perovskite | Carbon", + "SLG | FTO | SnO2-QDs | Perovskite | CsBiBr3-QDs | Carbon", + "SLG | FTO | SnO2-QDs | Perovskite | CsCuBr3-QDs | Carbon", + "SLG | FTO | SnO2-QDs | Perovskite | CsSnBr3-QDs | Carbon", + "SLG | FTO | SnO2-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | 1\u2010butyl\u20103\u2010methylimidazolium bromide | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | 3-(1-pyridinio)-1-propanesulfonate | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | 3-(1-pyridinio)-1-propanesulfonate | Perovskite | asy-PBTBDT | Au", + "SLG | FTO | SnO2-c | APTES-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Al2O3-mp | NiO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | BMIMBF4 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | C60 | Perovskite | N4,N4'-(4,10-dimethyl-6H,12H-5,11-methanodibenzo[b,f][1,5]diazocine-2,8-diyl)bis(N4,N4',N4'-tris(4-methoxyphenyl)-[1,1'-biphenyl]-4,4'-diamine) | Ag", + "SLG | FTO | SnO2-c | C60 | Perovskite | PMMA | DTPC8-ThDTPA | Au", + "SLG | FTO | SnO2-c | C60 | Perovskite | PMMA | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | C60 | Perovskite | TRUX-E-T | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | CZ-STA | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | CZ-STA; CZ-TA | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | CZ-TA | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | PMMA | DTP-C6Th | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | PMMA | DTPC13-ThTPA | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | PMMA | DTPC8-ThTPA | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | PMMA | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | MoOx | ITO", + "SLG | FTO | SnO2-c | C60-SAM | Perovskite | TET | Au", + "SLG | FTO | SnO2-c | Carbon-QDs | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | Cs2SnO4 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Graphene | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | KCl | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | CuMe2Pc | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | CuMe32c | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | CuPc | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | FBT-TH4 | CuxO | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | IDT-TPA | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | IDTC4-TPA | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | IDTC6-TPA | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | IDTT-TPA | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | M111 | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | M112 | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | M113 | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | M114 | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | PTAA | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | PTZ-TPA | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | PbS | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | PdMe2Pc | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | PbS | Au", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | XDB | MoO3 | Ag", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | XMP | MoO3 | Ag", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | XOP | MoO3 | Ag", + "SLG | FTO | SnO2-c | PCBM-60 | Perovskite | XPP | MoO3 | Ag", + "SLG | FTO | SnO2-c | PCBM-60; PMMA | Perovskite | PMMA | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | PMMA | Perovskite | PMMA | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovsite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | Perovskite | 1\u2010adamantylamine hydrochloride | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | 2,7-Bis(4,4\u2032-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluorene | Au", + "SLG | FTO | SnO2-c | Perovskite | Alkoxy-PTEG | Au", + "SLG | FTO | SnO2-c | Perovskite | Au", + "SLG | FTO | SnO2-c | Perovskite | Carbon", + "SLG | FTO | SnO2-c | Perovskite | Carbon | CuSCN", + "SLG | FTO | SnO2-c | Perovskite | Choline chloride | Spiro-MeOTAD | SWCNTs | Au", + "SLG | FTO | SnO2-c | Perovskite | CuBuPc | Au", + "SLG | FTO | SnO2-c | Perovskite | CuEtPc | Au", + "SLG | FTO | SnO2-c | Perovskite | CuHePc | Au", + "SLG | FTO | SnO2-c | Perovskite | CuMePc | Au", + "SLG | FTO | SnO2-c | Perovskite | CuMePy | Au", + "SLG | FTO | SnO2-c | Perovskite | CuPc | Au", + "SLG | FTO | SnO2-c | Perovskite | CuPc | Carbon", + "SLG | FTO | SnO2-c | Perovskite | CuPrPc | Au", + "SLG | FTO | SnO2-c | Perovskite | CuSCN | Au", + "SLG | FTO | SnO2-c | Perovskite | CuSCN | Carbon", + "SLG | FTO | SnO2-c | Perovskite | EVA; MWCNTs | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | EVA; SWCNTs | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | H6Bu-ZnPc | Ag", + "SLG | FTO | SnO2-c | Perovskite | HMe2Pc | Au", + "SLG | FTO | SnO2-c | Perovskite | HOFP | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | Perovskite | ME6Bu-ZnPc | Ag", + "SLG | FTO | SnO2-c | Perovskite | Mo(tfd-COCF3)3 | SWCNTs | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | N,N-bis-[7-(4,4\u2032-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluoren-2-yl]-4-methoxyaniline | Au", + "SLG | FTO | SnO2-c | Perovskite | N-CuMe2Pc | Au", + "SLG | FTO | SnO2-c | Perovskite | N-CuMe2Pc; P3HT | Au", + "SLG | FTO | SnO2-c | Perovskite | NP-SC6-TiOPc | Au", + "SLG | FTO | SnO2-c | Perovskite | NiO-c | Ni", + "SLG | FTO | SnO2-c | Perovskite | Ome-DPA-CuPc | Au", + "SLG | FTO | SnO2-c | Perovskite | Ome-TPA-CuPc | Au", + "SLG | FTO | SnO2-c | Perovskite | P-OR | Au", + "SLG | FTO | SnO2-c | Perovskite | P-R | Au", + "SLG | FTO | SnO2-c | Perovskite | P-SC6-TiOPc | Au", + "SLG | FTO | SnO2-c | Perovskite | P1C1 | Au", + "SLG | FTO | SnO2-c | Perovskite | P3HT | Ag", + "SLG | FTO | SnO2-c | Perovskite | P3HT | Au", + "SLG | FTO | SnO2-c | Perovskite | P3HT | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | P3HT; SWCNTs | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | PBDTP-DTDPP | Au", + "SLG | FTO | SnO2-c | Perovskite | PTAA | Au", + "SLG | FTO | SnO2-c | Perovskite | PTEG | Ag", + "SLG | FTO | SnO2-c | Perovskite | PdMePy | Au", + "SLG | FTO | SnO2-c | Perovskite | PtMePy | Au", + "SLG | FTO | SnO2-c | Perovskite | RCP | Au", + "SLG | FTO | SnO2-c | Perovskite | RE-ZnBu4Pc | Au", + "SLG | FTO | SnO2-c | Perovskite | SM09 | Ag", + "SLG | FTO | SnO2-c | Perovskite | SWCNTs | PMMA | Ag", + "SLG | FTO | SnO2-c | Perovskite | SWCNTs | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | Perovskite | SWCNTs | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Ag | ITO", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Carbon", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Carbon | Al", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Carbon | Graphite", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Cu", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Cu1.75S | Au", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | FTO | SLG", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | MoO2 | ITO", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | P3HT | FTO | SLG", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | PDPP4T | Au", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS | FTO | SLG", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | PTAA | FTO | SLG", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Rubrene | Au", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | SWCNTs | Au", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | TL- PEDOT:PSS | FTO | SLG", + "SLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD:P3HT | Au", + "SLG | FTO | SnO2-c | Perovskite | TAT-t BuSTy | Au", + "SLG | FTO | SnO2-c | Perovskite | V1050 | Au", + "SLG | FTO | SnO2-c | Perovskite | V1061 | Au", + "SLG | FTO | SnO2-c | Perovskite | WO3 | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | Perovskite | ZnBu4Pc | Au", + "SLG | FTO | SnO2-c | Perovskite | ZnMe2Pc | Au", + "SLG | FTO | SnO2-c | Perovskite | asy-PBTBDT | Au", + "SLG | FTO | SnO2-c | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | SnO2-c | Perovskite | V1056 | Au", + "SLG | FTO | SnO2-c | SnO2-c | Perovskite | V1091 | Au", + "SLG | FTO | SnO2-c | SnO2-c | Perovskite | V1102 | Au", + "SLG | FTO | SnO2-c | SnO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | SnO2-mp | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | SnO2-np | Perovskite | Spiro-MeOTAD | Al2O3-c | Au", + "SLG | FTO | SnO2-c | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | SnO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | SnO2-nw | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | TiO2-c | Perovskite | CuPc | Carbon", + "SLG | FTO | SnO2-c | TiO2-c | Perovskite | PTAA | Au", + "SLG | FTO | SnO2-c | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | TiO2-mp | PbI2 | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | SnO2-c | TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-mp | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-n | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-nanosheets | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-nanosheets | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-nanospheres | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | APTES-SAM | Perovskite | PTAA | Au", + "SLG | FTO | SnO2-np | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | C60 | Perovskite | V950 | Au", + "SLG | FTO | SnO2-np | CPTA | Perovskite | P3CT | Au", + "SLG | FTO | SnO2-np | CPTA | Perovskite | PTAA | Au", + "SLG | FTO | SnO2-np | CPTA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Choline Chloride | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Ethanol amine | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Graphene-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | OTES:APTES-SAM | Perovskite | PTAA | Au", + "SLG | FTO | SnO2-np | PCBM-60 | Perovskite | M107 | Au", + "SLG | FTO | SnO2-np | PCBM-60 | Perovskite | M108 | Au", + "SLG | FTO | SnO2-np | PCBM-60 | Perovskite | M109 | Au", + "SLG | FTO | SnO2-np | PCBM-60 | Perovskite | M110 | Au", + "SLG | FTO | SnO2-np | PCBM-60 | Perovskite | Selenium | Au", + "SLG | FTO | SnO2-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | PCBM-60 | Perovskite | X25 | Au", + "SLG | FTO | SnO2-np | PFN-Br | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Perovskite | CZTS | Carbon", + "SLG | FTO | SnO2-np | Perovskite | Carbon", + "SLG | FTO | SnO2-np | Perovskite | CsPbBr3-np | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Perovskite | Cu3SbS4-np | Au", + "SLG | FTO | SnO2-np | Perovskite | Cz-OMeTAD | Au", + "SLG | FTO | SnO2-np | Perovskite | EH44 | MoO3 | Al", + "SLG | FTO | SnO2-np | Perovskite | Hexamethyl-substituted subphthalocyanine | Au", + "SLG | FTO | SnO2-np | Perovskite | NiO-c | FTO", + "SLG | FTO | SnO2-np | Perovskite | PABA | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Perovskite | PBDT(2F)T | Ag", + "SLG | FTO | SnO2-np | Perovskite | PBDT(2H)T | Ag", + "SLG | FTO | SnO2-np | Perovskite | PBDT(T)(2F)T | Ag", + "SLG | FTO | SnO2-np | Perovskite | PTAA | Au", + "SLG | FTO | SnO2-np | Perovskite | PTAA | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | Carbon black", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | Graphen", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | Graphene | PEDOT", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | Graphite", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | PEDOT:PSS | PDMS", + "SLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | PEDOT:PSS | PEDOT:PSS | PDMS", + "SLG | FTO | SnO2-np | Preovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | Sinapoyl malate | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | TiO2-c | Perovskite | Carbon", + "SLG | FTO | SnO2-np | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np; TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-np; TiO2-np; MXene | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-nt | Perovskite | P3HT | Au", + "SLG | FTO | SnO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-nw | SnO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnO2-nw | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SnS2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SrGeO3 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | SrSnO3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SrTiO3 | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SrTiO3 | Graphene; Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SrTiO3 | TiO2-mp | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SrTiO3 | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | SrTiO3-c | SrTiO3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TCl-PDI | Perovskite | P3HT | MoO3 | Ag", + "SLG | FTO | TMAH | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2 | Perovskite | MEH-PPV | Carbon", + "SLG | FTO | TiO2-3D | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-a | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-a | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-bulk | Perovskite | Spiro-MeOTAD | Graphite", + "SLG | FTO | TiO2-c | (3-Aminopropyl)trimethoxysilane | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | 1-OMe-SAM | Perovskite | P3HT | MoO3 | Au", + "SLG | FTO | TiO2-c | 2-OMe-SAM | Perovskite | P3HT | MoO3 | Au", + "SLG | FTO | TiO2-c | 2-PA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | 3-OMe-SAM | Perovskite | P3HT | MoO3 | Au", + "SLG | FTO | TiO2-c | 3-PA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | AAO | Perovskite | MoOx | ITO", + "SLG | FTO | TiO2-c | AAO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Ag-np | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Ag@TiO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | AgInS2-QDs; TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Al2O3-c | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | Al2O3-c | TiO2-mp | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | NiO-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | Al2O3-mp | NiO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | AS44 | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Al2O3-mp | Me2N-DATPA | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Al2O3-mp | MeO-DATPA | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Al2O3-mp | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Au-np; NiO", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | CBP | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | EH44 | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | IPFB | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | P3HT | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | P3HT | SWCNTs | PMMA | Cu", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | P3HT; SWCNTs | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | P3HT; SWCNTs | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | P3HT; SWCNTs; Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | PCBM-60 | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | PDI | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | PEDOT | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | SWCNTs | PMMA | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | PEDOT:PSS | PEDOT:PSS:PSA", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | TPD | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | TTB-TTQ | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Perovskite | Th-PDI | Au", + "SLG | FTO | TiO2-c | Al2O3-mp | Pervskite | CuSCN | Au", + "SLG | FTO | TiO2-c | Al2O3-mp; Ag@TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Al2O3-nt | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Al2O3-nt | Perovskite | Spiro-MeOTAD | MoOx | ITO", + "SLG | FTO | TiO2-c | Alq3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Au-np | Perovskite | P3HT | Ag", + "SLG | FTO | TiO2-c | Au-np; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Au@Ag-np | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Au@SiO2-np; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Au@SiO2-nw; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Au@TiO2-np; TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | BZnTPP | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Ba(La)SnO3 | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | Ba0.5Sr0.5SnO3-np | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | Ba0.8Sr0.2SnO3-np | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | Ba0.9Sr0.1SnO3-np | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | BaSnO3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | BaSnO3-np | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | C60 | Perovskite | Crosslinked TCTA-BVP | Ag", + "SLG | FTO | TiO2-c | C60 | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | C60 | Perovskite | TCTA-BVP | Ag", + "SLG | FTO | TiO2-c | C60-BCT | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | C60-BCT-Au-NP | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | C60-ETA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | C60-NH2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | C60-SAM | Perovskite | HTM3 | Ag", + "SLG | FTO | TiO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | CO2CO3 | Perovskite | PolyTPD | Au", + "SLG | FTO | TiO2-c | CSOE | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Carbon-nt; TiO2-mp | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | CdS | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | CeO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | CoCr | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | CsAc | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | CsBr | Perovskite | Carbon", + "SLG | FTO | TiO2-c | CsCl | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | CsPbBr3-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | CsPbCl3-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | CsPbI3-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | CuI | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | D35 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Dimethylbiguanide | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Graphene | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Graphene-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Graphene-np; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Graphene; SrTiO3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Graphite-nf | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Graphydine-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | H3PW12O4; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Heparin-Na | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ITIC | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | KH550 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | KH560 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | KH570 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | KY7F22-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | MCA | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | MPMIC60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | MgO | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | MgO | TiO2-mp | ZrO2-mp | NiO-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | MgO | TiO2-nw | Perovskite | Spiro-MeOTAD | AgAl", + "SLG | FTO | TiO2-c | MoOx | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | NaYF4-np; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | NaYF4:Yb:Er-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | NaYF4:Yb:Er-np; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | NaYF4:Yb:Tm-np | Perovskite | NaYF4:Yb:Tm-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | NaYF4:Yb:Tm-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | NiO-np | Perovskite | NiO-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | NiO-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | OTS | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | OTS | Perovskite | Spiro-MeOTAD | Ni-grid", + "SLG | FTO | TiO2-c | PCBA | Perobskite | Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene | Ag", + "SLG | FTO | TiO2-c | PCBA | Perobskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | PCBA | Perovskite | Au", + "SLG | FTO | TiO2-c | PCBA | Perovskite | DTB | Au", + "SLG | FTO | TiO2-c | PCBA | Perovskite | P1 | Au", + "SLG | FTO | TiO2-c | PCBA | Perovskite | P2 | Au", + "SLG | FTO | TiO2-c | PCBA | Perovskite | P3 | Au", + "SLG | FTO | TiO2-c | PCBA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PCBA | Perovskite | Spiro-OMeOTAD | Ag", + "SLG | FTO | TiO2-c | PCBDAN | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PCBM-60 | C60-ETA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PCBM-60 | C60-SAM | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | PCBM-60 | PbI2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perosvkite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | ACR-TPA | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | COTT-1 | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | COTT-1 | COTT-2 | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | COTT-2 | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | CzP | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | CzPF | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | P3HT | WO3 | Ag", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | PCDTBT1 | MoO3 | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | PDPPT-TT | Ag", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | PTAA\uff5cAu", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | PCBM-60 | Perovskite | V997 | Au", + "SLG | FTO | TiO2-c | PCBSD | Perovskite | HFB-OMeDPA | Au", + "SLG | FTO | TiO2-c | PCBSD | Perovskite | HPB-OMeDPA | Au", + "SLG | FTO | TiO2-c | PCBSD | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PCBSD:GD | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PEO | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | PS | Perovskite | PTAA | PEDOT:PSS | ITO | SLG", + "SLG | FTO | TiO2-c | PS:TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perosvkite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | 0F | Au", + "SLG | FTO | TiO2-c | Perovskite | 2,4-spiro | Au", + "SLG | FTO | TiO2-c | Perovskite | 2,5\u2010bis(4,4\u2032\u2010bis(methoxyphenyl)aminophen\u20104\u2032\u2032\u2010yl)\u20103,4\u2010ethylenedioxythiophene | Au", + "SLG | FTO | TiO2-c | Perovskite | 2D-PT | Au", + "SLG | FTO | TiO2-c | Perovskite | 2F | Au", + "SLG | FTO | TiO2-c | Perovskite | 2mF-X59 | Au", + "SLG | FTO | TiO2-c | Perovskite | 3,4-spiro | Au", + "SLG | FTO | TiO2-c | Perovskite | 3-Butylthiophene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | 3-Dodecylthiophene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | 3-Ethylthiophene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | 3-Hexylthiophene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | 3-Methylthiophene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | 3-hydroxypyridine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | 5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione) | MoOx | Ag", + "SLG | FTO | TiO2-c | Perovskite | 9,9'-([1,2,5]thiadiazolo[3,4-c]pyridine-4,7-diylbis(4,1- phenylene))bis(N3,N3,N6,N6-tetrakis(4-methoxyphenyl)-9H-carbazole-3,6-diamine) | Au", + "SLG | FTO | TiO2-c | Perovskite | Ag", + "SLG | FTO | TiO2-c | Perovskite | Al2O3 | CuPc(tBu)4 | Au", + "SLG | FTO | TiO2-c | Perovskite | Al2O3-c | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Perovskite | Aniline | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Au", + "SLG | FTO | TiO2-c | Perovskite | Au-np; P3HT | Au", + "SLG | FTO | TiO2-c | Perovskite | BDT-C1 | Ag", + "SLG | FTO | TiO2-c | Perovskite | BP | CuSCN | Au", + "SLG | FTO | TiO2-c | Perovskite | BP-DC | Ag", + "SLG | FTO | TiO2-c | Perovskite | BTT(DPP)3-C8 | Au", + "SLG | FTO | TiO2-c | Perovskite | BTT(DPP)3-EH | Au", + "SLG | FTO | TiO2-c | Perovskite | BTT(DPP-Th)3-EH | Au", + "SLG | FTO | TiO2-c | Perovskite | Benzylamine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | C101 | Au", + "SLG | FTO | TiO2-c | Perovskite | C102 | Au", + "SLG | FTO | TiO2-c | Perovskite | C201 | Ag", + "SLG | FTO | TiO2-c | Perovskite | C60 | Au", + "SLG | FTO | TiO2-c | Perovskite | CBP | Au", + "SLG | FTO | TiO2-c | Perovskite | CGS | Au", + "SLG | FTO | TiO2-c | Perovskite | CIGS-np | Au", + "SLG | FTO | TiO2-c | Perovskite | CMO | Au", + "SLG | FTO | TiO2-c | Perovskite | CMP | Au", + "SLG | FTO | TiO2-c | Perovskite | COPV1 | Au", + "SLG | FTO | TiO2-c | Perovskite | COPV2 | Au", + "SLG | FTO | TiO2-c | Perovskite | COPV3 | Au", + "SLG | FTO | TiO2-c | Perovskite | COPV4 | Au", + "SLG | FTO | TiO2-c | Perovskite | COPV5 | Au", + "SLG | FTO | TiO2-c | Perovskite | COPV6 | Au", + "SLG | FTO | TiO2-c | Perovskite | COPV7 | Au", + "SLG | FTO | TiO2-c | Perovskite | CTZS | Au", + "SLG | FTO | TiO2-c | Perovskite | CZTS | Au", + "SLG | FTO | TiO2-c | Perovskite | Carbon", + "SLG | FTO | TiO2-c | Perovskite | Carbon black", + "SLG | FTO | TiO2-c | Perovskite | Carbon-QDs | Au", + "SLG | FTO | TiO2-c | Perovskite | Carbon-nanowalls", + "SLG | FTO | TiO2-c | Perovskite | Cu12Sb4S13 | Au", + "SLG | FTO | TiO2-c | Perovskite | Cu2CoSn4-np | Au", + "SLG | FTO | TiO2-c | Perovskite | Cu2MnSn4-np | Au", + "SLG | FTO | TiO2-c | Perovskite | Cu2NiSn4-np | Au", + "SLG | FTO | TiO2-c | Perovskite | Cu2ZnSn4-np | Au", + "SLG | FTO | TiO2-c | Perovskite | Cu2ZnSnS4 | Al", + "SLG | FTO | TiO2-c | Perovskite | CuGaO2 | Au", + "SLG | FTO | TiO2-c | Perovskite | CuI | Au", + "SLG | FTO | TiO2-c | Perovskite | CuI | Graphite", + "SLG | FTO | TiO2-c | Perovskite | CuO2 | Au", + "SLG | FTO | TiO2-c | Perovskite | CuPc | Au", + "SLG | FTO | TiO2-c | Perovskite | CuPc | Carbon", + "SLG | FTO | TiO2-c | Perovskite | CuPc | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | CuPc(tBu)4 | Au", + "SLG | FTO | TiO2-c | Perovskite | CuSCN | Ag", + "SLG | FTO | TiO2-c | Perovskite | CuSCN | Au", + "SLG | FTO | TiO2-c | Perovskite | CuSCN | Graphene | Au", + "SLG | FTO | TiO2-c | Perovskite | CuSCN | Graphite | Cu-tape", + "SLG | FTO | TiO2-c | Perovskite | CuSCN | ITO", + "SLG | FTO | TiO2-c | Perovskite | CuSCN | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | CuSeCN | Au", + "SLG | FTO | TiO2-c | Perovskite | DCZ-OMeTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | DCZ-OMeTPA | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | DFBT(DTS-FBTTh2)2 | Au", + "SLG | FTO | TiO2-c | Perovskite | DIP-C6 | Au", + "SLG | FTO | TiO2-c | Perovskite | DIQ-C12 | Au", + "SLG | FTO | TiO2-c | Perovskite | DIQ-C6 | Au", + "SLG | FTO | TiO2-c | Perovskite | DR3T | Au", + "SLG | FTO | TiO2-c | Perovskite | DR3TBDTT | Au", + "SLG | FTO | TiO2-c | Perovskite | DR3TBDTT; PDMS | Au", + "SLG | FTO | TiO2-c | Perovskite | DTS | Au", + "SLG | FTO | TiO2-c | Perovskite | DTS(IIThThHEX)2 | MoOx | Ag", + "SLG | FTO | TiO2-c | Perovskite | Diazo-OMeTPA | Au", + "SLG | FTO | TiO2-c | Perovskite | Dispiro-OMeTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | EDOT-MPH | Au", + "SLG | FTO | TiO2-c | Perovskite | EDOT-OMeTPA | Au", + "SLG | FTO | TiO2-c | Perovskite | F16CuPc | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | F22 | Ag", + "SLG | FTO | TiO2-c | Perovskite | F33 | Ag", + "SLG | FTO | TiO2-c | Perovskite | F4-TCNQ | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Florinated polymer | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Perovskite | Fu-OMeTPA | Au", + "SLG | FTO | TiO2-c | Perovskite | Graphene", + "SLG | FTO | TiO2-c | Perovskite | Graphite", + "SLG | FTO | TiO2-c | Perovskite | H-PheDOT | Au", + "SLG | FTO | TiO2-c | Perovskite | H101 | Au", + "SLG | FTO | TiO2-c | Perovskite | HTM | Au", + "SLG | FTO | TiO2-c | Perovskite | HTM | Metal", + "SLG | FTO | TiO2-c | Perovskite | I2; LiI; Methoxypropionitrile | Pt | FTO", + "SLG | FTO | TiO2-c | Perovskite | IEICO | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | IEICO-4F | Spiro-MeOTAD | MoO3 | Au", + "SLG | FTO | TiO2-c | Perovskite | IEICO; PBDTTT-E-T | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | ITIC | Au", + "SLG | FTO | TiO2-c | Perovskite | InP-np | Au", + "SLG | FTO | TiO2-c | Perovskite | InP-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | JY5 | Ag", + "SLG | FTO | TiO2-c | Perovskite | JY5 | Au", + "SLG | FTO | TiO2-c | Perovskite | JY6 | Ag", + "SLG | FTO | TiO2-c | Perovskite | JY7 | Ag", + "SLG | FTO | TiO2-c | Perovskite | KY7F22-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | MEH-PPV | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Perovskite | MEH-PPV | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | MWCNTs", + "SLG | FTO | TiO2-c | Perovskite | MWCNTs; Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | MeO-PheDOT | Au", + "SLG | FTO | TiO2-c | Perovskite | MeO-TPD | Au", + "SLG | FTO | TiO2-c | Perovskite | MeOAc-Spiro-OMeTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | MoO2-np | Au", + "SLG | FTO | TiO2-c | Perovskite | MoO3 | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Perovskite | NaYF4:Yb:Tm-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | NiCoO | Al | Al203", + "SLG | FTO | TiO2-c | Perovskite | NiO | Au", + "SLG | FTO | TiO2-c | Perovskite | NiO-c | Ni", + "SLG | FTO | TiO2-c | Perovskite | NiO-np | Au", + "SLG | FTO | TiO2-c | Perovskite | NiO-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | NiO@C", + "SLG | FTO | TiO2-c | Perovskite | NiPc | Au", + "SLG | FTO | TiO2-c | Perovskite | Oleylamine | Au", + "SLG | FTO | TiO2-c | Perovskite | Oleylmine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | P | Au", + "SLG | FTO | TiO2-c | Perovskite | P(VDF-TrFE) | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | P3HT | Ag", + "SLG | FTO | TiO2-c | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | Perovskite | P3HT | Au | Ag", + "SLG | FTO | TiO2-c | Perovskite | P3HT | Cu", + "SLG | FTO | TiO2-c | Perovskite | P3HT | Graphite", + "SLG | FTO | TiO2-c | Perovskite | P3HT | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | P3HT | MoO3 | Au", + "SLG | FTO | TiO2-c | Perovskite | P3HT | PEDOT:PSS | ITO", + "SLG | FTO | TiO2-c | Perovskite | P3HT | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | P3HT:Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | P3HT; SWCNTs | PEDOT:PSS | Ni-grid", + "SLG | FTO | TiO2-c | Perovskite | P3HT; Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | P3HT; Spiro-MeOTAD | Au | Ag", + "SLG | FTO | TiO2-c | Perovskite | PBDTTT-CT | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | PBDTTT-E-T | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | PBTTTV-h | Au", + "SLG | FTO | TiO2-c | Perovskite | PCBM-60 | Au", + "SLG | FTO | TiO2-c | Perovskite | PCBM-60 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | PCE-10 | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | PCP-TPA | Au", + "SLG | FTO | TiO2-c | Perovskite | PCPD2FBT:BCF | PEDOT:PSS | ITO | SLG", + "SLG | FTO | TiO2-c | Perovskite | PDMS | Au", + "SLG | FTO | TiO2-c | Perovskite | PEDOT:PSS | Au", + "SLG | FTO | TiO2-c | Perovskite | PEG | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Perovskite | PHPT-py | Au", + "SLG | FTO | TiO2-c | Perovskite | PIDT-DFBT | Au", + "SLG | FTO | TiO2-c | Perovskite | PIF8-TAA | Au", + "SLG | FTO | TiO2-c | Perovskite | PMMA | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Perovskite | PO-Spiro | Au", + "SLG | FTO | TiO2-c | Perovskite | PPDI | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | PPDT2FBT | Au", + "SLG | FTO | TiO2-c | Perovskite | PT-DC | Ag", + "SLG | FTO | TiO2-c | Perovskite | PT3HT | Ag", + "SLG | FTO | TiO2-c | Perovskite | PTAA | Ag", + "SLG | FTO | TiO2-c | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | Perovskite | PTAA | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | PTAA | MoOx | Ag", + "SLG | FTO | TiO2-c | Perovskite | PTAA | PEDOT:PSS | ITO", + "SLG | FTO | TiO2-c | Perovskite | PTAA | Pd", + "SLG | FTO | TiO2-c | Perovskite | PTAA | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | PTB7 | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | PTB7-Th | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | PTB7:Th | Au", + "SLG | FTO | TiO2-c | Perovskite | PTZ2 | Au", + "SLG | FTO | TiO2-c | Perovskite | PVK | Ag", + "SLG | FTO | TiO2-c | Perovskite | PVP | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | PbS-QDs | Au", + "SLG | FTO | TiO2-c | Perovskite | PbS-QDs | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Ph-OMeTPA | Au", + "SLG | FTO | TiO2-c | Perovskite | Ph-inv-OMeTPA | Au", + "SLG | FTO | TiO2-c | Perovskite | Phenethylamine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Poly-N-vinylcarbazole | SP-11 | Au", + "SLG | FTO | TiO2-c | Perovskite | Poly-N-vinylcarbazole | SP-12 | Au", + "SLG | FTO | TiO2-c | Perovskite | Poly-N-vinylcarbazole | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | PolyTPD | Au", + "SLG | FTO | TiO2-c | Perovskite | PolyTPD | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Pyridine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | SAF-5 | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | SCZF-5 | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | SP-01 | Au", + "SLG | FTO | TiO2-c | Perovskite | SP-02 | Au", + "SLG | FTO | TiO2-c | Perovskite | SP-11 | Au", + "SLG | FTO | TiO2-c | Perovskite | SP-12 | Au", + "SLG | FTO | TiO2-c | Perovskite | SWCNTs", + "SLG | FTO | TiO2-c | Perovskite | SWCNTs | PEDOT:PSS | Ni-grid", + "SLG | FTO | TiO2-c | Perovskite | SWCNTs | PMMA", + "SLG | FTO | TiO2-c | Perovskite | SWCNTs | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Perovskite | SWCNTs | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag | ITO", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag | Ni", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag-nw", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | AgAl", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Al", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Al2O3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au | Ag", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au | Ag-nw", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au | FTO", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au | Ni", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Carbon | FTO", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Carbon | FTO | SLG", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Cr | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Graphene", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Graphene | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MWCNTs; Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MnOx | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Au | MoO3", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Ag", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Ag | Mox", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Au | Cu | MoOx", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Au | MoOx", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Cu | MoOx", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | ITO", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ni", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ni-grid", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | NiO | Ag | NiO", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | P3HT; SWCNTs | PEDOT:PSS | Ni-grid", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS | Graphene", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS | Graphene | PMMA | PDMS", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Pb", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Pt", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | TS-CuPc | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD-F | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD-I | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-MeTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-PT-OMeTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | Spiro-tBuBED | MoO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | T30P | Au", + "SLG | FTO | TiO2-c | Perovskite | T40P | Au", + "SLG | FTO | TiO2-c | Perovskite | T60P | Au", + "SLG | FTO | TiO2-c | Perovskite | T80P | Au", + "SLG | FTO | TiO2-c | Perovskite | TAE1 | Au", + "SLG | FTO | TiO2-c | Perovskite | TAE3 | Au", + "SLG | FTO | TiO2-c | Perovskite | TAE4 | Au", + "SLG | FTO | TiO2-c | Perovskite | TFB | Au", + "SLG | FTO | TiO2-c | Perovskite | TPA-OMeTPA | Au", + "SLG | FTO | TiO2-c | Perovskite | TPDCN | Au", + "SLG | FTO | TiO2-c | Perovskite | TPE-4DPA | Ag", + "SLG | FTO | TiO2-c | Perovskite | TPE-NMe | Ag", + "SLG | FTO | TiO2-c | Perovskite | TPE-Nme | Ag", + "SLG | FTO | TiO2-c | Perovskite | TPE-W1 | Ag", + "SLG | FTO | TiO2-c | Perovskite | TPE-W2 | Ag", + "SLG | FTO | TiO2-c | Perovskite | TPE-W4 | Ag", + "SLG | FTO | TiO2-c | Perovskite | TPFPB | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | TTz-1 | Au", + "SLG | FTO | TiO2-c | Perovskite | Th-OMeTPA | Au", + "SLG | FTO | TiO2-c | Perovskite | Th-PDI | Au", + "SLG | FTO | TiO2-c | Perovskite | Thiophene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | V885 | Au", + "SLG | FTO | TiO2-c | Perovskite | V886 | Au", + "SLG | FTO | TiO2-c | Perovskite | V911 | Au", + "SLG | FTO | TiO2-c | Perovskite | WO3 | Ag", + "SLG | FTO | TiO2-c | Perovskite | X51 | Ag", + "SLG | FTO | TiO2-c | Perovskite | X59 | Au", + "SLG | FTO | TiO2-c | Perovskite | Yih-1 | Au", + "SLG | FTO | TiO2-c | Perovskite | Yih-2 | Au", + "SLG | FTO | TiO2-c | Perovskite | ZnPc | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Perovskite | [Fe(bpyPY4)](OTf)2.5 | Au", + "SLG | FTO | TiO2-c | Perovskite | di-TPA | Au", + "SLG | FTO | TiO2-c | Perovskite | dly-1 | Au", + "SLG | FTO | TiO2-c | Perovskite | dly-2 | Au", + "SLG | FTO | TiO2-c | Perovskite | p-DTS(FBTTh2)2 | Ag", + "SLG | FTO | TiO2-c | Perovskite | p-DTS(FBTTh2)2 | MoOx | Ag", + "SLG | FTO | TiO2-c | Perovskite | pBBTa\u2010BDT1 | Au", + "SLG | FTO | TiO2-c | Perovskite | pBBTa\u2010BDT2 | Au", + "SLG | FTO | TiO2-c | Perovskite | pPh-2MODPACz | Au", + "SLG | FTO | TiO2-c | Perovskite | pm-TPE-4DPA | Ag", + "SLG | FTO | TiO2-c | Perovskite | po-TPE-4DPA | Ag", + "SLG | FTO | TiO2-c | Perovskite | pp-TPE-4DPA | Ag", + "SLG | FTO | TiO2-c | Perovskite | rGO | FTO | SLG", + "SLG | FTO | TiO2-c | Perovskite | tetra-TPA | Au", + "SLG | FTO | TiO2-c | Perovskite | tri-TPA | Au", + "SLG | FTO | TiO2-c | Perovskite | tris(4-(5-hexylthiophen-2-yl)phenyl)amine | MoOx | Ag", + "SLG | FTO | TiO2-c | Perovskite-QDs | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Polystyrene-ns | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SAED | Perovskite | ZnPc | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | STHNP | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SWCNTs; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Si-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiO2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiO2-IO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | SiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | SiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiO2-nanocolumns | TiO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiO2-np | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiO2-np | TiO2-c | SiO2-np | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiO2-np | TiO2-c | SiO2-np | TiO2-c | SiO2-np | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiO2-np; TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SiW11O39-POM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SnO2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SnO2-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SnO2-c | Perovskite | CuPc | Carbon", + "SLG | FTO | TiO2-c | SnO2-c | Perovskite | Graphene; P3HT | Carbon", + "SLG | FTO | TiO2-c | SnO2-c | Perovskite | P3HT | Carbon", + "SLG | FTO | TiO2-c | SnO2-c | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | SnO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SnO2-c | SnO2-np | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | SnO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | SnO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | SnO2-mp | Perovskite | P1 | Au", + "SLG | FTO | TiO2-c | SnO2-mp | Perovskite | P2 | Au", + "SLG | FTO | TiO2-c | SnO2-mp | Perovskite | P3 | Au", + "SLG | FTO | TiO2-c | SnO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SnO2-nanosheets | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SnO2-np | BSO-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SnO2-np | Perovskite | PDO1 | Au", + "SLG | FTO | TiO2-c | SnO2-np | Perovskite | PDO2 | Au", + "SLG | FTO | TiO2-c | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SnO2-np | Perovskite | Spiro-MeOTAD | Carbon | FTO", + "SLG | FTO | TiO2-c | SnO2@TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Sr2CeO4:Eu | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Sr2CeO4:Sm | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SrTiO3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | SrTiO3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | SrTiO3-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | SrTiO3-np; TiO2-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | Thiourea | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiBaO-nanosphere | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-IO | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-IO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-c | Perovskite | Au", + "SLG | FTO | TiO2-c | TiO2-c | Perovskite | Cu2O | Au", + "SLG | FTO | TiO2-c | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-helices | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-hollow spheres; TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | 3-aminopropanoic acid-SAM | Perovskite | P3HT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | 4-Aminobenzoic acid | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | 4-Aminobutyric acid | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | 4-aminobenzoic acid-SAM | Perovskite | P3HT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | 4Pa-SAM | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | 5-aminovaleric acid | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-c | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-c | Perovskite | Ethyl acetate; I2; LiI; NMBI; Urea | Pt | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-c | Perovskite | Spiro-MeOTAD | Ag | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-c | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | NiO | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | NiO-mp | Perovskite", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | NiO-mp | Perovskite | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | NiO-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | NiO-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | AgAu-mp", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Au-np; NiO", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Carbon black; Graphite", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Carbon black; Graphite | MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Carbon-nt", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Carbon; WO2-np", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Carbon; WO3-np", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Graphite ribbon", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | H:MoO3-nanobelts", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | NiO-mp | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | NiO-mp | SWNCTs", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | Perovskite | Spiro-MeOTAD | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-mp | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Au | MoOx", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-np | Perovskite | B-MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Al2O3-np | Perovskite | MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Aminocaproic acid | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Aminocaproic acid; Caproic acid | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Au-np | MgO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Au-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Au@Ag-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Au@SiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | B2Pin2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | BaTiO3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Bacteriorhodopsin | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | C60 | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | C60-SAM | Perovskite | P3HT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | C60-SAM | Perovskite | PCPDTBT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | C60-SAM | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | CBA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | CO2CO3 | Perovskite | PolyTPD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | CaTiO3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | CaTiO3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Carbon-QDs | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Carbon-QDs | Perovskite | Carbon | Perovskite | Carbon-QDs | TiO2-mp | TiO2-c | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Carbon-QDs | Perovskite | Carbon-QDs | Carbon | Carbon-QDs | Perovskite | Carbon-QDs | TiO2-mp | TiO2-c | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Carbon-QDs | Perovskite | Phosphor-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Carbon-QDs | Perovskite | Red Phosphorous-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Carbon-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Carbon-np:Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Carpoic acid | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | CdS | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | CdSe-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Cs2CO3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | CsI | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | D149 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | D149 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | D205 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | ETPM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | GABAHI | Perovskite | Spiro-MeOTAD | Ag | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Glycine | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Graphen Oxide | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Graphene | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Graphene-QDs | Perovskite | CISZ-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Graphene-QDs | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Graphene-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | HOOC-C11H22-SH | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | HOOC-Ph-SH | Perovskite | Pentafluorobenzenethiol | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | HOOC-Ph-SH | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | In2O3 | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | L-alanine | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | La2O3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Li-GO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | MAI | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | MBA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | MPTS-SAM | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | MXene | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | MgO | Perovskite | Montmorillonite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | MgO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | MgO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | N719 | Perovskite | Pt | SLG | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | NBA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | NH4I | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | NaPTH | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | NaYF2@SiO2-np | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | NiO-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PABA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60 | Perovskite | Co-porphyrin | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60 | Perovskite | Spiro-MeOTAD | ITO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60 | Perovskite | Spiro-MeOTAD | ITO | MgF2", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60 | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60; PMMA | BAI | Perovskite | BAI | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60; PMMA | Perovskite | PDPP-3T | MoOx | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60; PMMA | Perovskite | PMMA | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60; PMMA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60; PS | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60; PTAA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PCBM-60; Poly(N-vinylcarbazole) | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PTDPQ | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | PbI2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PbI2 | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | PbS-QDs | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | PbS-QDs | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | PbSe | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | PbTiO3 | Perovskite | Carbon-nt", + "SLG | FTO | TiO2-c | TiO2-mp | PcM-Cou | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (1,6-di{3-[2-(4- methylphenyl)vinyl]carbazol-9-yl}hexane | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (10-butyl-3,7-diphenylphenoxazine) | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (2Z,2'Z)-2,2'-(((2,4-dimethylphenyl) azanediyl) bis([1,1'-biphenyl]-4',4-diyl)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (2Z,2'Z)-2,2'-((10-(2-ethylhexyl)-10H-phenothiazine-3,7-diyl) bis(4,1- phenylene)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (BMPA-EDOT)3-TPA | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (CH3)3SPbI3 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (OctPhO)8CuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (OctPhO)8ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | (n-BuO)4ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1,2-Bis[3,6-(4,4`-dimethoxydiphenylamino)-9H-carbazol-9-methyl]benzene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1,3,6,8-tetrakis-(N,N-di-p-methoxyphenylamine)pyrene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1,3-disubstituted azulene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1-(N,N-di-p-methoxyphenylamine)pyrene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1-Donecyl Mercaptan | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1a | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1b | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1c | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1d | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 1\u2010adamantylamine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(3-hexylthien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(4,3'-dihexyl-2,2'-bithien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2,7 BCz-OMeTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2,7-Ben | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2,7-Cbz-EDOT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2,7-Pyr | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2,8-bis-[2,2-bis(4-methoxyphenyl)ethenyl]-5,11-diethyl-5,11-dihidroindolo[3,2-b]carbazole | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2-((2-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2\u2032,3\u2032-d]pyrrol-2-yl) thiazol-5-yl)methylene) malononitrile | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2-((5-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2\u2032,3\u2032-d]pyrrol-2-yl) thiophen-2-yl)methylene) malononitrile | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2FBTA-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2FBTA-2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2H-MoS2 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2TPA-1-DP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2TPA-2-DP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2TPA-3-DP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 2TPA-4-DP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,3'-(2,7-bis(bis(4-methoxyphenyl)amino)-9H-fluorene-9,9-diyl)bis(N-ethyl-N,N- dimethylpropan-1-aminium) bis(trifluoromethanesulfonyl)imide | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,3\u2032,5,5\u2032-tetrasubstituted 1,1\u2032-biphenyl | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,6 BCz-OMeTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,6-Ben | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,6-Cbz-EDOT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,6-Pyr | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,6-cbz-EDOT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,6-tris-(N,N-di-p-methoxyphenylamine)pyrene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,6Cz-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 3,8,13-tris[2,2-bis(4-methoxyphenyl)ethenyl]-5,10,15-triethyl-10,15-dihydro-5H-indolo-[3,2-a:3\u2032,2\u2032-c]carbazole | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 4,4\u2032-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline) | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 4,8-bis-\n(5-bromothiophene-2-yl)-benzo thiadiazole | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 4-(4-Phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-tolyl)-phenylamine | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 4-(4-phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-methoxyphenyl)-phenylamine | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 4b | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 5,7-disubstituted azulene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 9,9-bis(3-(dimethylamino)propyl)-N2,N2,N7,N7-tetrakis(4-methoxyphenyl)-9H-fluorene- 2,7-diamine | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | 9,9\u2019-di{6-[3-(2-(4-methylphenyl)vinyl)-9-carbazol9-yl]hexyl}-[3,3\u2019]bicarbazole) | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | A101 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | A102 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ACE-QA-ACE | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ACE\u2010ANT\u2010ACE | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ADAHI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | AIGS-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | AQ | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | AQ310 | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | AS37 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ATT-OBu | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ATT-ODec | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ATT-OHex | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ATT-OMe | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | AV-Carbon; MAI", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | AZ1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | AZ2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Acetonitrile; B2; LiBr | Pt | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Adamantane | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ag-nw | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ag-sheet", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ag@SnO2-nw | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | AgAu-mp", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Al2O3 | CuSCN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Al2O3 | Ethyl acetate; I2; LiI; NMBI; Urea | Pt | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Al2O3 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Al2O3 | Sym-HTPCH | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Al2O3-c | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Al2O3-np | CuBuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Al2O3-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Asy-PBTBDT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Azomethine | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Azu-Bu | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Azu-EH | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Azu-Hex | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Azu-Me | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Azu-Oct | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B-MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B186 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B58 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B63 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B74 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BAI | DM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BChl-1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BChl-2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BChl-3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BDT-2D | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BDT-4D | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BDT-4MeOTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BDT0FMeDPA | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BDT:TT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BDTT:DPPD:TT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BEDCE | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BEDN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BF002 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BF003 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BI25 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BL07 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BL08 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BPZTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BT-BTH | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BT41 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTBDT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTDTP | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTF-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTP-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTPA-3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTPA-4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTPA-5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTPA-6 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTSe-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-Me | Au | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-OMe | Au | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTT-TPA | Au | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTTP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BTTP-CN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | B[BMPDP]2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Bi2Te3 | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Bis-amide-TTF | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Black phosphorous nanosheets | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Black phosphorous nanosheets | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BuO-DATPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | BzTA | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | C12-carbazole | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | C12-silane-SAM | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | C13-FAS | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | C5PcH2 | MoOx | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | C6TBPH2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CAS | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CBP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CDTh 1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CDTh-EtHex 2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CIGGSe-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CJ-01 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CJ-02 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CS01 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CS03 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CT1 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CT2 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CT3 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CT4 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CW3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CW4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CW5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CZTS-QDs | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CZTS0.25Se0.75; rGO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CZTS0.5Se0.5; rGO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CZTS; rGO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CZTSSe; rGO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CZTSe-QDs | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Cabon | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Candle soot | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbazole-based HTM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon Black | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon Paper", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon black; Carbon-nt; Graphite", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon black; Graphite", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon black; MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | Al", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | Carbon | Al", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | CsAc", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | FAAc", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | Graphite", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | IPA", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | KAc", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | MAAc", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | PANI | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | Perovskite | TiO2-mp | TiO2-c | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | Silica-gel-electrolyte | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon | Sn", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon-QDs | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon-epoxy | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon-nt", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon-nt | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon-nt | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon-nt | PMMA", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon-nt | PMMA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon-nt; P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon; Graphite; PANI", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon; MAI | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon; NiO-np", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon; NiS", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon; PEMA", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CdSe-QD | CsPbI3-QD | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CdSe-QD | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CdSe-QDs | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CdZnSe@ZnSe-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Chl-1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Chl-2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Co-porphyrins | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CoPcNO2-COU | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CoTh-TTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Cr", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Cs-oleate | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsAc | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsPbBr2I-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsPbBr3-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsPbBrI2-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsPbI3-QD | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsPbI3-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsSnBr2I-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsSnBr3-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsSnBrI2-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsSnI2.95F0.05 | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CsSnI3-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Cu", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Cu2O | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Cu2ZnSnS4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuBuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuCrO2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuCrO2-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuFeO2-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuH | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuI | Cr | Pt | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuI | Cu", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuI | Pt | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuInS | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuInS2 | ZnS-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuInS2-QDs | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuInS2@ZnS-QDs | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuInS2@ZnS-QDs | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuInS2@ZnS-QDs | Carbon; LPP", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuMePc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPc | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPc | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPc-Bu | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPc-DMP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPc-OBu | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPcNO2-OBFPh | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPcNO2-OMFPh | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPcNO2-OPh | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPc\u2010OTPAtBu | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuPs-TIPS | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuS | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuSCN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuSCN | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuSCN | Carbon-nt", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuSCN | ITO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | CuSCN | rGO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Cz-N | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Cz-Pyr | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | D1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | D205 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DAHI | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DAI | DM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DBC-OMeDPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DBT(QT-TPA)2 | Au | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DDOF | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DEH | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DEPT-SC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DFTAB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DHPT-SC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DIB; SeS2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DIPO-Ph4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DM1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DM1P | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DM2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DMF; I2; PVA; TBAI | Pt | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DMFA-FA | AU", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DMFA-FA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DMFA-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DNA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DOPT-SC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPA-ANT-DPA | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPA-QA-DPA | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPA-TPM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPBTD-B[BMPDP]2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPEDOT-B[BMPDP]2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPIE | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPIO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPP-F | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPP-Ome | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DPPS | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DTB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | DTBT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Decaphenylcyclopentasilane | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | EH44 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | EH44 | MoO3 | Al", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | EP02 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | EtO-DATPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | EtheneDTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | EtheneTTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ethyl acetate; I2; LiI; TBP; Urea | Pt | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | F-graphene; P3HT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | F101 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | F8T2e | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FA-CN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FA-MeOPh | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FDT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FEH | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FH-0 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FH-3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FT37 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FT55 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FT73 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FU7 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Fe3O4-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FePc-Cou | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | FeS2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Fluorene-dithiophene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Fused-F (Tris[[4-[3,3'-dihexylsilylene-2,2'-bithiophene]-7-[5\u2032\u2032-n-hexyl-(2,2\u2032; 5\u2032,2\u2032\u2032-terthiophen\ne)-5-yl]-benzo[c]-[1,2,5]thiadiazole]-2,6,10-yl]-4,4,8,8,12,12-hexamethyl-4H,8H,12\nHbenzo[1,9]quinolizino [3,4,5,6,7,-defg]acridine ) | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | G1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | G2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | GD; P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene oxide | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene oxide | CuBuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene oxide | P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene oxide | PMMA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene oxide | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene oxide; NiO-c | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene oxide; NiO-c | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphene; TSHBC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphite | Cu", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphite | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Graphite | Pt", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H-2,5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H-3,4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H-Bi | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H-Ca | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H-Di | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H-Fl | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H-Tetra | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H-Tri | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H11 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H111 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H112 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H16 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H18 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H2Pc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H2Pc-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H64 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H65 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | H66 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HA1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HA2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HBT-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HBZ-70 | Carbon | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HBZ-71 | Carbon | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HL-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HL-2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HMDI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HMPDI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HPDI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HPPHT | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HS-Ph-CN | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HS-Ph-NO2 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HS-Ph-OCH3 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HS-Ph-SCH3 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HT-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM-1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM-2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM-M1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM-P1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | HTM5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | I2; LiI; Methoxyacetonitrile | Pt | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | IDT1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | IDT2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | IEICO; PBDB-T | MoOx | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ITO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Imidazolium iodide | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | J61-ITIC | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | JK-216D | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | JK-217D | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KIPIG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KM03 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KM05 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KM07 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR122 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR131 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR133 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR145 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR216 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR321 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR353 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR355 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR360 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR373 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KR378 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | KTM3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | LCS01 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | LD22 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | LD29 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | LHTM-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | LHTM-2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Li-TFSI; TBPAu", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Li4Ti5O12 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M101 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M102 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M103 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M104 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M104 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M105 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M106 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M3; PCBM-60 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M4; PCBM-60 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M6 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M7-BR | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M7-TFSI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M:ON | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | M:OO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MAI | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MEH-PPV | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MTA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MWCNTs; ONC1", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MWCNTs; ONC2", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MWCNTs; ONC3", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MWCNTs; Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Me-BPZTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Me-QTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MeO-BPZTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MeO-DATPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MeO-TPD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Metal", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MnS | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MnS | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MoO3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MoO3 | CuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MoOx | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MoS2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MoS2 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MoS2-QDs | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | MoS2-QDs; rGO-flakes | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Montmorillonite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | N-Graphene", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | N3,N3,N9,N9\u2010tetrakis(4\u2010methoxyphenyl)xantheno[2,1,9,8\u2010klmna]xanthene\u20103,9\u2010diamine | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NH-2,6 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NH-2,7 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NP1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NP2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NaYF4:Yb:Er-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ni", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiCo2O4-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiCo2O4-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO | CuSCN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO | MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO-c | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO-c | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO-np | CuSCN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiO@C | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiPc | V2O5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiPc-Cou | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | NiS | Cr | Pt | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | O5H-OMeDPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | OAI | DM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ODA-FeS2-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | OIPC-Br | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | OIPC-I | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | OMeTPA-BDT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | OMeTPA-DPP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | OMeTPA-FA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | OMeTPA-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | OTPA-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P(BDTT-SePPD) | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P(BDTT-tPPD) | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P(BDTT-ttPPD) | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P1Z1 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P1Z2 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P2Z1 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | Ag | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | Au | Pt", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | Carbon-nt | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | Cu", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | MoO3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT | PEDOT:PSS", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT-MoS2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT; PCBM-60 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3HT; SWCNTs-PhOMe | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P3TI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P6 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P:ON | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | P:OO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PAH 1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PAH 2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PANI | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PANI | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PARA1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PBDTT-FTTE | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PBDTTT-C | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PBT1-C | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PCDTBT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PCPDTBT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PCPDTBT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PCPDTBT | PEDOT:PSS | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PD-10-DTTE-7 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PDBD-T | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PDI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PDPP-3T | MoOx | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PDPP3T | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PDPP3T | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PDPPDBTE | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PDVT-10 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEA2PBI4 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEDOT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEDOT | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEDOT | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEDOT:PSS | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEDOT:PSS | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEDOT:PSS | ITO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEDOT; Graphene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEH-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEH-2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEH-3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEH-8 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEH-9 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PEO; KI; I2 | Pt | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PET-OMeDPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PF8-TAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PFB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PFO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PIF8-TAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PM-Spiro | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PMMA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PMMA | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PO-Spiro | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | POSS-NH2 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | POSS-SH | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | POZ10 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | POZ2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | POZ3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | POZ6-2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | POZ9 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PP-Spiro | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PPV | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PPy | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PST1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PT3HT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | AU", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | Au | pV3d3 | Al2O3", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | MoO3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | MoO3 | ITO | MgF2", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | TPFB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA-1F | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA-2F | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA; TPFB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTB-BO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTB-DCB21 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTB1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTB7 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTB7 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTB7-TH | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTBT-th | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTEG | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTPD | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTPD2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTZ1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTh; Graphene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PVAc | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PVAc | Graphene oxide | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PVCz-OMeDPD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PVDF-HFP | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PVK | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PVP | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PbPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PbS-QDs | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ph-TPA-2A | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ph-TPA-4A | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ph-TPA-6A | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ph-TPM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PhCz-4MeOTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PiF8-TAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Poly(ethylene oxide) | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PolyTPD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3,5-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b']dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b'] dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Poly[4,8-bis(2-(4-(2-ethylhexyloxy)phenyl)-5-thienyl)benzo[1,2-b:4,5b\u2019]dithiophene-alt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Polymer1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Polypseudorotaxane | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Polyrotaxane | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Polystyrene | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Polystyrene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Porphyrin-H1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Porphyrin-H2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Pt", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Pt | Si", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Pt-sheet", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | PyThTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Pyridine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Pyrimidine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Q197 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Q198 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Q205 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Q216 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Q219 | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Q221 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Q222 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | RCP-BTT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S,N-Heteroacene 1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S,N-Heteroacene 2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S,N-heteropentacene based HTM 1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S,N-heteropentacene based HTM 2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S,N-heteropentacene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S,Si\u2010heteropentacene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S101 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S12 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S14 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S197 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S2 | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S7 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S9 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | S:DIB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SBFCz2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SCPDT-BiT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SDTCz2F | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SDTFCz2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SFXDAnCBZ | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-404 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-405 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-407 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-409 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-410 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-411 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-420 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-421 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SGT-422 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SM-1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SM01 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SM09 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SM13 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SO10 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SO7 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SO8 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SO9 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SQ2 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ST1 (4-(4-(bis(4-(4-(dibutylamino)styryl)phenyl)amino)styryl)-N,N-dibutylaniline) | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SWCNTs | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SWCNTs | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SWCNTs | Graphene oxide | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SWCNTs | Graphene oxide | PMMA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SWCNTs | PMMA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SYN1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Si-PO-2CN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Si-QDs | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SiO2 | MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SnS | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SnS-np | NiO-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SnS-np; ZnS-np | NiO-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-029 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-CPDT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | AU", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | AV-Carbon; MAI", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag | Al", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag | ITO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag,", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag-nw", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag-nw | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | AgAl", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au | Al2O3-c", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au | ITO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au | ITO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Carbon | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Carbon | Carbon-fiber", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Carbon | FTO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Carbon | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Cr", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Cu", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Cu | Cu2O | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Cu; Cu2O", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | CuOxNy | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Graphite", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | ITO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | ITO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | IZO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | IZO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Metal", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Mo", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Mo | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | AZO | NiAl -grid | MgF2", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | CuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | IZO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoOx | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoOx | ITO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoOx | IZO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoOx | IZO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | NbS2", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ni", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | ODA-FeS2-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | PEDOT:PSS | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | PEDOT:PSS | Ag-nw | PDMS", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | PEDOT:PSS | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | PEDOT:PSS; Sorbitol | Ag-grid | PET", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Pt", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | SWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | SWCNTs | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | V2O5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | W", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | rGO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD; X60 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-OMeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-TPM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-mF | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SrCl2 | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | SubPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Sym-HTPCH | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | T(EDOT-TPA)2 | Au | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | T-MWCNTs", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | T101 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | T102 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | T103 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | T5H-OMeDPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TAA14 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TAZ-[MeOTPATh]2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TAZ-[MeOTPA]2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TB-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TB4-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TBC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TBC-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TBC-2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TBC-3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TBP | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TBP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TCP-OC8 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TCP-OH | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TDAB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TDAC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TDT-OMeTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TFB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TFDIB | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | THY-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | THY-2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | THY-3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | THY-4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | THY-5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TIPS-Pentacene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TP1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-AZO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-BP-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-BPFN-TPA | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-BPV-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-CN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-MeOPh | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-Pc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-QA-TPA | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA-TPM | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPA\u2010ANT\u2010TPA | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPB | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPB-2-MOTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPB-4-MOTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPBC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPBS | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPD | HAT-CN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPD-4EtCz | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPD-4MeOTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPD-4MeTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPDI | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TPE-TPA-8A | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TQ1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TQ1d | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TQ2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TSHBC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TSHBC-CF3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TSHBC-tBu | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TT-2,5-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TT-3,6-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TT0 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TT1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TT80 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTA1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTA2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTA3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTB1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTB2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTB3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTBCPE | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTF1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTPA-BDT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTPA-DBQT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTPA-DSQT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTPA-DTP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TTPA-OMeTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TbT-1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TbT-2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TbT-3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Tetra-substituted azulene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Tetracene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Tetracene | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Tetrakis(4-methoxyphenyl)spiro[cyclopenta[1,2-b:5,4-b']dipyridine-5,9'-fluorene]-2',7'-diamine | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Tetrakis-Triphenylamine | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Th-PDI | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Th101 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Ti3C2", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | TiS2-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Titanylphthalocyanine | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Triazine | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Triazine-Flu | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Triazine-Ph-OMeTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Triazine-Th-OMeTPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Trux1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Trux2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V1207 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V1209 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V1221 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V1225 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V2O5 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V852 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V859 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V862 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V886 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | V950 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | WT3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | WT3 | MoOx | Al", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | WY-1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | WY-2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | WY-3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X14 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X18 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X19 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X21 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X22 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X23 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X25 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X26 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X36 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X50 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X51 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X51 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X54 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X55 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X59 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X60 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X60(TFSI)2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X61 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | X62 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | XY1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Y1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Y2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Y2A2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Y3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Y4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YC-1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YC-2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YC-3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YC01 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YC02 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YC03 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YC04 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YC06 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YK1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YK2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YKP03 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YKP06 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YN1 | Cu", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YN2 | Cu", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YN3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YR3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YT1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YT2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | YT3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z1011 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z1012 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z1013 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z2 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z25 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z26 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z28 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z29 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z30 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z33 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z34 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Z35 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZPPHT | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnBChl | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnChl | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnChl-1 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnChl-2 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnChl-3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnChl-4 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnNc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc(tBu)4 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc-DPP-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc-flu-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc-p-ZnPc 1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc-p-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPc-th-ZnPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPcNO2-OBFPh | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPcNO2-OPh | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPor | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | ZnPy | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | [BMMIm]Cl | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | [BMPA-BTD]3-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | [BMPA-EDOT]3-TPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | alfa-NPD | MoO3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | apv-EC | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | apv-T | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | asy-PBTBDT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | cyclopenta[2,1-b; 3,4-b\u2032]dithiophene | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | cyclopenta[2,1-b; 3,4-b\u2032]dithiophene | MoOx | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | cyclopenta[2,1-b; 3,4-b\u2032]dithiophene | MoOx | SLG | ITO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | cyclopenta[2,1-b; 3,4-b\u2032]dithiophene | SLG | ITO", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | iDM1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | iPrO-DATPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | m-MTDATA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | mGO | P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | mm-SFX-2PA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | mm-SFX-3PA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | mp-SFX-2PA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | mp-SFX-3PA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | n-CuBuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | nPrO-DATPA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | poly(DTSTPD-r-BThTPD) | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | quart-p-phenylene1 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | rGO | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | rGO-flakes | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | rGO:CZTS0.75Se0.25 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | tert-CuBuPc | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite | tetra{4-[N,N-(4,4'-dimethoxydiphenylamino)]phenyl}ethene | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite-IO | Carbon-QDs | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Perovskite-IO | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | Pervskite | P3TAA-co-P3HT | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | PhCOOH | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Poly(TA) | Perovskite | Poly(TA) | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Poly(TA) | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Preovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SQ2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Sb2S3 | Perovskite | CuSCN | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SbI3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Si-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SiO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | SiO2-mp | Perovskite | CuPc | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | Sinapoyl malate | Perovskite | Co(II)P | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Sinapoyl malate | Perovskite | Co(II)P; Co(III)P | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Sinapoyl malate | Perovskite | Co(III)P | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Sinapoyl malate | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Sinapoyl malate | Perovskite | ZnP | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2 | Perovskite | V1160 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | BL25 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | BL38 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | BL40 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | BL50 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | BL51 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | BL52 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | CS02 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | CS04 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | CS05 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | HTM3 | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | V1000 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | V1004 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | V1012 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | V1013 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | V1021 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-c | Perovskite | V950 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | SnO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Spiro-MeOTAD | NaYF4-np | Au", + "SLG | FTO | TiO2-c | TiO2-mp | TiN | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Trimethylamine oxide | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | Y2O3-c | Perovskite | Spiro-MeOTAD | Ag | Au", + "SLG | FTO | TiO2-c | TiO2-mp | ZIF-8 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | ZIF-8 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | ZIF-8-10 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | ZIF-8-20 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | ZIF-8-40 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | ZnO-mp | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | ZnS | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-mp | ZnS | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Carbon | Perovskite", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Carbon-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Co3O4-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | NiO-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | PbTiO3 | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | AV-Carbon; MAI", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon | Ag", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon | Graphite", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon | Spiro-MeOTAD", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon-mp", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon-nt | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon; MAI", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon; TiO2-np", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Cu:NiO-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Graphite", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | NiO-c | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | NiO-np | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | PEDOT:PSS | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | TOPO | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | VOx | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Silane-SAM | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | ZrO2@TiO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-mp | beta-Alanine-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | beta-alanine | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp | n-dimethyloxamic acid | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-mp; YVO4:Eu:Bi-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-mp; ZrO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-nanoballs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nanoballs | SiO2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nanobeads | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nanocones | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nanofibers | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-nanofibers | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nanoflowers | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-nanoflowers | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nanosphere | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nanosphere | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-nanosphere | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-nanowalls | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nc | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-nc | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-np | PEO; KI; I2 | Pt | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-np | Perovskite | Au", + "SLG | FTO | TiO2-c | TiO2-np | Perovskite | Graphene oxide | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-np | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nt | Perovskite | Au", + "SLG | FTO | TiO2-c | TiO2-nt | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nt | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-nw | Al2O3 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-nw | CdS | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | Ethyl acetate; I2; LiI; TBP; Urea | Pt | FTO | SLG", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | HTM | Ag", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | Spiro-MeOTAD | AgAl", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | Spiro-MeOTAD | Pd", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | TPA1C | Au", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | TPA2C | Au", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | TPA3C | Au", + "SLG | FTO | TiO2-c | TiO2-nw | Perovskite | TPA4C | Au", + "SLG | FTO | TiO2-c | TiO2-nw | SiO2-nanocolumns | TiO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nw | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nw | TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2-nw | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2-nw | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | TiO2; Al2O3-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | TiO2; Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2; CoCr-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiO2; SiO2-IO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | TiOZn-nanosphere | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | WO3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | WOx | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZIF-8 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | ZIF-8 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZTO-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Zn2SnO4-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | Zn2Ti3O8-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnCdS | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnO-c | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnO-c | Perovskite | CZTS-np | Au", + "SLG | FTO | TiO2-c | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnO-c | Perovskite | Spiro-MeOTAD | H2PtCl6", + "SLG | FTO | TiO2-c | ZnO-c | Perovskite | Spiro-MeOTAD | Pt | SLG | FTO", + "SLG | FTO | TiO2-c | ZnO-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnO-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | ZnO-nw | AZO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnO-nw | Al2O3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnO-nw | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZnPtriazine(gly)2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | ZnSe | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | ZrO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-c | ZrO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-c | ZrO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | [BMIM]BF4 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | [EMIM]PF6-IL | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | bis-PCBM; DMC | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | TiO2-c | rGO:TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-c | rGO; TiO2-nanofibers | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-fibres | Perovskite | Au", + "SLG | FTO | TiO2-macroporous | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-mp | D35 | Perovskite | Pt | SLG | FTO", + "SLG | FTO | TiO2-mp | LPP | N719 | Perovskite | I2; KI; Propylene carbonate; Polyethylene glycol | Pt | FTO", + "SLG | FTO | TiO2-mp | MK2 | Perovskite | Pt | SLG | FTO", + "SLG | FTO | TiO2-mp | MgO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-mp | N719 | Perovskite | Dye | I2; KI; Propylene carbonate; Polyethylene glycol | Pt | FTO", + "SLG | FTO | TiO2-mp | N719 | Perovskite | Pt | SLG | FTO", + "SLG | FTO | TiO2-mp | Pbs-QDs | Perovskite | P3HT | Pt", + "SLG | FTO | TiO2-mp | Perovskite | Ag", + "SLG | FTO | TiO2-mp | Perovskite | Carbon | FTO | SLG", + "SLG | FTO | TiO2-mp | Perovskite | Carbon | PEDOT:PSS | FTO | SLG", + "SLG | FTO | TiO2-mp | Perovskite | CuSCN | Carbon | FTO", + "SLG | FTO | TiO2-mp | Perovskite | CuSCN | Carbon | FTO | SLG", + "SLG | FTO | TiO2-mp | Perovskite | Ethyl acetate; I2; LiI; TBP | Pt | FTO | SLG", + "SLG | FTO | TiO2-mp | Perovskite | Ethyl acetate; I2; LiI; TBP; Urea | Pt | FTO | SLG", + "SLG | FTO | TiO2-mp | Perovskite | HfO2 | Acetonitrile; I2; LiI; PMII; Propylene glycol; TBP | Graphite", + "SLG | FTO | TiO2-mp | Perovskite | HfO2 | Acetonitrile; I2; LiI; TBP | Graphite", + "SLG | FTO | TiO2-mp | Perovskite | HfO2 | CuI | Graphite", + "SLG | FTO | TiO2-mp | Perovskite | HfO2 | PTAA | Graphite", + "SLG | FTO | TiO2-mp | Perovskite | HfO2 | Spiro-MeOTAD | Graphite", + "SLG | FTO | TiO2-mp | Perovskite | I2-electrolyte | Pt | FTO", + "SLG | FTO | TiO2-mp | Perovskite | I2; KI; Propylene carbonate; Polyethylene glycol | Pt | FTO", + "SLG | FTO | TiO2-mp | Perovskite | NiO | Au", + "SLG | FTO | TiO2-mp | Perovskite | P3HT | Pt", + "SLG | FTO | TiO2-mp | Perovskite | PTAA | Au", + "SLG | FTO | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-mp | Perovskite | Spiro-MeOTAD | Metal", + "SLG | FTO | TiO2-mp | Perovskite | V841 | Au", + "SLG | FTO | TiO2-mp | Perovskite | V842 | Au", + "SLG | FTO | TiO2-mp | Perovskite | V873 | Au", + "SLG | FTO | TiO2-mp | SAM1 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-mp | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-mp | Z907 | Perovskite | Pt | SLG | FTO", + "SLG | FTO | TiO2-mp | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | TiO2-mp | ZrO2-mp | Perovskite | Carbon | Galinstan", + "SLG | FTO | TiO2-nanobundles | Perovskite | CF-BTz-ThR | Au", + "SLG | FTO | TiO2-nanofibers | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nanoleaves | MgO | Perovskite | Spiro-MeOTAD | Graphite", + "SLG | FTO | TiO2-nanoleaves | Perovskite | Spiro-MeOTAD | Graphite", + "SLG | FTO | TiO2-nanoplatelets | Perovskite | Au", + "SLG | FTO | TiO2-nanoplatelets | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nanosphere | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nanosphere | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nc | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-nc | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nc | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-np | CsBr | Perovskite | Carbon", + "SLG | FTO | TiO2-np | NiO-np | Perovskite | PCBM-60 | BCP | Au", + "SLG | FTO | TiO2-np | PCBM-60 | Perovskite | PDCBT | MoO3 | Ag", + "SLG | FTO | TiO2-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-np | Perovskite | Al2O3-np | TPA-ZnPc | Au", + "SLG | FTO | TiO2-np | Perovskite | Au", + "SLG | FTO | TiO2-np | Perovskite | NiO-np | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-np | Perovskite | P3HT | Au", + "SLG | FTO | TiO2-np | Perovskite | PDCBT | MoO3 | Ag", + "SLG | FTO | TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-np | Perovskite | Spiro-MeOTAD | Graphite", + "SLG | FTO | TiO2-np | Perovskite | TPA-ZnPc | Au", + "SLG | FTO | TiO2-nt | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nt | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | FTO | TiO2-nt | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nw | CuInS2-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nw | N719 | Perovskite | Au@CZTS-np | Au", + "SLG | FTO | TiO2-nw | N719 | Perovskite | CZTS-np | Au", + "SLG | FTO | TiO2-nw | N719 | Perovskite | Pt-np | Au", + "SLG | FTO | TiO2-nw | Perovskite | Carbon", + "SLG | FTO | TiO2-nw | Perovskite | CuI | Au", + "SLG | FTO | TiO2-nw | Perovskite | CuSCN | Carbon", + "SLG | FTO | TiO2-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nw | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | FTO | TiO2-nw | Sb2O3-np; SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiO2-nw | TiO2-c | Perovskite | Carbon", + "SLG | FTO | TiO2-nw | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2-nw | TiO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiO2; WOx | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | TiS2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | TiZnO12-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | VO | Perovskite | PCBM-60 | Al", + "SLG | FTO | VOx | PEI | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | VOx | Perovskite | PCBM-60 | BCP | Ag", + "SLG | FTO | WO3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | WO3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | WO3 | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | WO3-c | Cs2CO3 | PCBM-60 | Perovskite | P3HT | Au", + "SLG | FTO | WO3-c | Perovskite | P3HT | Au", + "SLG | FTO | WO3-c | WO3-nw | Cs2CO3 | PCBM-60 | Perovskite | P3HT | Au", + "SLG | FTO | WO3-c | WO3-nw | Perovskite | P3HT | Au", + "SLG | FTO | WOx | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | WOx | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | WOx | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | WOx | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | X1 | Perovskite | PCBM-60 | Ag", + "SLG | FTO | X1 | Perovskite | PCBM-60 | C3-CBL | Ag", + "SLG | FTO | YVO4:Eu | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZTO | TiO2-mp | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | Zn2SnO4 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Zn2SnO4 | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Zn2SnO4 | Zn2SnO4-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Zn2SnO4-c | Zn2SnO4-fiber | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Zn2SnO4-c | Zn2SnO4-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Zn2SnO4-c | rGO; Zn2SnO4-fiber | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | Zn:SnO2 | Perovskite | CuPc | Carbon", + "SLG | FTO | ZnO | Au-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO | MgO | EA | TiO2-mp | Perovskite | Spiro-MeOTAD | CuI | Au", + "SLG | FTO | ZnO | PEIE | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO | Perovskite | Spiro-MeOTAD | Mo2O3 | Ag", + "SLG | FTO | ZnO-c | AZO-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | ZnO-c | AZO-mp | Perovskite | Au", + "SLG | FTO | ZnO-c | AZO-mp | Perovskite | Carbon", + "SLG | FTO | ZnO-c | AZO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | Al2O3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | Al2O3-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | CdS | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | CdSO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | EMIM-PF6 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | Ethyl acetate | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | FTO | ZnO-c | MgO | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | MgO | TiO2-mp | Perovskite | TPB(2-MeOTAD) | Au", + "SLG | FTO | ZnO-c | MgO | TiO2-mp | Perovskite | TPB(2-TPTZ) | Au", + "SLG | FTO | ZnO-c | Nb2O5 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | PCBM-60 | Perovskite | P3HT | Au", + "SLG | FTO | ZnO-c | PCBM-60 | Perovskite | PTAA | Au", + "SLG | FTO | ZnO-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | PEI | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | Perovskite | Au", + "SLG | FTO | ZnO-c | Perovskite | Carbon", + "SLG | FTO | ZnO-c | Perovskite | Co-Porphyrin | Au", + "SLG | FTO | ZnO-c | Perovskite | CuI | Au", + "SLG | FTO | ZnO-c | Perovskite | FDT | Ag", + "SLG | FTO | ZnO-c | Perovskite | Graphene oxide | Ag", + "SLG | FTO | ZnO-c | Perovskite | P3HT | Ag", + "SLG | FTO | ZnO-c | Perovskite | P3HT | Au", + "SLG | FTO | ZnO-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | ZnO-c | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | FTO | ZnO-c | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | FTO | ZnO-c | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | FTO | ZnO-c | TiO2-mp | Perovskite | 18-crown-6 ether | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-c | Perovskite | CuI | Carbon", + "SLG | FTO | ZnO-c | ZnO-mp | PEI | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-mp | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | ZnO-c | ZnO-nanodisks | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-nanofibers | PEI | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | ZnO-nanofibers | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | ZnO-nanowells | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-nw | Al2O3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-nw | Au-np | Perovskite | Graphene", + "SLG | FTO | ZnO-c | ZnO-nw | Au-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-nw | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-nw | Perovskite | Au", + "SLG | FTO | ZnO-c | ZnO-nw | Perovskite | Graphene", + "SLG | FTO | ZnO-c | ZnO-nw | Perovskite | NiO | Au", + "SLG | FTO | ZnO-c | ZnO-nw | Perovskite | P3HT | Ag", + "SLG | FTO | ZnO-c | ZnO-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-nw | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | FTO | ZnO-c | ZnO-nw | SnO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | ZnO-nw | TiO2-c | Perovskite | Au", + "SLG | FTO | ZnO-c | ZnO-nw | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-c | ZnO-nw | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnO-nw | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | FTO | ZnO-c | ZnO-nw | TiO2-c | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | ZnO-c | ZnO-nw | TiO2-np | Perovskite | P3HT | Ag", + "SLG | FTO | ZnO-c | ZnO-nw | ZrO2-mp | Perovskite | Carbon", + "SLG | FTO | ZnO-c | ZnOS | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-c | ZnOS | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-mp | Perovskite | Spiro-MeOTAD | Carbon", + "SLG | FTO | ZnO-mp | Perovskite | Ta2O5 | Spiro-MeOTAD | Carbon", + "SLG | FTO | ZnO-np | EA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | Graphene | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | Mg-EA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | MgO | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | MgO | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | MgO-EA | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | MgO-EA | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | Perovskite | Ag", + "SLG | FTO | ZnO-np | Perovskite | Au", + "SLG | FTO | ZnO-np | Perovskite | Carbon", + "SLG | FTO | ZnO-np | Perovskite | P3HT | Ag", + "SLG | FTO | ZnO-np | Perovskite | P3HT | Au", + "SLG | FTO | ZnO-np | Perovskite | P3TAA | Ag", + "SLG | FTO | ZnO-np | Perovskite | P3TAA-co-P3HT | Ag", + "SLG | FTO | ZnO-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | ZnO-np | Perovskite | YT3 | MoO3 | Ag", + "SLG | FTO | ZnO-np | Sinapoyl malate | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-np | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-nw | Perovskite | Graphite | FTO", + "SLG | FTO | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO-nw | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnO@SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | FTO | ZnO@rQD-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnOS | Perovskite | Carbon | Au", + "SLG | FTO | ZnSO | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnSO4-c | ZnSO4-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnSe | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZnSnO4-c | ZnSnO4-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | ZrO2-c | TiO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | FTO | ZrO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | [EMIM]PF6-IL | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | [EMIM]PF6-IL | Perovskite | Spiro-MeOTAD | Au", + "SLG | FTO | c-OTPD | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | Graphene | Graphene-QDs | Perovskite | PCBM-60 | Al", + "SLG | Graphene | MoO3 | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "SLG | Graphene | PCBM-60 | Perovskite | PTAA | Au", + "SLG | Graphene | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | Graphene | Perovskite | PCBM-60 | Ag", + "SLG | Graphene | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | Graphene; TFSA | Graphene-QDs | Perovskite | PCBM-60 | Al", + "SLG | ITO | (RuCp*mes)2 | C60 | Perovskite | TaTm | F6-TCNNQ; TaTm | Au", + "SLG | ITO | 1F-SAM | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | 2,7-PCzTPA | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | 2-F-br-4C | Perovskite | C60 | BCP | Ag", + "SLG | ITO | 2D-Sb | Perovskite | PCBM-60 | Al", + "SLG | ITO | 2EGO-PPV | PFN-P2 | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | 2EGO-PPV | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | 2F-SAM | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | 2PACz | MeO-2PACz | Perovskite | C60 | BCP | Cu", + "SLG | ITO | 2PACz | Perovskite | C60 | BCP | Cu", + "SLG | ITO | 3,6-2,7-PCzTPA | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | 3,6-PCzTPA | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | 3-F-br-4C | Perovskite | C60 | BCP | Ag", + "SLG | ITO | 3C | Perovskite | C60 | BCP | Ag", + "SLG | ITO | 3EGO-PPV | PFN-P2 | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | 3EGO-PPV | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | 3F-SAM | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | 4-F-br-4C | Perovskite | C60 | BCP | Ag", + "SLG | ITO | 4C | Perovskite | C60 | BCP | Ag", + "SLG | ITO | 5,6,11,12-Tetraphenylnaphthacene | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | A-PDTON | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | ATO | TiO2-c | TiO2-mp | Perovskite | PTAA | Au", + "SLG | ITO | ATO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | AZO-c | Perovskite | Ag", + "SLG | ITO | AZO-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | AZO-c | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | AZO-np | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | ITO | AZO-np | Perovskite | P3HT | Au", + "SLG | ITO | AZO-np | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | ITO | Ag-Nws | Spiro-MeOTAD | Perovskite | ZnO-np | ITO | SLG", + "SLG | ITO | Ag-grid | AZO | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Ag-grid | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Ag-np; NiO-c | Perovskite | PCBM-60 | AgAl", + "SLG | ITO | Ag-np; NiO-c | Perovskite | Poly(9-vinylcarbazole) | PCBM-60 | AgAl", + "SLG | ITO | Ag-np; PEDOT:PSS | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | Ag-nw; PEDOT:PSS | Perovskite | PCBM-60; CTAB | Ag", + "SLG | ITO | AgI-QDs | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Al-np; PEDOT:PSS | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | Aniline; rGO | CsCO3 | Perovskite | PffBT4T-2OD | Ag", + "SLG | ITO | Au-np | NiO-c | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | Au-np; Graphene oxide | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Au-np; PEDOT:PSS | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | Au-np; TiO2-np | C-PCBOD | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Au-np; TiO2-np | C-PCBSD | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Au-np; TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Au@TiO2-np; TiO2-np | Perovskte | Spiro-MeOTAD | Au", + "SLG | ITO | Au@TiO2-nw; TiO2-np | Perovskte | Spiro-MeOTAD | Au", + "SLG | ITO | B-\u03b3-CsSnI3 | Cs2SnI6 | Au", + "SLG | ITO | BCP | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | BDT-POZ | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | BDT-PTZ | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | BPADF | PEDOT:PSS | Perovskite | C60 | Ag", + "SLG | ITO | BTF1 | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | BTF2 | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | BTF3 | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | BTF4 | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | BTPA | Perovskite | PCBM-60 | Ag", + "SLG | ITO | BV-FNPD | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Bphen | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | C-PDTON | ZnO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | C60 | C60 | Perovskite | TaTm | F6-TCNNQ; TaTm | Au", + "SLG | ITO | C60 | C60-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | C60 | Perovskite | BTF2 | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | Carbon", + "SLG | ITO | C60 | Perovskite | F22 | Au", + "SLG | ITO | C60 | Perovskite | F23 | Au", + "SLG | ITO | C60 | Perovskite | FBA1 | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | FBA2 | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | FBA3 | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | FTA1 | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | FTA2 | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | H1 | Au", + "SLG | ITO | C60 | Perovskite | H2 | Au", + "SLG | ITO | C60 | Perovskite | IDF-DiDPA | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | IDF-SFXPh | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | IDF-TeDPA | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | PH3T | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | SWCNTs", + "SLG | ITO | C60 | Perovskite | SWCNTs | P3HT", + "SLG | ITO | C60 | Perovskite | SWCNTs | PTAA", + "SLG | ITO | C60 | Perovskite | SWCNTs | Spiro-MeOTAD", + "SLG | ITO | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | C60 | Perovskite | Spiro-MeOTAD | Cu", + "SLG | ITO | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Au | MoO3", + "SLG | ITO | C60 | Perovskite | TAPC | MoO3; TAPC | MoO3 | Ag", + "SLG | ITO | C60 | Perovskite | TaTm | F6-TCNNQ; TaTm | Au", + "SLG | ITO | C60 | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | C60(OH)16 | C60 | Perovskite | PH3T | MoO3 | Ag", + "SLG | ITO | C60-SAM | Perovskite | PDCBT | Au", + "SLG | ITO | C60-SAM | Perovskite | PDCBT | MoOx | Au", + "SLG | ITO | C60-SAM | Perovskite | PDCBT | WOx | Au", + "SLG | ITO | C60-SAM | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | C60-SAM | SnO2-c | PCBM-60 | Perovskite | P3HT | WOx | Au", + "SLG | ITO | C60-SAM | SnO2-c | PCBM-60 | Perovskite | PDBT-T1 | WOx | Au", + "SLG | ITO | C60-SAM | SnO2-c | PCBM-60 | Perovskite | PDCBT | WOx | Au", + "SLG | ITO | C60-SAM | SnO2-c | PCBM-60 | Perovskite | PTB7 | WOx | Au", + "SLG | ITO | C60-SAM | SnO2-c | PCBM-60 | Perovskite | PffBT4T-2OD | WOx | Au", + "SLG | ITO | C60-SAM | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | MoOx | Au", + "SLG | ITO | C60-SAM | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | WOx | Au", + "SLG | ITO | C60-SAM | SnO2-c | PCBM-60 | Perovskite | pDPP5T-2 | WOx | Au", + "SLG | ITO | C60-lactone | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | C60:Phlm | C60 | Perovskite | TaTm | TaTm:F6-TCNNQ | Au", + "SLG | ITO | C60; C70 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | C60; PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | C60; PhIm | C60 | Perovskite | F6-TCNNQ; TaTm | Ag", + "SLG | ITO | C60; PhIm | C60 | Perovskite | TaTm | F6-TCNNQ; TaTm | Ag", + "SLG | ITO | C60; PhIm | Perovskite | TaTm | F6-TCNNQ; TaTm | Ag", + "SLG | ITO | C60; Phlm | C60 | Perovskite | F6-TCNNQ; TaTm | Ag", + "SLG | ITO | C60; Phlm | C60 | Perovskite | TaTm | F6-TCNNQ; TaTm | Ag", + "SLG | ITO | C60; Phlm | C60 | Perovskite | TaTm | F6-TCNNQ; TaTm | Au", + "SLG | ITO | C60; Phlm | Perovskite | TaTm | F6-TCNNQ; TaTm | Ag", + "SLG | ITO | C70 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | C8-BTBT | Perovskite | PCBM-60 | BCP I Ag", + "SLG | ITO | CA-Br | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | CA-Br; TPA-PT-C6 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | CA-Br; TPA-PT-C6 | Perovskite | Polyimid | PCBM-60 | BCP | Ag", + "SLG | ITO | CONs | PEDOT:PSS | Perovskite | PCBM-60 | TiO2 | Al", + "SLG | ITO | CPE-K | Perovskite | PCBM-60 | Al", + "SLG | ITO | CPE-Na | Perovskite | PCBM-60 | Al", + "SLG | ITO | CPEPh-Na | Perovskite | PCBM-60 | Al", + "SLG | ITO | CPTA | BACl | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | CPTA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | CZTS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Ca | C60 | Perovskite | TAPC | MoO3; TAPC | Ag", + "SLG | ITO | Ca | C60 | Perovskite | TAPC | MoO3; TAPC | MoO3 | Ag", + "SLG | ITO | Ca | C60 | Perovskite | TPTPA | MoO3 | Ag", + "SLG | ITO | Ca | C60 | Perovskite | TPTPA | TPTPA; MoO3 | MoO3 | Ag", + "SLG | ITO | Ca | Perovskite | TAPC | MoO3; TAPC | MoO3 | Ag", + "SLG | ITO | Carbon-QDs; SnO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | Carbon-QDs; TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Carbon-np; PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Carbon-np; SnO2-np | Perovskite | CTAB | Spiro-MeOTAD | Au", + "SLG | ITO | Carbon-np; SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Carbon-nt | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | ITO | Carbon-nt | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Carbon-nt; Graphene oxide | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CdS | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | CdS | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | CdS | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | CdS-nw | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | CdSe-Qds | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | CoOx | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Cobalt\u2013porphyrin | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | CrO3 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | Cs2CO3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Cu0.67Cr0.33O2 | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Cu2O | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Cu2O | Perovskite | C60 | BCP | Ag", + "SLG | ITO | Cu2O | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Cu2O | Perovskite | PCBM-60 | Al", + "SLG | ITO | Cu2O | Perovskite | PCBM-60 | Au", + "SLG | ITO | Cu2O | Perovskite | PCBM-60 | Ca | Al", + "SLG | ITO | Cu:Ni-acetate | Perovskite | PCBM-60 | Al", + "SLG | ITO | Cu:NiO | Perovskite | PC(70)BM | AZO | Al", + "SLG | ITO | CuAlO2 | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CuAlO2 | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CuAlO2; CuO | Perovskite | PCBM-70 | AZO-np | Al", + "SLG | ITO | CuCo2O4 | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | ITO | CuCrO2 | C60; PCBM-60 | Perovskite | Zr(acac)4 | Ag", + "SLG | ITO | CuCrO2 | Perovskite | C60 | BCP | Ag", + "SLG | ITO | CuCrO2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | CuCrO2-np | Perovskite | C60 | BCP | Ag", + "SLG | ITO | CuGaO2-np | Perovskite | PCBM-70 | Al", + "SLG | ITO | CuI | Cu@CuI-nw | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CuI | Cu@CuI-nw | Perovskite | PCBM-60; ZnO-np | Ag", + "SLG | ITO | CuI | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | CuI | PbPc | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | CuI | Perovskite | C60 | BCP | Ag", + "SLG | ITO | CuI | Perovskite | ICBA | BCP | Ag", + "SLG | ITO | CuI | Perovskite | PCBM-60 | AZO-np | Ag", + "SLG | ITO | CuI | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CuI | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | CuI | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | CuI | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | ITO | CuI | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | CuI-np | Perovskite | C60 | BCP | Ag", + "SLG | ITO | CuI; CuSCN | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | CuInS2 | Al2O3-mp | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CuInS2 | Al2O3-mp | Perovsktie | PCBM-60 | Ag", + "SLG | ITO | CuInS2 | Al2O3-np | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CuInS2 | Al2O3-np | Perovskite | PCBM-60 | TIPD; ZnO-np | Ag", + "SLG | ITO | CuInS2 | Al2O3-np | Perovskite | TIPD; ZnO-np | Ag", + "SLG | ITO | CuO | Perovskite | PC(70)BM | AZO | Al", + "SLG | ITO | CuO | Perovskite | PCBM-60 | Ca | Al", + "SLG | ITO | CuO | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | CuO | Perovskite | PCBM-70 | AZO | Al", + "SLG | ITO | CuO-nw | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | CuOx | Perovskite | C60 | BCP | Ag", + "SLG | ITO | CuOx | Perovskite | C60 | BCP | Al", + "SLG | ITO | CuOx | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CuOx | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | CuPc | PEI | Perovskite | C60 | BCP | Ag", + "SLG | ITO | CuPc | PEI | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | CuPc | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | CuS-np | Perovskite | C60 | BCP | Ag", + "SLG | ITO | CuSCN | Perovskite | C60 | BCP | Ag", + "SLG | ITO | CuSCN | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | AZO-np | Ag", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | AZO-np | Ag-nw", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | Ag", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | Al", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | PDINO | Al", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | CuSCN | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | ITO | CuSCN-2D | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | CuSCN-3D | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | CuSCN-nw | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | CzPAF-TPA | Perovskite | PCBM-60 | ZnO | Ag", + "SLG | ITO | CzPAF-TPA | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | ITO | DA-PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | DBFMT | Perovskite | C60 | BCP | Ag", + "SLG | ITO | DBTMT | Perovskite | C60 | BCP | Ag", + "SLG | ITO | DFH | Perovskite | C60 | BCP | Ag", + "SLG | ITO | DFTAB | Perovskite | PCBM-60 | Ag", + "SLG | ITO | DH-MeO-FDPA | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | DMZ | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | DNA-CTMA | Perovskite | PCBM-60 | Al", + "SLG | ITO | DPA-ANR-DPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | DPC60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | EDTA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | EGO-PPV | PFN-P2 | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | EGO-PPV | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | F6-TCNNQ | TaTm | Perovskite | C60 | BCP | Ag", + "SLG | ITO | F6-TCNNQ | TaTm | Perovskite | C60 | C60; Phlm | Ag", + "SLG | ITO | F6-TCNNQ; TaTm | Perovskite | C60 | C60; PhIm | Ag", + "SLG | ITO | F6-TCNNQ; TaTm | Perovskite | C60 | C60; Phlm | Ag", + "SLG | ITO | F6-TCNNQ; TaTm | TaTm | Perovskite | C60 | BCP | Ag", + "SLG | ITO | F6-TCNNQ; TaTm | TaTm | Perovskite | C60 | C60; PhIm | Ag", + "SLG | ITO | F6-TCNNQ; TaTm | TaTm | Perovskite | C60 | C60; Phlm | Ag", + "SLG | ITO | F6-TCNNQ; TaTm | TaTm | Perovskite | C60; PhIm | Ag", + "SLG | ITO | F6-TCNNQ; TaTm | TaTm | Perovskite | C60; Phlm | Ag", + "SLG | ITO | FB-OMeTPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | FDPI | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | FPDI | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | FPI-PEIE | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | FPI-PEIE | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | FT-OMeTPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | FrGO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Fullerene-SAM | Perovskite | CuSCN | Carbon", + "SLG | ITO | Fullerene-SAM | Perovskite | CuSCN | Ta:Wox-np | Carbon", + "SLG | ITO | Fullerene-SAM | Perovskite | P3HT | Carbon", + "SLG | ITO | Fullerene-SAM | Perovskite | P3HT | Ta:Wox-np | Carbon", + "SLG | ITO | GeO2 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | Grafted rGO; Polyacrylonitrile | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Graphene oxide | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | ITO | Graphene oxide | PEDOT:PSS | Perovskite | PCBM-60 | Carbon-tape", + "SLG | ITO | Graphene oxide | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | Graphene oxide | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | ITO | Graphene oxide | PFNBr | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | Graphene oxide | PTAA | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | Graphene oxide | PTFTS | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | Graphene oxide | Perovskite | C60 | BCP | Au", + "SLG | ITO | Graphene oxide | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | Graphene oxide | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Graphene oxide | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Graphene oxide | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | Graphene oxide | Perovskite | PCBM-60 | BCP | LiF | Al", + "SLG | ITO | Graphene oxide | Perovskite | PCBM-60 | Carbon-tape", + "SLG | ITO | Graphene oxide | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | Graphene oxide | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | Graphene oxide; MoOx-np | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Graphene oxide; PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Graphene oxide; PEDOT:PSS | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | Graphene oxide; ZnO-np | Perovskite | Au", + "SLG | ITO | Graphene | AuCl3 | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | Graphene | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | Graphene | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Graphne oxide | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | H1 | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | H2 | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | H3 | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | H4 | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | H5 | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | H6 | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | H7 | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | HTM-1 (bifluorenylidene-based) | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | HTM-2 (bifluorenylidene-based) | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | HTM-3 (bifluorenylidene-based) | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | IBF-Ep | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ICMA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | IDTT2FPDI | Perovskite | PTAA | Ag", + "SLG | ITO | ITO | NiO-c | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | ITO-nw | TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | In2O3 | Perovskite | PTAA | Au", + "SLG | ITO | In2O3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | In2O3-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | In2O3-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | In2O3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | In2O3-c | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | IrTiOx-c | Perovskite | C60 | BCP | Ag", + "SLG | ITO | JW6 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | JW7 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | JW8 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | L-F | Perovskite | C60 | BCP | Ag", + "SLG | ITO | L-H | Perovskite | C60 | BCP | Ag", + "SLG | ITO | LiF | PEDOT:PSS | Perovskite | C60 | BCP | Ag", + "SLG | ITO | LiQ; PEIE | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | Lignosulfonate; PEDOT:PSS; PDA | Perovskite | PCBM-60 | Al", + "SLG | ITO | M115 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | M116 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | M117 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | M118 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | MC-43 | Perovskite | PCBM-60 | Ag", + "SLG | ITO | MC6Cz-9-NPC | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | MC6Cz-TPA | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | MC8-9-NPC | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | MC8-TPA | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | MEH-PPV-20 | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MEH-PPV; PFN | Perovskite | PCBM-60 | Al", + "SLG | ITO | MFGO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | MPA-BTI | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MPA-BTTI | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MSAPBS | Perovskite | Spiro-MeOTAD | Au | Ag", + "SLG | ITO | MeO-2PACz | Perovskite | C60 | BCP | Cu", + "SLG | ITO | MeO-2PACz | Perovskite | C60 | SnO2-c | Cu", + "SLG | ITO | MeO-FDPA | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | MeO-PPV | PFN-P2 | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | MeO-PPV | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | MeO-TPD | PEDOT:PSS | Perovskite | C60 | Ag", + "SLG | ITO | MgO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | MgO-c | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | MgZnO | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | ITO | MoO3 | Au | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | MoO3 | CH3NH3PbI3 | C60 | TmPyPB | Ag", + "SLG | ITO | MoO3 | NPB | PbI2 | C60 | BCP | Al", + "SLG | ITO | MoO3 | NPB | Perovskite | C60 | BCP | Al", + "SLG | ITO | MoO3 | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "SLG | ITO | MoO3 | PEDOT:PSS | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | MoO3 | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | MoO3 | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | MoO3 | PTAA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MoO3 | Perovskite | Alq3; C60 | LiF | Ag", + "SLG | ITO | MoO3 | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MoO3 | Perovskite | C60 | BCP | Al", + "SLG | ITO | MoO3 | Perovskite | C60 | Ca | Al", + "SLG | ITO | MoO3 | Perovskite | PCBM-60 | Al", + "SLG | ITO | MoO3 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | MoO3 | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | MoO3 | TBDI | Perovskite | IPH | PDINO | Ag", + "SLG | ITO | MoO3 | TPA-2,7-FLTPA-TPA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MoO3 | TPA-3,6-FLTPA-TPA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MoO3 | TPBi | TaTm | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MoO3 | TPTPA | Perovskite | 3TPYMB | C60 | TmPyPB | Ag", + "SLG | ITO | MoO3 | TPTPA | Perovskite | B4PyMPM | C60 | TmPyPB | Ag", + "SLG | ITO | MoO3 | TPTPA | Perovskite | C60 | TmPyPB | Ag", + "SLG | ITO | MoO3 | TPTPA | Perovskite | TmPyPB | C60 | TmPyPB | Ag", + "SLG | ITO | MoO3 | TaTm | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MoO3 | TaTm | Perovskite | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MoOx | F4-TCNQ | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | MoOx | PEDOT:PSS | Perovskite | PCBM-60 | TOPD | Ag", + "SLG | ITO | MoOx | Perovskite | C60 | BCP | Al", + "SLG | ITO | MoOx | Perovskite | PCBM-60 | Ag", + "SLG | ITO | MoOx | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | MoOx | TPTPA | Perovskite | C60 | Al", + "SLG | ITO | MoOx | TPTPA | Perovskite | C60 | BCP | Al", + "SLG | ITO | MoOx | TaTm | Perovskite | C60 | BCP | Ag", + "SLG | ITO | MoS2 | Perovskite | C60 | BCP | Al", + "SLG | ITO | MoS2 | Perovskite | PCBM-60 | Al", + "SLG | ITO | MoS2 | Perovskite | PCBM-60 | BCP | LiF | Al", + "SLG | ITO | MoS2 | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | MoS2; PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | MoS2; TiO2-np | Perovskite | Au", + "SLG | ITO | N,N\u2010di\u2010p\u2010methylthiophenylamine | Perovskite | PCBM-60 | Al", + "SLG | ITO | N1,N3,N5-tris(4-n-butylphenyl)-N1,N3,N5-triphenylbenzene-1,3,5-triamine | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | NBNDD | Perovskite | PCBM-60 | Al", + "SLG | ITO | NBP-BC | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NDI-P | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | NO-Graphene-QDs | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NP-BC | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NPB | Perovskite | C60 | BCP | Al", + "SLG | ITO | NPB | Perovskite | PCBM-60 | Al", + "SLG | ITO | NPB | Perovskite | PCBM-60 | PDI-Br | Ag", + "SLG | ITO | NPB; PTAA | Perovskite | PCBM-60 | Al", + "SLG | ITO | NTPA | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Nb2O5 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Ni | NiMgO | PVP | Perovskite | PCBM-60 | ZnMgO | Al", + "SLG | ITO | Ni | NiMgO | Perovskite | PCBM-60 | ZnMgO | Al", + "SLG | ITO | Ni | PEDOT:PSS | Perovskite | C60 | Al", + "SLG | ITO | Ni-acetate | Perovskite | PCBM-60 | Al", + "SLG | ITO | NiCo2O4 | Perovskite | C60; PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | NiCo2O4 | Perovskite | PCBM-60 | Al", + "SLG | ITO | NiCo2O4 | Perovskite | PS | C60 | BCP | Ag", + "SLG | ITO | NiCo2O4-np | Perovskite | PCBM-70 | Al", + "SLG | ITO | NiMgLiO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiMgO | PVP | Perovskite | PCBM-60 | ZnMgO | Al", + "SLG | ITO | NiMgO | Perovskite | PCBM-60 | ZnMgO | Al", + "SLG | ITO | NiO | BrBA | Perovskite | PCBM-60 | C60 | Ag", + "SLG | ITO | NiO | PS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | NiO | PS | Perovskite | PS | PCBM-60 | Ag", + "SLG | ITO | NiO | Perovskite | C60 | Zr(AcAc) | Ag", + "SLG | ITO | NiO | Perovskite | C60 | bis-C60 | Ag", + "SLG | ITO | NiO | Perovskite | C60; PCBM-60 | bis-C60 | Ag", + "SLG | ITO | NiO | Perovskite | Nb2O5 | Ag", + "SLG | ITO | NiO | Perovskite | PCBBz | BCP | Ag", + "SLG | ITO | NiO | Perovskite | PCBM-60 | Ag", + "SLG | ITO | NiO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO | Perovskite | PCBM-60 | CD | Ag", + "SLG | ITO | NiO | Perovskite | PCBM-60 | PEOz | Ag", + "SLG | ITO | NiO | Perovskite | PCBM-60 | PN6 | Ag", + "SLG | ITO | NiO | Perovskite | PCBM-60 | ZSO-np | Ag", + "SLG | ITO | NiO | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | ITO | NiO | Perovskite | PCBM-60:C60 | bis-C60 | Ag", + "SLG | ITO | NiO | Perovskite | PCBPy | BCP | Ag", + "SLG | ITO | NiO | Perovskite | PCBTh | BCP | Ag", + "SLG | ITO | NiO-c | 1ab | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | 1bb | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | Al2O3-mp | Perovskite | PCBM-60 | Rhodamine 101 | Ag | Au", + "SLG | ITO | NiO-c | Al2O3-mp | Perovskite | PCBM-60 | Rhodamine 101 | Au | Al", + "SLG | ITO | NiO-c | Au-np | Perovskite | PCBM-60 | Ag", + "SLG | ITO | NiO-c | BBA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | CuGaO2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | Cysteine | Perovskite | PCBM-60 | Bphen | Al", + "SLG | ITO | NiO-c | DEA | Perovskite | C60 | Ag", + "SLG | ITO | NiO-c | DEA | Perovskite | C60 | PN4N | Ag", + "SLG | ITO | NiO-c | DEA | Perovskite | PCBM-60 | PN4N | Ag", + "SLG | ITO | NiO-c | EPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | FAD | Perovskite | PCBM-70 | AgAl", + "SLG | ITO | NiO-c | MOF-808 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | Mercaptoethylamine chlorate | Perovskite | PCBM-60 | Bphen | Al", + "SLG | ITO | NiO-c | Mg(AcO)2 | Perovskite | C60 | BCP | Cu", + "SLG | ITO | NiO-c | N749 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | NBP-BC | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | NP-BC | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | NiO-c | Perovskite | PCBM-60 | Al", + "SLG | ITO | NiO-c | NiO-mp | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | NiO-c | NiO-mp | Perovskite | PCBM-70 | BCP | Al", + "SLG | ITO | NiO-c | NiO-mp | Perovskite | ZnO-mp | ZnO-np | Ag", + "SLG | ITO | NiO-c | NiO-mp | Perovskite | ZnO-np | Ag", + "SLG | ITO | NiO-c | NiO-np | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | NiO-c | NiO-nw | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | PCDTBT | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | NiO-c | PEAI | Perovskite | PCBM-60 | AgAl", + "SLG | ITO | NiO-c | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | NiO-c | PEDOT:PSS | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | ITO | NiO-c | PFN-P2 | Perovskite | C60 | BCP | Ag", + "SLG | ITO | NiO-c | PNP-BC | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | PTAA | Perovskite | C60 | SnO2 | BCP | Cu", + "SLG | ITO | NiO-c | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | PTAA | Perovskite | PCBM-60 | Mg | Ag", + "SLG | ITO | NiO-c | Perovskite | 2,6-Py | PCBM-60 | PEI | Ag", + "SLG | ITO | NiO-c | Perovskite | ADAHCl | C60 | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | BCP; PCBM-60 | Ag", + "SLG | ITO | NiO-c | Perovskite | Bi2S3 | Au", + "SLG | ITO | NiO-c | Perovskite | C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | C60 | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | C60 | BCP | Al", + "SLG | ITO | NiO-c | Perovskite | C60 | BCP | Au", + "SLG | ITO | NiO-c | Perovskite | C60 | BCP | Cu", + "SLG | ITO | NiO-c | Perovskite | C60 | SnO2-c | ITO", + "SLG | ITO | NiO-c | Perovskite | C60 | SnO2-c | ITO | Ag", + "SLG | ITO | NiO-c | Perovskite | C60 | SnO2-c | ITO | Au", + "SLG | ITO | NiO-c | Perovskite | C60 | SnO2-c | ITO | Cu", + "SLG | ITO | NiO-c | Perovskite | C60 | SnO2-np | Ag", + "SLG | ITO | NiO-c | Perovskite | C60 | SnS | Ag", + "SLG | ITO | NiO-c | Perovskite | C60 | TmPyPB | Ag", + "SLG | ITO | NiO-c | Perovskite | C60 | ZnO-c | Al", + "SLG | ITO | NiO-c | Perovskite | C60 | ZnSe | Ag", + "SLG | ITO | NiO-c | Perovskite | C60 | bis-C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | CdZnSeS-QDs | C60 | BCP | Cu", + "SLG | ITO | NiO-c | Perovskite | CeOx | Ag", + "SLG | ITO | NiO-c | Perovskite | FAD | PCBM-70 | AgAl", + "SLG | ITO | NiO-c | Perovskite | FSIP | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | HATNA-F6 | Ag", + "SLG | ITO | NiO-c | Perovskite | HATNAS3C7 | Ag", + "SLG | ITO | NiO-c | Perovskite | HATNAS3C7-C3h | Ag", + "SLG | ITO | NiO-c | Perovskite | HATNAS3C7-Cs | Ag", + "SLG | ITO | NiO-c | Perovskite | HATNASO2C7-Cs | Ag", + "SLG | ITO | NiO-c | Perovskite | HATNASOC7-Cs | Ag", + "SLG | ITO | NiO-c | Perovskite | ICBA | Al", + "SLG | ITO | NiO-c | Perovskite | ICBA | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | ICBA; PCBM-60 | Al", + "SLG | ITO | NiO-c | Perovskite | ITIC | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | LiF | C60 | SnO2-c | ITO | Ag", + "SLG | ITO | NiO-c | Perovskite | LiF | C60 | SnO2-c | ZnSnO2-c | ITO | Ag", + "SLG | ITO | NiO-c | Perovskite | LiF | C60 | TmPyPB | Ag", + "SLG | ITO | NiO-c | Perovskite | N2200 | bis-C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | N2200; PFN-Ox | bis-C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | Nb2O5 | Ag", + "SLG | ITO | NiO-c | Perovskite | Nb2O5 | PCBM-60 | Bphen | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | AZO | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | AZO-np | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | AZO-np | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | AZO-np | ITO", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | AgAl", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | AgAl-np | Au-np | LiF | AgAl", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | AgAl-np | LiF | AgAl", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | BCP | AZO-c | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | BCP | TeO2 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | BCP | TiO2-c | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Bis-FIMG | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Bis-FITG | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Bphen | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Ca | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Ca(acac)2 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Cu", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | DPO | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | IZTO", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Mg | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | PEIE | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | PEIE | Cu", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Phen-NaDPO | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Phen-NaDPO; Sn(SCN)2 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | PrCMA | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Rhodamine 101 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Rhodamine 101 | Au | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Rodhamine 101 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | SnO2-c | ITO | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | SnO2-c | SnZnO | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | SnO2-c | SnZnO | ITO", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | TiO2 | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | TiO2-c | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | TiO2-c | Al | Au", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnMgO | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnO | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnO | ITO", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnO | IZTO", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnO-np | DPO | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnO-np | DPO | ITO", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | ZnO-np | ITO", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Zr(acac)4 | Al", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | Zr(acac)4 | Au", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60 | bis\u2010C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60-MCM | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60-PCP | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60; ICBA | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60; PDI-DA | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-60; PDI-DA | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-70 | Ag", + "SLG | ITO | NiO-c | Perovskite | PCBM-70 | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | PEAI | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | PEAI | PCBM-60 | BCP | SnO2-c | Ag", + "SLG | ITO | NiO-c | Perovskite | PEAI | PCBM-60 | BCP | SnO2-c | ITO | LiF", + "SLG | ITO | NiO-c | Perovskite | PEAI | PCBM-60 | BCP | TeO2 | Ag", + "SLG | ITO | NiO-c | Perovskite | PN | Ag", + "SLG | ITO | NiO-c | Perovskite | PN-F25 | Ag", + "SLG | ITO | NiO-c | Perovskite | PN-F50 | Ag", + "SLG | ITO | NiO-c | Perovskite | PTEG-1 | Ag", + "SLG | ITO | NiO-c | Perovskite | PbS | PCBM-60 | Al", + "SLG | ITO | NiO-c | Perovskite | SnO2-c | AZO | Au", + "SLG | ITO | NiO-c | Perovskite | SnO2-c | AZO | Ni | Al | Ni", + "SLG | ITO | NiO-c | Perovskite | SnO2-c | Au", + "SLG | ITO | NiO-c | Perovskite | SnO2-np | Ag", + "SLG | ITO | NiO-c | Perovskite | ZnO | PTFE | Ag", + "SLG | ITO | NiO-c | Perovskite | ZnO-c | Ag", + "SLG | ITO | NiO-c | Perovskite | ZnO-np | Ag", + "SLG | ITO | NiO-c | Perovskite | ZnO-np | Al", + "SLG | ITO | NiO-c | Perovskite | ZnO-np | Au", + "SLG | ITO | NiO-c | Perovskite | ZnO-np | BCP | Ag", + "SLG | ITO | NiO-c | Perovskite | ZnO-np | C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | bis-C60 | Ag", + "SLG | ITO | NiO-c | Perovskite | c-HATNA | bis-C60 | Ag", + "SLG | ITO | NiO-c | PhNa-1T | Perovskite | PCBM-60 | Ag", + "SLG | ITO | NiO-c | SY1 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | SY2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | SY3 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | SY4 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | Sb2O3-QDs | Perovskite | Sn2O3-ns | PCBM-60 | Bphen | Ag", + "SLG | ITO | NiO-c | Sn2O3-QDs | Perovskite | PCBM-60 | C60 | Ag", + "SLG | ITO | NiO-c | UiO-66 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-c | YC-1 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-mp | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | ITO | NiO-np | 2,2\u2019-BiPy | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | NiO-np | 2,2\u2019-BiPy | Perovskite | PCBM-60 | Zr(acac)4 | Ag | CsF", + "SLG | ITO | NiO-np | Al2O3-mp | Perovskite | PCBM-60 | Rhodamine 101 | Ag", + "SLG | ITO | NiO-np | Br-BPA-SAM | Perovskite | PCBM-60 | Ag", + "SLG | ITO | NiO-np | Choline chloride | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | Choline chloride; Glycerol | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | Glycerol | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | KCl | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | NiO-np | M2 | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-np | M3 | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-np | ME1 | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-np | ME2 | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-np | ME3 | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-np | NaCl | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | NiO-np | PAS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | PMMA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | PSS | Perovskite | PSS | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | PSS | Perovskite | PSS | PCBM-60 | ZnO-np | ITO", + "SLG | ITO | NiO-np | PTAA | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-np | PTAA | Perovskite | PCBM-60 | ZnO-np | ZnO | ITO | MgF2", + "SLG | ITO | NiO-np | Perovskite | Ag", + "SLG | ITO | NiO-np | Perovskite | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | C60 | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | C60 | BCP | Cu", + "SLG | ITO | NiO-np | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | NiO-np | Perovskite | C60 | bis-C60 | Ag", + "SLG | ITO | NiO-np | Perovskite | C60 | bis-C60 | ITO | Ni | Al", + "SLG | ITO | NiO-np | Perovskite | C60; PCBM-60 | Ag", + "SLG | ITO | NiO-np | Perovskite | C60; PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | C60; PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | NiO-np | Perovskite | C60; PCBM-60 | Zr(acac)4 | Cu", + "SLG | ITO | NiO-np | Perovskite | C60; PCBM-60 | bis-C60 | Ag", + "SLG | ITO | NiO-np | Perovskite | COi8DFIC | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | CeOx | Ag", + "SLG | ITO | NiO-np | Perovskite | Choline chloride | C60 | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | EVA | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | ICBA | PrC60MAI | Ag", + "SLG | ITO | NiO-np | Perovskite | IT-4f | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | ITIC | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | NDI-BiSe | Ag", + "SLG | ITO | NiO-np | Perovskite | NDI-Se | Ag", + "SLG | ITO | NiO-np | Perovskite | NDI-TriSe | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Ag | Ta2O5", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Ag-nw", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Ag-nw | C60", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Ag-nw | PCBM-60", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Al", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Au", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | BCP | Ag | SiO2 | ZnS | Ag | ZnS", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | F-R-COOK | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | PDINO | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Ppz | Al", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | PrC60MAI | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | PrCMA | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Rhodamine 101 | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | TiO2-c | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-c | Al", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | ITO | MgF2", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | PEI | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | PEI | D-Sorbito; PEDOT:PSSl | Ag-nw | PET", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | ZnO-c | Al", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | ZnO-c | ITO | Al", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | ZnO-c | ITO | MgF2", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Zr(acac)4 | Ag | CsF", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Zr(acac)4 | Au", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Zr(acac)4 | PEI | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-60 | Zr(acac)4 | PEI | Ag | Ta2O5", + "SLG | ITO | NiO-np | Perovskite | PCBM-70 | Ag", + "SLG | ITO | NiO-np | Perovskite | PCBM-70 | Rhodamine 101 | Ag", + "SLG | ITO | NiO-np | Perovskite | PEAI | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | Perovskite | TiO2-np | Ag", + "SLG | ITO | NiO-np | Perovskite | TiO2-np | C60; PCBM-60 | Ag", + "SLG | ITO | NiO-np | Perovskite | ZnO | C60 | Ag", + "SLG | ITO | NiO-np | Spiro-MeOTAD | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | NiO-np | TPI | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | TPI-2MEO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | TPI-4MEO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiO-np | TPI-6MEO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiPc | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | NiPcS4 | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | NiPcS4 | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | OCNR; PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | P3CT | Perovskite | C60 | Al", + "SLG | ITO | P3CT | Perovskite | CPTA-E | Al", + "SLG | ITO | P3CT | Perovskite | PCBM-60 | Ag", + "SLG | ITO | P3CT | Perovskite | PCBM-60 | Al", + "SLG | ITO | P3CT | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | P3CT | Perovskite | PFPDI | Ag", + "SLG | ITO | P3CT-CH3NH2 | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | P3CT-K | CuZnS | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | P3CT-K | Perovskite | PCBM-60 | C60 | Al", + "SLG | ITO | P3CT-K | Perovskite | PCBM-60 | SnO2-c | Al", + "SLG | ITO | P3CT-K | Perovskite | PCBM-60 | ZnO | Ag", + "SLG | ITO | P3CT-K | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | P3CT-K | Perovskite | PCBM-60 | ZnO-c | Al", + "SLG | ITO | P3CT-K | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | P3CT-N | Perovskite | C60 | BCP | Ag", + "SLG | ITO | P3CT-N | Perovskite | IT-4F | s-Bphen | Ag", + "SLG | ITO | P3CT-N | Perovskite | IT-4H | s-Bphen | Ag", + "SLG | ITO | P3CT-N | Perovskite | IT-4M | s-Bphen | Ag", + "SLG | ITO | P3CT-N | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | P3CT-N | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | P3CT-N | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | P3CT-N | Perovskite | PCBM-60 | C60 | BCP | Cu", + "SLG | ITO | P3CT-N | Perovskite | PCBM-60 | C60 | TPBi | Cu", + "SLG | ITO | P3CT-N | Perovskite | TMTA | PCBM-60 | C60 | TPBi | Cu", + "SLG | ITO | P3CT-Na | PASP | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | B2F | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | C60; PDI | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | IDT6CN | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | IDT6CN | Rhodamine 101 | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | IDT6CN-4F | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | IDT6CN-4F | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | IDT6CN-TM | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | IDT6CN-TM | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | IDTCN | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | IDTCN | Rhodamine 101 | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCP-M | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCPTC | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCPTC | Rhodamine 101 | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCPTC-Se | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCPTC-Se | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCPTC-Se | Rhodamine 101 | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCPTC-Th | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCPTC-Th | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | ITCPTC-Th | Rhodamine 101 | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | NDP-V | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | NDP-V | Rhodamine 101 | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | PCBM-60 | Ag", + "SLG | ITO | P3CT-Na | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | PCBM-60 | C60 | Al", + "SLG | ITO | P3CT-Na | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | PCBM-60 | HDAC | Ag", + "SLG | ITO | P3CT-Na | Perovskite | PCBM-60 | Rhodamine 101 | LiF | Ag", + "SLG | ITO | P3CT-Na | Perovskite | PDI | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | PDI-T | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | PDI-V | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | TPE-DPP12 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | TPE-DPP16 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | TPE-DPP4 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | TPE-DPP6 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | TPE-DPP8 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | TPE-ISO4 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | TPE-PDI4 | C60 | BCP | Ag", + "SLG | ITO | P3CT-Na | Perovskite | TPE-PDI4 | Rhodamine 101 | LiF | Ag", + "SLG | ITO | P3Ct | Perovskite | PCBM-60 | C60 | BCP | Au", + "SLG | ITO | P3HT | Al2O3-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | P3HT | Perovskite | C60 | BCP | CU", + "SLG | ITO | P3HT | Perovskite | C60 | BCP | Cu", + "SLG | ITO | P3HT | Perovskite | PCBM-60 | Ag", + "SLG | ITO | P3HT | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | P3HT | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | P3HT; PFN | Perovskite | PCBM-60 | Al", + "SLG | ITO | P3OT | Perovskite | C60 | BCP | CU", + "SLG | ITO | P8TTT | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PAF-68 | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PANI | Perovskite | C60 | BCP | Al", + "SLG | ITO | PANI-PAMPSA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PANI-PAMSA | Perovskite | C60 | BCP | Al", + "SLG | ITO | PANI:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PANI:PSS | Perovskite | PCBM-60 | Au", + "SLG | ITO | PASQ-IDT | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PB2T-O | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | PB2T-S | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | PB2T-SO | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | PBT | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PCBDAN | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PCBM-60 | BCP | Perovskite | PEDOT:PSS | Ag", + "SLG | ITO | PCBM-60 | BCP | Perovskite | PEDOT:PSS | Al | Ag", + "SLG | ITO | PCBM-60 | EGME | Perovskite | PTAA | Au", + "SLG | ITO | PCBM-60 | ICL | Perovskite | PTAA | Au", + "SLG | ITO | PCBM-60 | Perovskite | P3HT | Au", + "SLG | ITO | PCBM-60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | PCBM-60 | Perovskite | PEDOT:PSS | Ag", + "SLG | ITO | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag | MoO3", + "SLG | ITO | PCBM-60; PCBDAN | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PCBM-60; PDI-DA | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | PCBM-60; PEI | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | PCBM-60; PEI | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "SLG | ITO | PCBM-70 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | PCBM-70 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | PCBZANT | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | PCDTBT | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PCDTBT; PFN | Perovskite | PCBM-60 | Al", + "SLG | ITO | PCP-Na | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PCT | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PDTON35 | SnO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | PEDOS:PSS | Perovskite | C60; C70 | Ag", + "SLG | ITO | PEDOS:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOS:PSS | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | PEDOS:PSS | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | PEDOT | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PEDOT | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | PEDOT:GSL | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | PEDOT:LS | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | PEDOT:MNSF | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:P(SS-co-TFPMA) | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | 4-bromobenzenediazonium tetrafluoroborate | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | 5,6,11,12-Tetraphenylnaphthacene | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Ag@SnO2-nw | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | Al2O3-mp | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Al2O3-np | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Au-nanobipyramide; VOxs | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Au-np; VOx | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Au-nw; VOx | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Au@SiO2-np | Perovskite | PCBM-60 | Rhodamine 101 | Ag", + "SLG | ITO | PEDOT:PSS | Au@poly(4-styrenesulfonate) | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | PEDOT:PSS | AuAg@SiO2-np | Perovskite | TPCBM | PFN | Ag", + "SLG | ITO | PEDOT:PSS | Black phosphorous QDs | Perovskite | PCBM-60 | ZrAcac | Ag", + "SLG | ITO | PEDOT:PSS | Carbon-nt | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | CrO3 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | CuI | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | PEDOT:PSS | DPP-DTT | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Dex-CB-MA | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | Etylene glycol | Perovskite | Liq | Al", + "SLG | ITO | PEDOT:PSS | FASnI3 | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | GeO2 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Graphene oxide | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Graphene oxide | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Graphene oxide; PEG | Perovskite | PCBM-60 | MoS2 | Ag", + "SLG | ITO | PEDOT:PSS | MoO3 | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | MoO3 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | MoS2 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Na3C6H5O7 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | NaI | Perovskite | PCBM-60 | AZO | BCP | Ag", + "SLG | ITO | PEDOT:PSS | NiO-c | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | NiO-c | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | NiPcS4 | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | P3HT | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | PBDB\u2010T; ITIC | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | PCDTBT | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | PCDTBT | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | PCPDTBT | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | PCP\u2010Na | Perovskite | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | PEDOT:GSL | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | C60 | LiF | Al", + "SLG | ITO | PEDOT:PSS | PEG | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | PEI | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | PEI | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | PEI-HI | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | PFI | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | PFN | Perovskite | PCBM-60 | Zr(acac)4 | Al", + "SLG | ITO | PEDOT:PSS | PFN-P1 | Perovskite | PCBM-60 | PFN-P2 | Ag", + "SLG | ITO | PEDOT:PSS | PSS-Na | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | PSS-Na | Perovskite | PCBM-60 | Ag-nw", + "SLG | ITO | PEDOT:PSS | PSS-Na | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | PSS-Na | Perovskite | PCBM-60 | PEI | Ag-nw", + "SLG | ITO | PEDOT:PSS | PSS-Na | Perovskite | PCBM-60 | PEI | Al", + "SLG | ITO | PEDOT:PSS | PSS-Na | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | PEDOT:PSS | PSS-Na | Perovskite | PCBM-60 | ZnO | PEI | Al", + "SLG | ITO | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | C60 | BCP | Cu", + "SLG | ITO | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | FPyBr | Al", + "SLG | ITO | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | Rhodamine 101 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | TiO2 | Al", + "SLG | ITO | PEDOT:PSS | PTB7 | Perovskite | PCBM-70 | C70 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | PTMA-BP | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | PTPADCF3FSONa | Perovskite | PCBM-60 | PN4N | Ag", + "SLG | ITO | PEDOT:PSS | PTPAFSONa | Perovskite | PCBM-60 | PN4N | Ag", + "SLG | ITO | PEDOT:PSS | PTPD | Perovskite | PCBM-60 | Bphen | Al", + "SLG | ITO | PEDOT:PSS | PbI2 | PDPP3T; PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | PbI2 | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovsite | Boron subphthalocyanine chloride | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovsite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskire | PCBM-60 | CIL | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | (2Z,2\u2032Z)-3,3\u2032- (5,5\u2032-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile) | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | (2Z,2\u2032Z)-3,3\u2032-(5,5\u2032-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile) | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | (DTYM-NDI-DTYA)2 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | B2F | C60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | B2T | C60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | BAFB | ZnO-np | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | BCP | C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | BCP; PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | BPB-M | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | BPTI | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | BPTI | PDI-C4 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Br-PDI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | Br-PDI | ZnO-np | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | BrTPA-PCBM | bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | B4PyMPM | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Ag | Alq3", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Ag | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Cu", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | Bphen | Ca | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | ITO", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | LiF | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | SnO2-c | ITO | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | SnO2-c | IZO", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | TmPyPB | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | ZnO-c | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | Zr(acac)4 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60 | bis\u2010C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60-N | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C60; PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60; PCBM-60 | bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C60; PCBM-60-DPM-OE | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C70 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C70 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | C70 | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | C70 | TmPyPB | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | CNTPA-PCBM | bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | CYTOP | PCBM-60 | PEIE | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Carbon | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | CdSe | LiF | Au | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | CdSe-QDs; PCBM-60 | Rhodamine 101 | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Corannulene-derivative | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | DBP | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | DNDIF3 | C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | DS1 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | DS2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | F-PDI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | F-PDI | ZnO-np | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | F1 | BCP | Mg | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | F16CuPc | Bphen | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | F2 | BCP | Mg | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | F3 | BCP | Mg | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | F4 | BCP | Mg | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | F8BT | C60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | FNCA | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | Fullerene-2a | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | Fullerene-2b | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | Fullerene-2c | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | GDY-Tz-CH2(CH2)16CH3; PCBM-60 | C60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Graphene | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | H-PDI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | H-PDI | ZnO-np | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | HAT-CN | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | IBF-Ep | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | IC60BA | bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ICBA | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ICBA | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | ICBA | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | ICBA | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | ICBA | bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ICBA | bis\u2010C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ICTA | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | IPH | Ba | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ITIC | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ITIC | PCBM-60 | PEIE | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ITIC | PEI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ITIC | PEIE | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ITIC; PCBM-60 | PEI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | LiF | Au | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | LiSPS | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Liq | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | MPMIC60 | ZnO-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Mix-DMEC70 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | MoO3 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Mono-PCBOE | ZnO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | N2200 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | N2200 | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | N2200 | ZnO-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | NDI-BTH1 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | NDI-BTH2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | NDI-ID | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | NDI-ID(RR) | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | NDI-ID(RS) | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | NDI-PM | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | NDI-PhE | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | NDI3HU-DTYM2 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | NDIF1 | C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | NDIF2 | C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | OCA | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | P(NDI2DT-T2) | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | P(NDI2DT-TTCN) | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | P(NDI2OD-T2) | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | P(NDI2OD-T2) | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | P(NDI2OD-T2); PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | P(NDI2OD-TET) | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | P1 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | P2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | P3 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | P3HT | MoO3 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | P4 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PC(70)BM | AZO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | Ag | SnO2-c", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | Ag-nw", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | Al | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | ITO | MgF2", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | SnO2-c | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | SnO2-c | Ag | SnO2-c", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AZO-np | SnO2-c | Cu | SnO2-c", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag | ITO | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag | MoO3", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag | PMMA", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag | PMMA | Teflon", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag | Teflon", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag-nanocubes | BCP | Ag | MoO3", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag-np | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag-nw", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag-nw | ZnO-np", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AgAl", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | AgZn | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Alq3 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Au | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP I Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | AZO | ITO", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag | MoO3", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag | V2O5", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Al | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Cu", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Mg | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP; TZ-1 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP; TZ-2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP; TZ-3 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP; TZ-4 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BMIM-OTF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BMIM-OTF | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BMIM-OTF | Cu", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BMIM-OTF | ITO", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ba | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ba | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Cs2CO3 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Cs2CO3; MoO3 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Bphen; Ir(MDQ)2(acac) | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60 | Rhodamine 101 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60-ETA | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60-N | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C60SB; TBAI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C70 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C70 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | C70 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | CTAB | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ca", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ca | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Carbon-tape", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Cr | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Cr2O3:Cr", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Cs2CO3 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Cs2CO3 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Cu", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | DEME-BF4 | ITO", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | DEME-TFSI | ITO", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | DMAPA-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | DTAB | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | EFGnPs-F | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | EFGnPs-H | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Et2PrNMe-CF3BF3 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | F-60; bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | F-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | FPI-PEIE | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Field's metal", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | GaIn", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ITO", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | LiF | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Lif | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | MATS | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | MUTAB | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Mg | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Mg | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | MoS2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ni | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | P3HT; PCBM-60Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | P3TMAHT | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | P4V4 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PCBC | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PCBC | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PCBDANI | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PCBDANI | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PCBM-60 | TmPyPB | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PDI-Br | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PDINO | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PDINO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | PEDOT:PSS | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEI | PH 1000", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Ag | MoO3", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Ag | MoO3 | Back-reflector", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Cu", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PEL | PH 1000", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PFN | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PFN-Br | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PFN-Br | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PFN-P1 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PFN-P2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PFN; ZnO-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PH 1000", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PN4N | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PN4N | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PTCBI | Ag | WO3 | PTCBI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | PVP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Phen-NaDPO | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Phen\u2010NaDPO | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Phosphoniumfluorene | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Poly(2-ethyl-2-oxazoline) | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Rhodamin 101 | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | C60 | Rhodamine 101 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Rodhamine 101 | C60 | Rodhamine 101 | LiF | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TBAI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TIPD | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TOPD | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TPBi | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TPBi | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TPPI | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TiO2 -np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TiO2 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TiO2-c | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TiO2-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | TmPyPB | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnMgO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-c | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-c | Ag-nw", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | AZO", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Ag-nw", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Ag-nw | Dielectric-Mirror", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Zr(acac)4 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZrAcac | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | bis-C70 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | bis\u2010C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | bis\u2010C60 | ITO", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | pi-PFE1 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | pi-PFE2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | pi-PFE3 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | pi-PFE4 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60; F8BT | C60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60; ICBA | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60; PMMA | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60; PS-b-PEO | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60; PTP-DFBT | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-60; TDPP-CN4 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | AZO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | AZO-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | AZO-np | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | C60 | AUH | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | C60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | C70 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | Fe2O3 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | PN4N | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | TiO2 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | TiO2-c | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | ZnO-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70 | ZrO2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-70; ZnO-np | TiO2-c | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-derivate10 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-derivate11 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-derivate12 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCBM-derivate13 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PCTDI | Cr | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PCTDI | Cr | Cu", + "SLG | ITO | PEDOT:PSS | Perovskite | PDI | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PDI | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PDI-EH | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PDPP3T; PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PDPP3T; PCBM-60 | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PDPT | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PDTP-DFBT:PCBM-60 | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PEAI | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PMDPT | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PNDI-2T | PEIE | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | PNDI20D-TT | ZnO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PNVT-8 | ZnO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PPDIDTT | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PS | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PTCBI | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PTCBI | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PTCDI | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PTEG-1 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PTEG-1 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | PTTI-1 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PTTI-2 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | PYPH | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Phenyltrichlorosilane | PCBM-60 | Ca | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | Polystyrene | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | QCAPZ | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | S-acetylthiocholine chlorde | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | S-acetylthiocholine chloride | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | TDPP-CN4 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | TDTP | LiF | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | TMPA-Cl | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | TPA-PCBM | bis-C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | TPCBM | PFN | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | Ti | Au", + "SLG | ITO | PEDOT:PSS | Perovskite | ZnO-c | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ZnO-c | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | ZnO-np | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | ZnO-np | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | a-DMEC70 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | a-PTCDI | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | bis-C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | bis-PCBM | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | bis-PCBOE | ZnO | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | bis\u2010C60 | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | d-PCBM-60; PCBM-60 | Ca | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | diPDI | TiO2 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | diPDI:DMBI | TiO2 | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | pBTT | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | pBTTz | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | pSNT | Ag", + "SLG | ITO | PEDOT:PSS | Perovskite | t-BPTI | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | t-BPTI | PDI-C4 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Perovskite | tris-PCBOE | ZnO | Al", + "SLG | ITO | PEDOT:PSS | Perovsksite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | Perovskte | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | Perovskte | PCBM-60 | BCP | IZO", + "SLG | ITO | PEDOT:PSS | Perovskte | PCBM-60 | TIPD | Al", + "SLG | ITO | PEDOT:PSS | Perovskte | PCBM-70 | Ag", + "SLG | ITO | PEDOT:PSS | Perylene | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Perylene | Perovskite | PCBM-70 | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | 3TPYMB | Au", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | Au", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | C60 | Ba | Ag", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | IPH | Ba | Ag", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | IPH | PDINO | Ag", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | IPH | PFNBr | Ag", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | PCBM-60 | Au", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | PCBM-60 | Au | LiF", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | PEDOT:PSS | PolyTPD | Perovskite | PCBM-60 | Ba | Ag", + "SLG | ITO | PEDOT:PSS | Porphyrin | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Propionic acid | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEDOT:PSS | Pyrene | Perovskite | PCBM-70 | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | Rubrene | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | Si-np | Perovsksite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | SrGO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | TPD | Perovskite | PCBM-60 | Ba | Ag", + "SLG | ITO | PEDOT:PSS | TS-CuPc | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | V2O5 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PEDOT:PSS | V2Ox | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS | VB-DAAF | Perovskite | C60 | BCP | Al", + "SLG | ITO | PEDOT:PSS | VB-MeO-FDPA | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | PEDOT:PSS | VOx | Perovskire | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | VOx | Perovskire | PCBM-60 | CIL | Al", + "SLG | ITO | PEDOT:PSS | VOx | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | Vox | Perovskite | N2200; PCBM-70; TT | Al", + "SLG | ITO | PEDOT:PSS | Vox | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | X-OTPD | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | X-QUPD | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS | pTPD | Perovskite | IPB | Ba | Ag", + "SLG | ITO | PEDOT:PSS | pTPD | Perovskite | IPH | Ba | Ag", + "SLG | ITO | PEDOT:PSS | pTPD | Perovskite | PCBB | Ba | Ag", + "SLG | ITO | PEDOT:PSS | pTPD | Perovskite | PCBH | Ba | Ag", + "SLG | ITO | PEDOT:PSS | pTPD | Perovskite | PCBM-60 | Ba | Ag", + "SLG | ITO | PEDOT:PSS-NH2-OH | Perovskite | PCBM-60 | Al", + "SLG | ITO | PEDOT:PSS; PEG | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PEDOT:PSS\uff5cPerovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | PEDOT:SAF | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PEDOT:SSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PEG; SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEG; ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEI | ICBA | Perovskite | PTAA | MoO3 | Ag", + "SLG | ITO | PEI | ICBA | Perovskite | PTAA | MoO3 | Au", + "SLG | ITO | PEI | PCBM-60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | PEI | PCBM-60 | Perovskite | PCDTBT | MoO3 | Ag", + "SLG | ITO | PEI | PCBM-60 | Perovskite | PTAA | Ag", + "SLG | ITO | PEI | PCBM-60 | Perovskite | PTAA | MoO3 | Ag", + "SLG | ITO | PEI | PCBM-60 | Perovskite | PTAA | MoO3 | Au", + "SLG | ITO | PEI | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | PEI | PCBM-60 | Perovskite | T1 | MoO3 | Ag", + "SLG | ITO | PEI | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | PEIE | C60 | Perovskite | P3HT | MoO3 | Cu", + "SLG | ITO | PEIE | C60 | Perovskite | P3HT | MoOx | Cu", + "SLG | ITO | PEIE | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEIE | CDIN | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | PEIE | NDI-H | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEIE | PCBM-60 | Perovskite | P3HT | Au", + "SLG | ITO | PEIE | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEIE | PCBM-60 | Perovskite | Spiro-MeOTAD | MoOx | IO | ITO | Au", + "SLG | ITO | PEIE | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEIE | SnO2-np | ITIC | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEIE | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEIE | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEIE | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PEIE | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PETDOT:PSS | Perovskite | PCBM-60 | AZO-np | Ag", + "SLG | ITO | PFB | Al2O3-np | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PFBT-Na | Perovskite | PCBM-60 | Al", + "SLG | ITO | PFI-PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PFN | C60; PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PFN | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PFN | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PFN-2TNDI | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PFN-OX | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PFN-OX; ZnO | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PFN; PTPD | Perovskite | PCBM-60 | Al", + "SLG | ITO | PFN; PTPD | Perovskite | PCBM-60 | TiO2 | Al", + "SLG | ITO | PFN; TT | Perovskite | PCBM-60 | Al", + "SLG | ITO | PFN; ZnO | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PFO | Al2O3-np | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PII2T8T | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PII2T8TSi | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PMA | Perovskite | C60 | BCP | Au", + "SLG | ITO | PMA | TaTm | Perovskite | C60 | BCP | Au", + "SLG | ITO | PMT | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PN-P | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PNP-BC | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PPN | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PPP | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PSS-g-PANI | Perovskite | PCBM-60 | Al", + "SLG | ITO | PSS-g-PANI:PFI | Perovskite | PCBM-60 | Al", + "SLG | ITO | PT | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PTAA | Al2O3-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PTAA | Car-ETTA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PTAA | LiF | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PTAA | LiF | Perovskite | C60 | BCP | Cu", + "SLG | ITO | PTAA | MoS2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PTAA | MoS2 | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | PTAA | PFN | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PTAA | PFN | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PTAA | PFN | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | PTAA | PFN | Perovskite | PCBM-60 | BCP | Cu", + "SLG | ITO | PTAA | PFN | Perovskite | PCBM-60 | BCP | Cu | Ag", + "SLG | ITO | PTAA | PFN | Perovskite | PCBM-60 | PFN | Ag", + "SLG | ITO | PTAA | PFN | Perovskite | PCBM-60 | PFN | Cu-CFNs", + "SLG | ITO | PTAA | PFN-Br | Perovskite | C60 | BCP | Cu", + "SLG | ITO | PTAA | PFN-P2 | Perovskite | C60 | BCP | Cu", + "SLG | ITO | PTAA | PFN-P2 | Perovskite | C60 | LiF | BCP | Cu", + "SLG | ITO | PTAA | PFN-P2 | Perovskite | LiF | C60 | BCP | Cu", + "SLG | ITO | PTAA | PFNBr | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PTAA | PMMA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PTAA | PMMA | Perovskite | HPDT | PCBM-60 | Bphen | Al", + "SLG | ITO | PTAA | PMMA | Perovskite | IDTT2FPDI | PCBM-60 | Bphen | Al", + "SLG | ITO | PTAA | PMMA | Perovskite | PCBM-60 | Bphen | Al", + "SLG | ITO | PTAA | PMMA | Perovskite | PEAI | PCBM-60 | Bphen | Al", + "SLG | ITO | PTAA | PS | Perovskite | PCBM-60 | Bphen | Al", + "SLG | ITO | PTAA | Perovskite | 2PDI-0S | PEIE | Ag", + "SLG | ITO | PTAA | Perovskite | 2PDI-2S | PEIE | Ag", + "SLG | ITO | PTAA | Perovskite | 2PDI-3S | PEIE | Ag", + "SLG | ITO | PTAA | Perovskite | 2PDI-4S | PEIE | Ag", + "SLG | ITO | PTAA | Perovskite | Ag", + "SLG | ITO | PTAA | Perovskite | Au", + "SLG | ITO | PTAA | Perovskite | C60 | Ag", + "SLG | ITO | PTAA | Perovskite | C60 | B4PyMPM | Ag", + "SLG | ITO | PTAA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PTAA | Perovskite | C60 | BCP | Al", + "SLG | ITO | PTAA | Perovskite | C60 | BCP | CU", + "SLG | ITO | PTAA | Perovskite | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | C60 | BCP | Graphene", + "SLG | ITO | PTAA | Perovskite | C60 | BCP | IZO", + "SLG | ITO | PTAA | Perovskite | C60 | PEI | Ag", + "SLG | ITO | PTAA | Perovskite | C60 | SnO2 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | C60 | SnO2 | ITO | Ag-grid", + "SLG | ITO | PTAA | Perovskite | C60 | SnO2 | IZO", + "SLG | ITO | PTAA | Perovskite | C60 | SnO2 | ZTO | IZO", + "SLG | ITO | PTAA | Perovskite | C60 | SnO2-c | ZTO | IZO", + "SLG | ITO | PTAA | Perovskite | C60 | SnS | Ag", + "SLG | ITO | PTAA | Perovskite | C60 | ZnSe | Ag", + "SLG | ITO | PTAA | Perovskite | C60-SAM | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | C60; C70 | BCP | Ag", + "SLG | ITO | PTAA | Perovskite | C60MC12 | AZO-np | Ag", + "SLG | ITO | PTAA | Perovskite | C70 | BCP | Ag", + "SLG | ITO | PTAA | Perovskite | CMB | AZO | Ag", + "SLG | ITO | PTAA | Perovskite | CMB-vTA | AZO | Ag", + "SLG | ITO | PTAA | Perovskite | CMB-vTA | PCBM-60 | AZO | Ag", + "SLG | ITO | PTAA | Perovskite | CdI2 | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | Choline chloride | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | Cu", + "SLG | ITO | PTAA | Perovskite | ICBA | C60 | BCP | Al", + "SLG | ITO | PTAA | Perovskite | ICBA | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | ICBA | bis-C60 | Ag", + "SLG | ITO | PTAA | Perovskite | ICBA-tran3 | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | ICTA | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | IDIC | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | IT-M | Zn(acac)2 | Ag", + "SLG | ITO | PTAA | Perovskite | ITIC | Zn(acac)2 | Ag", + "SLG | ITO | PTAA | Perovskite | ITIC-Th | BCP | Ag", + "SLG | ITO | PTAA | Perovskite | ITIC-Th | Zn(acac)2 | Ag", + "SLG | ITO | PTAA | Perovskite | LiF | C60 | BCP | Ag", + "SLG | ITO | PTAA | Perovskite | PCB-C12 | AZO | Ag", + "SLG | ITO | PTAA | Perovskite | PCB-C4 | AZO | Ag", + "SLG | ITO | PTAA | Perovskite | PCB-C8 | AZO | Ag", + "SLG | ITO | PTAA | Perovskite | PCBB-3N | PCBM-60 | Al", + "SLG | ITO | PTAA | Perovskite | PCBB-3N-3I | PCBM-60 | Al", + "SLG | ITO | PTAA | Perovskite | PCBB-OEG; PCBM-60 | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | PCBB-S-N | Al", + "SLG | ITO | PTAA | Perovskite | PCBB-S-N | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | PCBB-S-N | PCBM-60 | Al", + "SLG | ITO | PTAA | Perovskite | PCBB-S-N | PCBM-60 | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | AZO | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | AZO-np | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | AZO-np | ITO", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | AZO-np | SnO2-c | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | AZO-np | SnO2-c | Ag-nw", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | AZO-np | SnO2-c | ITO", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Ag-nw", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Ag@Au-np", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Al", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | BCP | Au", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | BCP | cu", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Bphen | Al", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Bphen | Cu", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | C60 | BCP | Au", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | CMB | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | CMB-vTA | AZO | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | CMB-vTA | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Cr | Au", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Cu", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Mg | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | PDIN | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | PEIE | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | PFN | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | PFN | Au", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | PFN | Cu", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Polyethylimine | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Ti | Au", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | TrNBr | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | Zn(acac)2 | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | ZnO-np | AZO | Ni | Al | MgF2", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | ZnO-np | AZO | NiAl | MgF2", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | PTAA | Perovskite | PCBM-60 | m-PYBrZnPor | Ag", + "SLG | ITO | PTAA | Perovskite | PCBM-60-np | PrC60MA | PEI | Au", + "SLG | ITO | PTAA | Perovskite | PCBM-60; MAI | Cu", + "SLG | ITO | PTAA | Perovskite | PCBM-60; Sb-Carbon-nw | BCP | Au", + "SLG | ITO | PTAA | Perovskite | PCBM-70 | ZnO-np | Al", + "SLG | ITO | PTAA | Perovskite | PDIN | Ag", + "SLG | ITO | PTAA | Perovskite | PS | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | PTCDA | PO-T2T | Cu", + "SLG | ITO | PTAA | Perovskite | Polystyrene | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovskite | SiPc-Py-2 | PTCDA | PO-T2T | Cu", + "SLG | ITO | PTAA | Perovskite | TTC | C60 | BCP | Ag", + "SLG | ITO | PTAA | Perovskite | Ti | Au", + "SLG | ITO | PTAA | Perovskite | Ti | Cu", + "SLG | ITO | PTAA | Perovskite-sc | C60 | BCP | Cu", + "SLG | ITO | PTAA | Perovsktie | ZnO-np | Al", + "SLG | ITO | PTAA | TFPPy-ETTA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PTAA | perovkite | PCBM-60 | Bphen | Cu", + "SLG | ITO | PTB7 | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | PTB7-Th | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | PTB7-Th; PFN | Perovskite | PCBM-60 | Al", + "SLG | ITO | PTEBS | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PTPAANT | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | PTPD | PFN | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | PTPD | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PTPD | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | PTPD | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | PTTh | Perovskite | PCBM-60 | AZO-np | Au", + "SLG | ITO | PVBT-SB | Perovskite | PCBM-60 | C60-N | Ag", + "SLG | ITO | PVBT-SO3 | Perovskite | C60/C70-N | Ag", + "SLG | ITO | PVBT-SO3 | Perovskite | PCBM-60 | C60-N | Ag", + "SLG | ITO | PVBT-SO3 | Perovskite | PCBM-60 | C60/C70-N | Ag", + "SLG | ITO | PVBT-TMA | Perovskite | PCBM-60 | C60-N | Ag", + "SLG | ITO | PVK | Perovskite | PCBM-60 | Ag", + "SLG | ITO | PbI2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | PbS-QDs | Perovskite | PCBM-60 | Al", + "SLG | ITO | Pentacene | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | Perovskite | Au", + "SLG | ITO | Perovskite | C60 | Ag", + "SLG | ITO | Perovskite | C60 | Al", + "SLG | ITO | Perovskite | C60 | B4PyMPM | Ag", + "SLG | ITO | Perovskite | C60 | BCP | Ag", + "SLG | ITO | Perovskite | C60 | BCP | Al", + "SLG | ITO | Perovskite | C60 | BCP | Cu", + "SLG | ITO | Perovskite | C60 | Bphen | Ag", + "SLG | ITO | Perovskite | C60 | Bphen | Al", + "SLG | ITO | Perovskite | Carbon-nt | Ag", + "SLG | ITO | Perovskite | Carbon-nt | PFN-Br | Ag", + "SLG | ITO | Perovskite | Diketopyrrolopyrrole | MoO3 | Ag", + "SLG | ITO | Perovskite | ICBA | BCP | Ag", + "SLG | ITO | Perovskite | P3HT | Ag", + "SLG | ITO | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Perovskite | PCBM-60 | Al", + "SLG | ITO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | Perovskite | PCBM-60 | Ca | Al", + "SLG | ITO | Perovskite | PCBM-60 | Ethanl-hydroquinolatolithium | Ag", + "SLG | ITO | Perovskite | PCBM-60 | Isopropanol-hydroquinolatolithium | Ag", + "SLG | ITO | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | Perovskite | PCBM-60 | Methanol-hydroquinolatolithium | Ag", + "SLG | ITO | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | Perovskite | PCBM-60 | Rhodamine 101 | Ag", + "SLG | ITO | Perovskite | PCBM-60 | ZnO | Al", + "SLG | ITO | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | Perovskite | PCBM-60 | bis-C60 | Ag", + "SLG | ITO | Perovskite | PCBM-70; PTB7-Th | Ca | Al", + "SLG | ITO | Perovskite | Polyimid | PCBM-60 | BCP | Ag", + "SLG | ITO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Perovskite | Spiro-MeOTAD | Au | Ag", + "SLG | ITO | Poly TPD-NPD | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PolyTPD | Al2O3-mp | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PolyTPD | PFN | Perovskite | LiF | C60 | BCP | Au", + "SLG | ITO | PolyTPD | PFN | Perovskite | LiF | C60 | PEIE | SnO2-c | ZTO | Au", + "SLG | ITO | PolyTPD | PFN | Perovskite | LiF | C60 | SnO2-c | ZTO | Au", + "SLG | ITO | PolyTPD | Perovskite | C60 | BCP | Ag", + "SLG | ITO | PolyTPD | Perovskite | C60 | BCP | CU", + "SLG | ITO | PolyTPD | Perovskite | C60 | BCP | Cu", + "SLG | ITO | PolyTPD | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | PolyTPD | Perovskite | PCBM-60 | BCP | Al", + "SLG | ITO | PolyTPD | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | PolyTPD | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | PolyTPD | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | PolyTPD | Perovskite | PCBM-60 | C60 | BCP | Au", + "SLG | ITO | PolyTPD | Perovskite | PCBM-60 | Zr(acac)4 | Ag", + "SLG | ITO | Polyacrylonitrile | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Polythiophene | Perovskite | C60 | BCP | Ag", + "SLG | ITO | Porphyrin | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Py-COF | PTAA | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | Rubrene | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | Rubrene | Perovskite | PCBM-60 | Ag", + "SLG | ITO | SFT-TPA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | SFT-TPAM | Perovskite | C60 | BCP | Ag", + "SLG | ITO | SFX-TPA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | SFX-TPAM | Perovskite | C60 | BCP | Ag", + "SLG | ITO | SWCNTs | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | SY1 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | SY2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | SY3 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | SY4 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Si-OMeTPA | Perovskite | PCBM-60 | Al", + "SLG | ITO | Si-OMeTPA | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | SiTP-OMeTPA | Perovskite | PCBM-60 | Al", + "SLG | ITO | SnO2 | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2 | Perovskite | Au", + "SLG | ITO | SnO2 | Perovskite | P3HT | Au", + "SLG | ITO | SnO2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | SnO2 | Perovskite | Spiro-MeOTAD | MoO3 \u2223 ITO", + "SLG | ITO | SnO2-QDs | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | ABA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | Au | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | BA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | Ba(OH)2 | Perovskite | PDCBT | MoOX | Au", + "SLG | ITO | SnO2-c | C3-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60 | Perovskite | PPyra-ACD | MoO3 | Ag", + "SLG | ITO | SnO2-c | C60 | Perovskite | PPyra-TXA | MoO3 | Ag", + "SLG | ITO | SnO2-c | C60 | Perovskite | PPyra-XA | MoO3 | Ag", + "SLG | ITO | SnO2-c | C60 | Perovskite | PTAA | Au", + "SLG | ITO | SnO2-c | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | SnO2-c | C60-5a | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60-5b | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60-5d | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60-5e | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60-5f | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60-5g | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | MoO3 | Au | MoO3", + "SLG | ITO | SnO2-c | C9 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | CBA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | IDTT2FPDI | Perovskite | PTAA | Ag", + "SLG | ITO | SnO2-c | KCl | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | MgO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | NPC60 OH | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | NiCl2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | PA-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | PCBM-60 | Perovskite | DPPZnP-TSEH; PCBM-60 | BCP | Ag", + "SLG | ITO | SnO2-c | PCBM-60 | Perovskite | PDCBT | Ta:WOx | Au", + "SLG | ITO | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | PCBM-60-np | Perovskite | PDCBT | Ta-Wox | Au", + "SLG | ITO | SnO2-c | PEIE | PCBM-60 | Perovskite | Spiro-MeOTAD | MoOx | IO | ITO | Au", + "SLG | ITO | SnO2-c | Perovskite | 4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-(hexyloxy)phenyl)aniline) | Au", + "SLG | ITO | SnO2-c | Perovskite | 4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-methoxyphenyl)aniline) | Au", + "SLG | ITO | SnO2-c | Perovskite | 4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2\u2032,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- (hexyloxy)phenyl)aniline) | Au", + "SLG | ITO | SnO2-c | Perovskite | 4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2\u2032,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- methoxyphenyl)aniline) | Au", + "SLG | ITO | SnO2-c | Perovskite | CZTPA-1 | MoO3 | Au", + "SLG | ITO | SnO2-c | Perovskite | CZTPA-2 | MoO3 | Au", + "SLG | ITO | SnO2-c | Perovskite | Carbon", + "SLG | ITO | SnO2-c | Perovskite | Carbon-nt | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | Perovskite | Carbon-nt | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | Perovskite | CdTe@MAPbI3-QDs | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | Perovskite | HPB-OMe | Au", + "SLG | ITO | SnO2-c | Perovskite | HTB-OMe | Au", + "SLG | ITO | SnO2-c | Perovskite | HZ1 | Au", + "SLG | ITO | SnO2-c | Perovskite | HZ2 | Au", + "SLG | ITO | SnO2-c | Perovskite | HZ3 | Au", + "SLG | ITO | SnO2-c | Perovskite | IT-4F; PBDB-T-SF | MoO3 | Ag", + "SLG | ITO | SnO2-c | Perovskite | NDT | Au", + "SLG | ITO | SnO2-c | Perovskite | NiO-c | ITO | SLG", + "SLG | ITO | SnO2-c | Perovskite | OMe-TATPyr | Au", + "SLG | ITO | SnO2-c | Perovskite | P3HT | Au", + "SLG | ITO | SnO2-c | Perovskite | PBT | Au", + "SLG | ITO | SnO2-c | Perovskite | PDCBT | MoOX | Au", + "SLG | ITO | SnO2-c | Perovskite | PDMS | CuSCN | Au", + "SLG | ITO | SnO2-c | Perovskite | PEAI | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | Perovskite | PEDOT:PSS | MoO3 | Ag", + "SLG | ITO | SnO2-c | Perovskite | PMMA | Carbon", + "SLG | ITO | SnO2-c | Perovskite | PTAA | Ag", + "SLG | ITO | SnO2-c | Perovskite | Py-C | Au", + "SLG | ITO | SnO2-c | Perovskite | SDF-MeOTAD | Au", + "SLG | ITO | SnO2-c | Perovskite | Spiro p-xylene | Au", + "SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | Au | Ag", + "SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | MoOx | ICO", + "SLG | ITO | SnO2-c | Perovskite | Spiro-MeOTAD | MoOx | ITO", + "SLG | ITO | SnO2-c | Perovskite | TATCz3 | Ag", + "SLG | ITO | SnO2-c | Perovskite | TATF8HBP | Ag", + "SLG | ITO | SnO2-c | Perovskite | TATSFHBP | Ag", + "SLG | ITO | SnO2-c | Perovskite | TFAP | Au", + "SLG | ITO | SnO2-c | Perovskite | X2 | Au", + "SLG | ITO | SnO2-c | Perovskite | Z1 | Au", + "SLG | ITO | SnO2-c | Perovskite | Z2 | Au", + "SLG | ITO | SnO2-c | Perovskte | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | SnO2-c | Perovskite | Au", + "SLG | ITO | SnO2-c | SnO2-c | Perovskite | NiO-np | Ag", + "SLG | ITO | SnO2-c | SnO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | SnO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | SnO2-mp | Perovskite | PTAA | Au", + "SLG | ITO | SnO2-c | SnO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | SnO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c | TiS2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-c | ZnTiO3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-c; SWCNTs | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | B2Cat2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | BBA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | BTF1 | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | BTF2 | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | BTF3 | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | BTF4 | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | Spiro-MeOTAD | VOx | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | Spiro-MeOTAD | VOx | ITO", + "SLG | ITO | SnO2-np | C60 | Perovskite | Spiro-TTB | VOx | Au", + "SLG | ITO | SnO2-np | C60 | Perovskite | Spiro-TTB | VOx | ITO", + "SLG | ITO | SnO2-np | C60-SAM | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | SnO2-np | CPTA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | DPC60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | DTPA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Dompamin-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | EPA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | ImAcHcl | Perovskite | PTAA | Au", + "SLG | ITO | SnO2-np | ImAcHcl | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Li-TFSI | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | LiF | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | MSAPBS | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | OEABS | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | PCBA | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | SnO2-np | PCBA-60 | Perovskite | PTA | MoO3 | Ag", + "SLG | ITO | SnO2-np | PCBM-60 | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | BTPA | MoO3 | Au", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | BTPA-TCNE | MoO3 | Au", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | PTA | MoO3 | Ag", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | PTAA | MoO3 | Ag", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | TZ1 | Ag", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | TZ2 | Ag", + "SLG | ITO | SnO2-np | PCBM-60 | Perovskite | TZ3 | Ag", + "SLG | ITO | SnO2-np | PCBM-60; PCBA | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | SnO2-np | PEG; SnO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | PN4N | Perovskite | PDCBT | MoO3 | Ag", + "SLG | ITO | SnO2-np | PN4N | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | SnO2-np | PbF2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovsite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | Perovsite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | 2,7-triphenylamine-carbazole | Au", + "SLG | ITO | SnO2-np | Perovskite | 2-MP | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | 2\u2010aminoterephthalic acid | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | Perovskite | 3,6-triphenylamine-carbazole | Au", + "SLG | ITO | SnO2-np | Perovskite | AL2O3-c | Spiro-MeOTAD | MoOx | ITO | MgF2", + "SLG | ITO | SnO2-np | Perovskite | Aminothiazolium iodide | P3HT | Au", + "SLG | ITO | SnO2-np | Perovskite | Au", + "SLG | ITO | SnO2-np | Perovskite | BMIMBF4 | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | BTTI-C12 | Au", + "SLG | ITO | SnO2-np | Perovskite | BTTI-C6 | Au", + "SLG | ITO | SnO2-np | Perovskite | BTTI-C8 | Au", + "SLG | ITO | SnO2-np | Perovskite | Bp-OMe | Au", + "SLG | ITO | SnO2-np | Perovskite | C12H10B2O4 | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | CH3-PEAI | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | CH3O-PEAI | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | CI-GO | PTAA | Au", + "SLG | ITO | SnO2-np | Perovskite | Caffeine | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | Perovskite | Carbon", + "SLG | ITO | SnO2-np | Perovskite | Co3O4 | Carbon", + "SLG | ITO | SnO2-np | Perovskite | CuGaO2-np | CuSCN | Au", + "SLG | ITO | SnO2-np | Perovskite | CuIn1.5Se3-QDs | Au", + "SLG | ITO | SnO2-np | Perovskite | CuInS2-QDs | Au", + "SLG | ITO | SnO2-np | Perovskite | CuInSe2-QDs | Au", + "SLG | ITO | SnO2-np | Perovskite | CuSCN | Au", + "SLG | ITO | SnO2-np | Perovskite | CuSCN | MoOx | Au-grid", + "SLG | ITO | SnO2-np | Perovskite | D101 | Au", + "SLG | ITO | SnO2-np | Perovskite | D102 | Au", + "SLG | ITO | SnO2-np | Perovskite | D103 | Au", + "SLG | ITO | SnO2-np | Perovskite | EH44 | MoOx | Al", + "SLG | ITO | SnO2-np | Perovskite | EHCz-2EtCz | MoOx | Al", + "SLG | ITO | SnO2-np | Perovskite | EHCz-3EtCz | MoOx | Al", + "SLG | ITO | SnO2-np | Perovskite | EHCz-MeFl | MoOx | Al", + "SLG | ITO | SnO2-np | Perovskite | Graphene oxide | PTAA | Au", + "SLG | ITO | SnO2-np | Perovskite | IEICO; PBDTTT-E-T | MoO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | Imidazolium iodide | P3HT | Au", + "SLG | ITO | SnO2-np | Perovskite | MEAI | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | NH2-POSS | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | NO2-PEAI | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | NiO-np | Au", + "SLG | ITO | SnO2-np | Perovskite | NiO-np | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | OMe-TATPyr | Au", + "SLG | ITO | SnO2-np | Perovskite | P3HT | Ag", + "SLG | ITO | SnO2-np | Perovskite | P3HT | Au", + "SLG | ITO | SnO2-np | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | PBDB-T | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | PBDTT | MoO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | PDCBT | MoO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | PEAI | PTAA | Au", + "SLG | ITO | SnO2-np | Perovskite | PEAI | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | PEDOT | Au", + "SLG | ITO | SnO2-np | Perovskite | PEDOT:PSS | MoO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | PMAA; Spiro-MeOTAD | Spiro-MeOTAD | AgAu", + "SLG | ITO | SnO2-np | Perovskite | PMAA; Spiro-MeOTAD | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | PTAA | Ag", + "SLG | ITO | SnO2-np | Perovskite | PTAA | Au", + "SLG | ITO | SnO2-np | Perovskite | PTAA | MoO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | PTAA | MoO3 | Al", + "SLG | ITO | SnO2-np | Perovskite | PTAA | NiO-c | Au | PEN", + "SLG | ITO | SnO2-np | Perovskite | PTAA | NiO-c | ITO | PEN", + "SLG | ITO | SnO2-np | Perovskite | PTAA; Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | PTQ10 | PTAA | Ag", + "SLG | ITO | SnO2-np | Perovskite | PTT | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | Py | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | Py-C | Au", + "SLG | ITO | SnO2-np | Perovskite | Py-OMe | Au", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Cu9S5-np | Au", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MnO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag | WO3", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | AuAg | MoO3", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MoOx | ITO | MgF2", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD; PEDOT | Au", + "SLG | ITO | SnO2-np | Perovskite | Spiro-MeTAD | Ag", + "SLG | ITO | SnO2-np | Perovskite | TCPBr | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | TCPI | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | TFB | P3HT | Au", + "SLG | ITO | SnO2-np | Perovskite | TTE-1 | Au", + "SLG | ITO | SnO2-np | Perovskite | TTE-2 | Au", + "SLG | ITO | SnO2-np | Perovskite | Theobromine | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | Perovskite | Theophylline | PTAA | Ag", + "SLG | ITO | SnO2-np | Perovskite | Theophylline | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | Perovskite | YD2-o-C8 | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | Perovskite | Zn-ChL | Ag", + "SLG | ITO | SnO2-np | Perovskite | Zn-ChL | H2-Chl | Ag", + "SLG | ITO | SnO2-np | Perovskite | pentaerythritol tetrakis(3-mercaptopropionate) | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | SnO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np | TPPO | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | TiO2-np | Perovskite | PTAA | Au", + "SLG | ITO | SnO2-np | ZnO-c | Perovskite | PTAA | MoO3 | Ag", + "SLG | ITO | SnO2-np | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | SnO2-np | ZnO-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | SnO2-np; ZnO-np | Al2O3-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-np; ZnO-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | SnO2-nw | Perovskite | PTAA | Au", + "SLG | ITO | SnO2-nw; Zn2SnO4-np | Perovskite | PTAA | Au", + "SLG | ITO | SnS2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | Spiro-E | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | Spiro-MeO-TPD | PEDOT:PSS | Perovskite | C60 | Ag", + "SLG | ITO | Spiro-MeOTAD | PEDOT:PSS | Perovskite | C60 | Ag", + "SLG | ITO | Spiro-MeOTAD | Perovskite | Au", + "SLG | ITO | Spiro-MeOTAD | Perovskite | C60 | BCP | Ag", + "SLG | ITO | Spiro-MeOTAD | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Spiro-MeOTAD | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | Spiro-MeOTAD | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | Spiro-MeOTAD | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | Spiro-N | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | Spiro-TAD | PEDOT:PSS | Perovskite | C60 | Ag", + "SLG | ITO | Spiro-TAD | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Spiro-TBB | Perovskite | C60 | Ag", + "SLG | ITO | Spiro-TBB | Spiro-TBB | Perovskite | C60 | Ag", + "SLG | ITO | Spiro-TTB | PEDOT:PSS | Perovskite | C60 | Ag", + "SLG | ITO | Spiro-TTB | Perovskite | C60 | TmPyPB | Ag", + "SLG | ITO | Spiro-TTB | Perovskite | LiF | C60 | SnO2-c | IZO | Ag", + "SLG | ITO | Spiro-TTB | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Spiro-s | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | SrGO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | SrTiO3 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TAE | Perovskite | PCBM-60 | Ag", + "SLG | ITO | TAPC | Perovskite | C60 | BCP | Ag", + "SLG | ITO | TAPC | Perovskite | PCBM-60 | Ag", + "SLG | ITO | TAPC | Perovskite | PCBM-60 | BCB | Ag", + "SLG | ITO | TAPC | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | TAPC | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | TB(MA) | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | TBASBP | Perovskite | PCBM-60 | Al", + "SLG | ITO | TBDI | Perovskite | IPH | PDINO | Ag", + "SLG | ITO | TFB | Al2O3-np | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | TFB | Perovskite | C60 | B4PyMPM | Ag", + "SLG | ITO | TFM | Perovskite | Carbon | BCP | Ag", + "SLG | ITO | TN-P | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TP-FTzF-TP | Perovskite | PCBM-60 | Au", + "SLG | ITO | TPA | Perovskite | PCBM-60 | Ag", + "SLG | ITO | TPA-ANR-TPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | TPA-BP-OXD | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | ITO | TPA-NADT-TPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | TPA-NAP-TPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | TPA-TVT-TPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | TPAC-SAM | Perovskite | C60 | BCP | Ag", + "SLG | ITO | TPAC0M | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | TPAC2M | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | TPAC3M | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | TPASB | Perovskite | PCBM-60 | Al", + "SLG | ITO | TPASBP | Perovskite | PCBM-60 | Al", + "SLG | ITO | TPE-S | Perovskite | PCBM-60 | ZnO | Ag", + "SLG | ITO | TPL | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | TPP-OMeTAD | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | TPP-SMeTAD | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | TRUX1 | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | TRUX2 | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | TS-CuPc | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | TTA | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | ITO | TZ1 | Perovskite | C60 | BCP | Ag", + "SLG | ITO | TZ2 | Perovskite | C60 | BCP | Ag", + "SLG | ITO | TZ3 | Perovskite | C60 | BCP | Ag", + "SLG | ITO | TaTm | Perovskite | C60 | Ag", + "SLG | ITO | TaTm | Perovskite | C60 | BCP | Ag", + "SLG | ITO | TaTm | Perovskite | C60 | C60; Phlm | Ag", + "SLG | ITO | TaTm | Perovskite | PCBM-60 | AZO-np | Au", + "SLG | ITO | TcTa | Perovskite | C60 | BCP | Ag", + "SLG | ITO | Ti3C2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | Ti3C2Tx | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | Ag-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | Ag-nw; TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | Benzoic acid | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | ITO | TiO2-c | C60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | TiO2-c | C60 | Perovskite | PDTSTTz | MoO3 | Ag", + "SLG | ITO | TiO2-c | C60 | Perovskite | PDTSTTz-4 | MoO3 | Ag", + "SLG | ITO | TiO2-c | C60 | Perovskite | PEO | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | C60 | Perovskite | PS | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | C60 | Perovskite | PTAA | Ag", + "SLG | ITO | TiO2-c | C60 | Perovskite | PTAA | Au", + "SLG | ITO | TiO2-c | C60 | Perovskite | PTAA | Au | Organosilicate", + "SLG | ITO | TiO2-c | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | C60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | C60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | TiO2-c | C60 | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | ITO | TiO2-c | C60 | Perovskite | TOPO | TaTm | MoO3 | Au", + "SLG | ITO | TiO2-c | C60 | Perovskite | TaTm | F6-TCNNQ; TaTm | Au", + "SLG | ITO | TiO2-c | C60 | Perovskite | TaTm | MoO3 | Au", + "SLG | ITO | TiO2-c | C60 | Perovskite | TaTm | TPBi | MoO3 | Au", + "SLG | ITO | TiO2-c | C60 | Perovskite | TaTm | TaTm:F6-TCNNQ | Au", + "SLG | ITO | TiO2-c | C60-SAM | Al2O3-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | C60-SAM | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | C60-SAM | SiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | CdS | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | CdSe-tetrapod | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | CsBr | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | DMF | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | Fullerenol | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | TiO2-c | IPH | Perovskite | TaTm | F6-TCNNQ; TaTm | Au", + "SLG | ITO | TiO2-c | In2O3-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | NAMF-Br | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | NAMF-Cl | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | NAMF-H | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | Na2SO4 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | PBCM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | PCBA | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | ITO | TiO2-c | PCBB-2CN-2C8 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | PCBM Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | Al2O3 | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | MeoTPD | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | NPD | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | P3HT | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | P3HT | MoO3 | Al", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | PCDTBT | MoO3 | Ag", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | PCDTBT | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | PCDTBT1 | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | PCDTBTB | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | PEDOT | Ag", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | Spiro TAD | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | Spiro TTB | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | ITO | TiO2-c | PCBM-60 | Perovskite | TPD | MoO3 | Au", + "SLG | ITO | TiO2-c | PCBM-60 | WS-C60 | Perovskite | P3HT | MoO3 | Al", + "SLG | ITO | TiO2-c | PDI2 | Perovskite | PCDTBT | MoO3 | Ag", + "SLG | ITO | TiO2-c | PDI2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | PDI2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | PNP | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | PPDI-F3N | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | (N2,N2,N2',N2',N7,N7,N7',N7'-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,2',7,7'-tetraamine) | Au", + "SLG | ITO | TiO2-c | Perovskite | Ag", + "SLG | ITO | TiO2-c | Perovskite | Al2O3-c | PEDOT:PSS | Au", + "SLG | ITO | TiO2-c | Perovskite | Al2O3-c | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | Au", + "SLG | ITO | TiO2-c | Perovskite | C201 | Ag", + "SLG | ITO | TiO2-c | Perovskite | C202 | Ag", + "SLG | ITO | TiO2-c | Perovskite | Carbon", + "SLG | ITO | TiO2-c | Perovskite | CsOAc | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | CuSCN | Au", + "SLG | ITO | TiO2-c | Perovskite | DOR3T-TBDT | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | DOR3T-TBDT; PCBM-70 | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | Graphene", + "SLG | ITO | TiO2-c | Perovskite | HAB1 | Au", + "SLG | ITO | TiO2-c | Perovskite | HB-Cz | Ag", + "SLG | ITO | TiO2-c | Perovskite | J1 | Ag", + "SLG | ITO | TiO2-c | Perovskite | J2 | Ag", + "SLG | ITO | TiO2-c | Perovskite | MEH; PPV | Ag", + "SLG | ITO | TiO2-c | Perovskite | N2',N2',N7',N7'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2',7'-diamine | Au", + "SLG | ITO | TiO2-c | Perovskite | N2,N2,N3',N3',N6',N6',N7,N7-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,3',6',7-tetraamine | Au", + "SLG | ITO | TiO2-c | Perovskite | N2,N2,N7,N7-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,7-diamine | Au", + "SLG | ITO | TiO2-c | Perovskite | N3',N3',N6',N6'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-3',6'-diamine | Au", + "SLG | ITO | TiO2-c | Perovskite | Na@Carbon-nanowalls", + "SLG | ITO | TiO2-c | Perovskite | P3DDT | Ag", + "SLG | ITO | TiO2-c | Perovskite | P3DT | Ag", + "SLG | ITO | TiO2-c | Perovskite | P3HT | Ag", + "SLG | ITO | TiO2-c | Perovskite | P3HT | Au", + "SLG | ITO | TiO2-c | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | P3HT | MoO3 | Al", + "SLG | ITO | TiO2-c | Perovskite | P3OT | Ag", + "SLG | ITO | TiO2-c | Perovskite | PBDTT-SeDPP | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | PBDTT-SeDPP; PCBM-70 | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | PCA-1 | Au", + "SLG | ITO | TiO2-c | Perovskite | PCA-2 | Au", + "SLG | ITO | TiO2-c | Perovskite | PCDTBT | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | PCz | Ag", + "SLG | ITO | TiO2-c | Perovskite | PDTSTTz | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | PDTSTTz-4 | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | PEDOT:PSS | Au", + "SLG | ITO | TiO2-c | Perovskite | PTAA | Au", + "SLG | ITO | TiO2-c | Perovskite | PTAA | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | PTAA | MoO3 | Au", + "SLG | ITO | TiO2-c | Perovskite | PTB7 | Au", + "SLG | ITO | TiO2-c | Perovskite | PTZDPP-2 | Au", + "SLG | ITO | TiO2-c | Perovskite | PVP | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | SAF\u2010OMe | Ag", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Al", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Au | Ag", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Au | MoO3", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Cu", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | ITO", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | ITO | Ag", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | ITO | Al", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | ITO | Au", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | ITO | MWCNTs", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | MWCNTs", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag | ZnS", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Au | MoO3", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | ITO | MgF2", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Au", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Au | Ag | MoOx", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS | Al", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS | Au", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS | In", + "SLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | ITO | TiO2-c | Perovskite | Spiro-OBuTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | Spiro-OEtTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | Spiro-OiPrTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | Spiro-OprTAD | Au", + "SLG | ITO | TiO2-c | Perovskite | TPADPP-1 | Au", + "SLG | ITO | TiO2-c | Perovskite | TPADPP-2 | Au", + "SLG | ITO | TiO2-c | Perovskite | TaTm | F6-TCNNQ; TaTm | Au", + "SLG | ITO | TiO2-c | Perovskite | rGO-4FPH | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | SnO2-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | TiO2-mp | Al2O3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | TiO2-mp | BaTiO3-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | TiO2-mp | MgO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Nb2O5-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Au-np | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | CuI | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | CuPc | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Oleic-acid | P3HT | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | P3HT | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | PCA-1 | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | PTAA | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | IZO", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | PEDOT:PSS | ITO | SLG", + "SLG | ITO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | WO3 | Ag", + "SLG | ITO | TiO2-c | TiO2-mp | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | TiO2-nw | N-[3-(Trimethoxysilyl)propyl]ethylenediamine-SAM | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | TiO2-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-c | TiO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-c | ZnO-nanoflake | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-mp | Perovskite | 2,5-bis (5-(5-(5-hexylthiophen-2-yl) thiophen2-yl) thiophen-2-yl) thiazolo[5,4-d]thiazole | Au", + "SLG | ITO | TiO2-mp | Perovskite | 2,5-bis (5-(5-(5-hexylthiophen-2-yl)thiophen-2-yl) furan-2-yl) thiazolo[5,4-d] thiazole | Au", + "SLG | ITO | TiO2-mp | Perovskite | 4-(5-(5-(5-(5-(5-hexylthiophen-2-yl) thiophen-2-yl) thiophene-2-yl) thiazolo[5,4-d]thiazol-2-yl) thiophene2-yl)-N,N-diphenyl-benzenamine | Au", + "SLG | ITO | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-nanocones | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-np | C-PCBOD | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-np | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-np | C70 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-np | PCBM-70 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-np | Perovskite | BDTS-2DPP | Au", + "SLG | ITO | TiO2-np | Perovskite | DERDTS-TBDT | MoO3 | Ag", + "SLG | ITO | TiO2-np | Perovskite | DORDTS\u2013TFBT | MoO3 | Ag", + "SLG | ITO | TiO2-np | Perovskite | P3HT | Au", + "SLG | ITO | TiO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | TiO2-np | Perovskte | Spiro-MeOTAD | Au", + "SLG | ITO | TiO2-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | TiS2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | Trux-OMeTAD | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | ITO | Ts-CuPc | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | V1036 | Perovskite | C60 | BCP | Cu", + "SLG | ITO | V1036:C2 | Perovskite | C60 | BCP | Cu", + "SLG | ITO | V1036:C4 | Perovskite | C60 | BCP | Cu", + "SLG | ITO | V2O5 | P3CT-K | Perovskite | PCBM-60 | ZnO | Ag", + "SLG | ITO | V2O5 | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | V2O5 | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | V2O5 | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | V2O5 | Perovskite | PCBM-60 | ZnO | Ag", + "SLG | ITO | V2Ox | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | V2Ox | Perovskite | C60 | BCP | Ag", + "SLG | ITO | VB-DAAF | Perovskite | C60 | BCP | Al", + "SLG | ITO | VB-Me-FDPA | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | VB-MeO-FDPA | Perovskite | PCBM-60 | PEI | Ag", + "SLG | ITO | VOx | APPA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | VOx | Cu phtalocyanine | Perovskite | C60 | BCP | Ag", + "SLG | ITO | VOx | Perovskite | C60 | BCP | Ag", + "SLG | ITO | VOx | Perovskite | PCBM-60 | Al", + "SLG | ITO | VOx | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | VOx | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | VOx | X-DVTPD | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | VOx | X-DVTPD | Perovskite | PCBM-60 | FPI | Ag", + "SLG | ITO | WO3 | Perovskite | PCBM-60 | Al", + "SLG | ITO | WO3 | Perovskite | PCBM-60 | LiF | Al", + "SLG | ITO | WO3-np | Cs2CO3 | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | WO3-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | WO3-nw | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | WO3-nw@PEDOT | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | WO3-nw@PEDOT | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | WOx | I-Ph-PA_C60-C6-PA | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | WOx | Perovskite | PCBM-60 | Ag", + "SLG | ITO | WOx | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | WOx | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | WS2 | Perovskite | C60 | BCP | Al", + "SLG | ITO | WS2 | Perovskite | PCBM-60 | BCP | LiF | Al", + "SLG | ITO | X-DVTPD | Perovskite | PC6BM | Bphen | Ag", + "SLG | ITO | X-DVTPD | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | X-DVTPD | Perovskite | PCBM-60 | FPI | Ag", + "SLG | ITO | XSln1453 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | XSln847 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | XY1 | Perovskite | C60 | BCP | Cu", + "SLG | ITO | YC-1 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | YC-2 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | YC-3 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Z10 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Z7 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Z7@MWCNTs | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Z8 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | Z9 | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | ZSO-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZTO | SnO2-c | C60 | Perovskite | PTAA | Au", + "SLG | ITO | ZTO | SnO2-c | PCBM-60 | Perovskite | PTAA | Au", + "SLG | ITO | ZTO | SnO2-c | Perovskite | PTAA | Au", + "SLG | ITO | Zn2SnO4 | Perovskite | PTAA | Au", + "SLG | ITO | Zn2SnO4-np | Perovskite | PTAA | Au", + "SLG | ITO | ZnCsO | PCBA | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnCsO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnLiO | PCBA | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnLiO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO | MgZnO | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | ITO | ZnO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO | Perovskite | Spiro-MeOTAD | MoO3 | Au", + "SLG | ITO | ZnO | Perovskite | Spiro-MeOTAD | MoOx | Al", + "SLG | ITO | ZnO | ZnO-nw | Perovskite | P3HT | Au", + "SLG | ITO | ZnO-c | 1,2 ethanedithio | Perovskite | PZn-2FTPA | Au", + "SLG | ITO | ZnO-c | 1,2 ethanedithio | Perovskite | PZn-3FTPA | Au", + "SLG | ITO | ZnO-c | 1,2 ethanedithio | Perovskite | PZn-FTPA | Au", + "SLG | ITO | ZnO-c | 1,2-ethanedithiol | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | 3-aminopropanioc acid-SAM | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-c | APTES-SAM | Perovskite | PCBM-60 | Au", + "SLG | ITO | ZnO-c | C-PCBSD | Perovskite | PBTTT-14 | Au", + "SLG | ITO | ZnO-c | C-PCBSD | Perovskite | PDBT-co-TT | Au", + "SLG | ITO | ZnO-c | C-PCBSD | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | C3-SAM | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-c | C60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | CPTA; PbI2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | CsCO3 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | Graphene; ZnO-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | Hexamethylenetetramine | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | JTCA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | PCBA | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | PCBM-60 | Perovskite | LGC-D013 | MoO3 | Ag", + "SLG | ITO | ZnO-c | PCBM-60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | ZnO-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | PCBM-60 | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-c | PCBM-70 | Perovskite | Ag", + "SLG | ITO | ZnO-c | PCBM-70 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | PCBM-70 | Perovskite | benzo[1,2b:4,5b\u2032]-dithiophene | Ag", + "SLG | ITO | ZnO-c | PO-TAZ | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | PVP | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-c | Perovskite | Ag", + "SLG | ITO | ZnO-c | Perovskite | Au", + "SLG | ITO | ZnO-c | Perovskite | Bifluo-OMeTAD | MoO3 | Ag", + "SLG | ITO | ZnO-c | Perovskite | CuSCN | Ag", + "SLG | ITO | ZnO-c | Perovskite | CuSCN | NPB | Ag", + "SLG | ITO | ZnO-c | Perovskite | CzPAF\u2010SBF | Au", + "SLG | ITO | ZnO-c | Perovskite | CzPAF\u2010SBFN | Au", + "SLG | ITO | ZnO-c | Perovskite | EDT; PbS | Au", + "SLG | ITO | ZnO-c | Perovskite | Graphite | FTO", + "SLG | ITO | ZnO-c | Perovskite | P3HT | Ag", + "SLG | ITO | ZnO-c | Perovskite | P3HT | Au", + "SLG | ITO | ZnO-c | Perovskite | PBTTT-14 | Au", + "SLG | ITO | ZnO-c | Perovskite | PCBM-60 | Au", + "SLG | ITO | ZnO-c | Perovskite | PDBT-co-TT | Au", + "SLG | ITO | ZnO-c | Perovskite | PDQT | Au", + "SLG | ITO | ZnO-c | Perovskite | PQT-12 | Au", + "SLG | ITO | ZnO-c | Perovskite | PTAA | Au", + "SLG | ITO | ZnO-c | Perovskite | PTB7-Th | MoOx | Ag", + "SLG | ITO | ZnO-c | Perovskite | PZn-DPPA | Au", + "SLG | ITO | ZnO-c | Perovskite | PZn-DPPA-O | Au", + "SLG | ITO | ZnO-c | Perovskite | PZn-TPA | Au", + "SLG | ITO | ZnO-c | Perovskite | PZn-TPA-O | Au", + "SLG | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "SLG | ITO | ZnO-c | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | SnO2; TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | T2CA | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | TiO2-c | PCBM-60 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | TiO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-c | Urea | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | WPF-6-oxy-F | Perovskite | pDPA-DBTP | Au", + "SLG | ITO | ZnO-c | WPF\u20106\u2010oxy\u2010F | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | WPF\u20106\u2010oxy\u2010F | Perovskite | mDPA-DBTP | Au", + "SLG | ITO | ZnO-c | WPF\u20106\u2010oxy\u2010F | Perovskite | pDPA-DBTP | Au", + "SLG | ITO | ZnO-c | WPF\u20106\u2010oxy\u2010F | Perovskite | pTPA-DBTP | Au", + "SLG | ITO | ZnO-c | ZnMgO-c | ZnO-nw | PCBM-60 | Perovskite | PEDOT:PSS | Ag", + "SLG | ITO | ZnO-c | ZnO-c | Ba(OH)2 | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | ZnO-c | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | ZnO-mp | PEI | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | ZnO-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | ZnO-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-c | ZnO-nw | CdS-QDs | Perovskite | MEH-PPV | PEDOT:PSS | Au", + "SLG | ITO | ZnO-c | ZnO-nw | PCBM-60 | Perovskite | P3HT | Au", + "SLG | ITO | ZnO-c | ZnO-nw | Perovskite | Cu2O | ITO", + "SLG | ITO | ZnO-c | ZnO-nw | Perovskite | MDMO-PPV | MoO3 | Al", + "SLG | ITO | ZnO-c | ZnO-nw | Perovskite | MEH-PPV | PEDOT:PSS | Au", + "SLG | ITO | ZnO-c | ZnO-nw | Perovskite | P3HT | Ag", + "SLG | ITO | ZnO-c | ZnO-nw | Perovskite | Rubene | P3HT | Ag", + "SLG | ITO | ZnO-c | ZnO-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-c | ZnO-nw | TiO2-np | Perovskite | P3HT | Ag", + "SLG | ITO | ZnO-c | p-amino-benzoic acid-SAM | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-c; Graphene-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-nanoflake | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-nanospheres | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-np | ATAA | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-np | C60 | Perovskite | PEDOT:PSS | FrGO | MoO3 | Ag", + "SLG | ITO | ZnO-np | C60 | Perovskite | PEDOT:PSS | MoO3 | Ag", + "SLG | ITO | ZnO-np | NH4Cl | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-np | PCBM-60 | Perovskite | P3HT | Au", + "SLG | ITO | ZnO-np | PCBM-60 | Perovskite | P3HT | PEDOT:PSS | Ag", + "SLG | ITO | ZnO-np | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-np | PEI | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-np | PFS-FC | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-np | PFS-FTEG | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-np | Perovskite | Au", + "SLG | ITO | ZnO-np | Perovskite | Bifluo | Ag", + "SLG | ITO | ZnO-np | Perovskite | P3HT | Ag", + "SLG | ITO | ZnO-np | Perovskite | P3HT | Au", + "SLG | ITO | ZnO-np | Perovskite | P3HT | P3HT; PMMA | Ag", + "SLG | ITO | ZnO-np | Perovskite | P3HT | P3HT; PMMA | Au", + "SLG | ITO | ZnO-np | Perovskite | P3ODDT | Ag", + "SLG | ITO | ZnO-np | Perovskite | P3OEGT | Ag", + "SLG | ITO | ZnO-np | Perovskite | P3OFHT | MoO3 | Ag", + "SLG | ITO | ZnO-np | Perovskite | P3OHT | Ag", + "SLG | ITO | ZnO-np | Perovskite | PTAA | Au", + "SLG | ITO | ZnO-np | Perovskite | PTAA | PEDOT:PSS | Au", + "SLG | ITO | ZnO-np | Perovskite | PbS-QDs | MoO3 | Au | Ag", + "SLG | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | Ag-Nws", + "SLG | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | MoOx | Ag", + "SLG | ITO | ZnO-np | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "SLG | ITO | ZnO-np | SnO2-np | C60-SAM | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | H-Z1 | MoO3 | Ag", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | H-Z2 | MoO3 | Ag", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | H-Z3 | MoO3 | Ag", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | P3 | MoO3 | Ag", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | PSQ1 | MoO3 | Ag", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | PSQ2 | MoO3 | Ag", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnO-np | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | ITO | ZnO-np | ZnO-nanospheres | PEI | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-np | ZnO-nanospheres | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-np | ZnO-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-nw | PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | ZnO-nw | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnO-nw | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnPc | Perovskite | C60 | BCP | Al", + "SLG | ITO | ZnS | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | ZnSO | Perovskite | Spiro-MeOTAD | Ag", + "SLG | ITO | ZnTiO3-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | br-4C | Perovskite | C60 | BCP | Ag", + "SLG | ITO | c-OTPD | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | c-OTPD; TPACA | Perovskite | PCBM-60 | C60 | BCP | Al", + "SLG | ITO | c-TCTA | Perovskite | c-HATNA | bis-C60 | Ag", + "SLG | ITO | f-C60 | C60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | f-C60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | f-C70 | C60 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | f-C70 | Perovskite | P3HT | MoO3 | Ag", + "SLG | ITO | m-MTDATA | Perovskite | C60 | BCP | Ag", + "SLG | ITO | nTi-MOF | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | nTi-MOF | Perovskite | Spiro-MeOTAD | Au", + "SLG | ITO | p-PFP-O | PTAA | Perovskite | PCBM-60 | Al", + "SLG | ITO | p-PFP-O | PTAA | Perovskite | PCBM-60 | PFN | Ag", + "SLG | ITO | p-PFP-O | PTAA | Perovskite | PCBM-60 | PFN | Al", + "SLG | ITO | p-PFP-O | PTAA | Perovskite | PCBM-60 | PFN | Au", + "SLG | ITO | p-PFP-O | PTAA | Perovskite | PCBM-60 | PFN | Cu", + "SLG | ITO | pBDT-BODIPY | PFN | Perovskite | PCBM-60 | Zr(acac)4 | Al", + "SLG | ITO | poly(1,4-phenylenevinylene) | Perovskite | PCBM-60 | LiF | Ag", + "SLG | ITO | poly(2-ethyl-2-oxazoline); PEDOT:PSS | Perovskite | PCBM-60 | Bphen | Ag", + "SLG | ITO | r-GO-BH | Perovskite | PCBM-60 | Ag", + "SLG | ITO | r-GO-HBS | Perovskite | PCBM-60 | Ag", + "SLG | ITO | r-GO-NH | Perovskite | PCBM-60 | Ag", + "SLG | ITO | rGO | CuSCN | Perovskite | PCBM-60 | Ag", + "SLG | ITO | rGO | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | ITO | rGO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | rGO | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | rGO | Perovskite | PCBM-60 | Al", + "SLG | ITO | rGO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | rGO; PMMA | Perovskite | PCBM-60 | Al", + "SLG | ITO | s-PANI:PSS | Perovskite | PCBM-60 | Au", + "SLG | ITO | sGO | Perovskite | PCBM-60 | Ag", + "SLG | ITO | sGO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO | styryl-functionalized GO | Perovskite | PCBM-60 | BCP | Ag", + "SLG | ITO-HMDS Scaffold | TiO2-c | C60 | Perovskite | PTAA | Ag", + "SLG | ITO:ATO | TiO2-c | Perovskite | Perylene | Au", + "SLG | ITO:ATO | TiO2-c | TiO2-mp | Perovskite | Perylene | Au", + "SLG | IWO | SnO2-c | KCl | Perovskite | Spiro-MeOTAD | Au", + "SLG | IZO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG | In2O3:H | PTAA | Perovskite | PCBM-60 | ZnO-np | AZO | AlNi-grid", + "SLG | In2O3:H | PTAA | Perovskite | PCBM-60 | ZnO-np | AZO-c | Ni | Al", + "SLG | MPTMS-SMA | Ag | MUTAB-SAM | PCBM-60 | Perovskite | PTAA | Ag", + "SLG | MSA-PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | C60 | BCP | Ag", + "SLG | MSA-PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | C60 | Unknown | Rhodamine 101 | LiF | Ag", + "SLG | MSA-PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | C60 | Rhodamine 101 | LiF | Ag", + "SLG | MSA-PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | C60 | Rhodamine 101 | LiF | Ag", + "SLG | Ni | Au | Cu | Perovskite | C60 | BCP | Al", + "SLG | Ni | Au | Perovskite | C60 | BCP | Al", + "SLG | Ni | NiO-c | Perovskite | PCBM-60 | PEIE | Cu", + "SLG | Ni | PEDOT:PSS | Perovskite | PCBM-60 | PEIE | Cu", + "SLG | Ni:Au-grid | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag", + "SLG | PEDOT:PSS | Ag | PEI | PCBM-60 | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "SLG | PEDOT:PSS | ITO | Perovskite | PCBM-60 | Al", + "SLG | PEDOT:PSS | NiO-c | Perovskite | C60 | bis-C60 | Ag", + "SLG | PEDOT:PSS | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | PEDOT:PSS | PEI | PCBM-60 | Perovskite | Spiro-MeOTAD | Au", + "SLG | PEDOT:PSS | PEI | Perovskite | Spiro-MeOTAD | Au", + "SLG | PEDOT:PSS | PTAA | Perovskite | PCBM-60 | BCP | Ag", + "SLG | PEDOT:PSS | Perovskite | C60 | bis-C60 | Ag", + "SLG | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | PEDOT:PSS | Perovskite | PCBM-60 | Rhodamine 101 | Ag", + "SLG | PEDOT:PSS | ZnO-c | Perovskite | Spiro-MeOTAD | PEDOT:PSS", + "SLG | PEI | Au | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SLG | PEI | Au | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Ag", + "SLG | PEIE | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | PET | Graphene oxide | PTFTS | Perovskite | PCBM-60 | BCP | Au", + "SLG | PET | ZnO@rQD-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | SMPTMS-SMA | Ag | MUTAB-SAM | PCBM-60 | Perovskite | PTAA | Ag", + "SLG | SU-8 | MoO3 | Au | PEDOT:PSS | Perovskite | PCBM-60 | Ca | Ag", + "SLG | SWCNTs | MoO3 | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "SLG | SWCNTs | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "SLG | SWCNTs-HNO3 | PEDOT:PSS | Perovskite | C60 | BCP | LiF | Al", + "SLG | SnO2 | SiO2 | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | SnO2-c | Ag | SnO2-c | SnO2-c | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | SnO2-c | SnO2-np | Perovskite | Spiro-MeOTAD | Au", + "SLG | TCO | TiO2-c | SrTiO3:TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | TCO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag", + "SLG | Ti | Au | Perovskite | ITO", + "SLG | Ti | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | IZO", + "SLG | TiO2-c | Ag | TiO2-c | CPTA | Perovskite | Spiro-MeOTAD | Au", + "SLG | TiO2-c | SnO2-c | TiO2-c | SnO2-c | TiO2-c | SnO2-c | TiO2-c | SnO2-c | TiO2-c | ITO | NiO-np | Perovskite | PCBM-60 | ZnO-np | ITO", + "SLG | TiO2-mp | Ti:TiO2 | ZrO2-mp | Perovskite | Au", + "SLG | WO3 | Ag | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Ag", + "SLG | WO3 | Ag | WO3 | PEDOT:PSS | Perovskite | C60 | Bphen | Ag", + "SLG | WO3 | Ag | WO3 | Perovskite | C60 | Bphen | Ag", + "SLG | Zn0.75Sn0.25O1.25 | Perovskite | Spiro-MeOTAD | Au", + "SLG | Zn0.85Sn0.15O1.15 | Perovskite | Spiro-MeOTAD | Au", + "SLG | Zn0.8Sn0.2O1.2 | Perovskite | Spiro-MeOTAD | Au", + "SLG | Zn0.9Sn0.1O1.10 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ZnO | ITO | Ag-nw | ITO | ZnO-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | ZnO | Perovskite | Spiro-MeOTAD | Au", + "SLG | ZnO0.95Sn0.05O1.05 | Perovskite | Spiro-MeOTAD | Au", + "SLG | ZrO2 | MPTMS-SMA | Ag | MUTAB-SAM | PCBM-60 | Perovskite | PTAA | Ag", + "SLG | rGO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLG | rGO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "SLG | resist | ITO | PEDOT:PSS | Perovskite | PCBM-60 | ZnO-np | Al", + "SLG\uff5cFTO | TiO2-np | Perovskite | Tea Catachinrich biomolecules | Ag | FTO", + "SLNOA63 | CPI | Cr | Au-grid | EG-PEDOT:PSS | Ti | SnO2-c | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "SLS | FTO | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "SU-8 | Ca | Au | PEDOT:PSS | Perovskite | PCBM-60 | Ca | Ag", + "SU-8 | MoO3 | Au | PEDOT:PSS | Perovskite | PCBM-60 | Ca | Ag", + "Si | MgO | SrRuO3 | SrRuO3 | Perovskite | ITO", + "SiO2 | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | AgAl", + "SiO2-hollow | SLG | ITO | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "SiO2-mp | SLG | ITO | TiO2-np | Perovskite | Spiro-MeOTAD | Au", + "Silk | Ag-nw | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Ag", + "SrTiO3 | Sr2RuO4 | Perovskite | ITO", + "Stainless steel | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Carbon-nt", + "Steel | ZnO-c | ZnO-nw | Perovskite | Spiro-MeOTAD | Carbon-nt", + "Textile | PEN | ITO | Au | Spiro-MeOTAD | Perovskite | PCBM-60 | SnO2-c | ITO | PEN", + "Textile | PEN | ITO | Au | Spiro-MeOTAD | Perovskite | SnO2-c | ITO | PEN", + "Ti | TiO2-c | Perovskite | PTAA | Graphene | PDMS", + "Ti | TiO2-c | Perovskite | Spiro-MeOTAD | Ag", + "Ti | TiO2-c | Perovskite | Spiro-MeOTAD | MoOx | Ag | MoOx", + "Ti | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag-np | ITO", + "Ti | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag-nw", + "Ti | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | ITO", + "Ti | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "Ti | TiO2-np | Perovskite | PEDOT | ITO | PEN", + "Ti | TiO2-nt | Perovskite | Spiro-MeOTAD | Au", + "Ti | TiO2-nw | Perovskite | PEDOT | ITO | PEN", + "Ti | TiO2-nw | TiO2-np | Perovskite | Carbon-nt | Ag", + "Ti-foil | TiO2-c | Al2O3-mp | Perovskite | Spiro-MeOTAD | PEDOT:PSS | TCA | PET:Ni-mesh", + "Ti-foil | TiO2-c | Perovskite | Spiro-MeOTAD | Cu | Au", + "Ti-foil | TiO2-nt | Perovskite | Ag", + "Ti-foil | TiO2-nt | Perovskite | Spiro-MeOTAD | Carbon-nt", + "Ti-wire | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au-np", + "Ti-wire | TiO2-c | TiO2-np | Perovskite | Spiro-MeOTAD | Au | Au-wire", + "Ti-wire | TiO2-c | TiO2-nw | Perovskite | Carbon-nw", + "Ti-wire | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag-nw", + "Ti-wire | TiO2-nt | Perovskite | Spiro-MeOTAD | Carbon-nt", + "Transparent wood | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "Unknown", + "Unknown | Perovskite | Unknown", + "Willow glass | AZO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "Willow glass | AZO | SnO2-np | Perovskite | Spiro-MeOTAD | MoOx | Al", + "Willow glass | Graphene | Ag-nw | PEDOT:PSS | PEDOT:PSS | Perovskite | PCBM-60 | Al", + "Willow glass | ITO | PTAA | Perovskite | C60 | BCP | Cu", + "Willow glass | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "Willow glass | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | Au", + "Willow glass | ITO | ZnO-c | Perovskite | Spiro-MeOTAD | Au | PDMS Nanocone", + "Willow glass | IZO | SnO2-np | Perovskite | Spiro-MeOTAD | MoO3 | Al", + "Willow glass | Ti | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | MoO3 | IZO", + "Y2O3:Eu3 | Au-np | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "Y2O3:Eu3 | SLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au", + "ZnSe-QDs | SLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au", + "b-CNF | IZO | PEDOT:PSS | Perovskite | PCBM-60 | Ag" + ] + } + } + ] + }, + "name": "stack_sequence", + "description": "The stack sequence describing the cell. Use the following formatting guidelines\n- Start with the substrate to the left and list the materials in each layer of the device\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- The perovskite layer is stated as \u201cPerovskite\u201d, regardless of composition, mixtures, dimensionality etc. There are plenty of other fields specifically targeting the perovskite.\n- If a material is doped, or have an additive, state the pure material here and specify the doping in the columns specifically targeting the doping of those layers.\n- There is no sharp well-defined boundary between a when a material is best considered as doped to when it is best considered as a mixture of two materials. When in doubt if your material is doped or a mixture, use the notation that best capture the metaphysical essence of the situation\n- Use common abbreviations when possible but spell it out when there is risk for confusion. For consistency, please pay attention to the abbreviation specified under the headline Abbreviations found earlier in this document.\n- There are several thousand stack sequences described in the literature. Try to find your one in the list of alternatives in the data template. If it is not there (i.e. you may have done something new) define a new stack sequence according to the instructions.\nExampleBelow are the 16 most common device stacks which represent close to half of all reported devices.\nSLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Au\nSLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Au\nSLG | FTO | TiO2-c | TiO2-mp | Perovskite | Spiro-MeOTAD | Ag\nSLG | FTO | TiO2-c | Perovskite | Spiro-MeOTAD | Ag\nSLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Al\nSLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | BCP | Ag\nSLG | ITO | PEDOT:PSS | Perovskite | PCBM-60 | Ag\nSLG | FTO | TiO2-c | TiO2-mp | Perovskite | Carbon\nSLG | FTO | TiO2-c | TiO2-mp | ZrO2-mp | Perovskite | Carbon\nSLG | FTO | SnO2-c | Perovskite | Spiro-MeOTAD | Au\nSLG | ITO | SnO2-np | Perovskite | Spiro-MeOTAD | Au\nSLG | ITO | PEDOT:PSS | Perovskite | C60 | BCP | Ag\nSLG | ITO | TiO2-c | Perovskite | Spiro-MeOTAD | Au\nSLG | FTO | TiO2-c | TiO2-mp | Perovskite | PTAA | Au\nSLG | FTO | SnO2-np | Perovskite | Spiro-MeOTAD | Au\nSLG | ITO | NiO-c | Perovskite | PCBM-60 | BCP | Ag", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "area_total", + "description": "The total cell area in cm2. The total area is defined as the area that would provide photovoltaic performance when illuminated without any shading, i.e. in practice the geometric overlap between the top and bottom contact.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "area_measured", + "description": "The effective area of the cell during IV and stability measurements under illumination. If measured with a mask, this corresponds to the area of the hole in the mask. Otherwise this area is the same as the total cell area.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "number_of_cells_per_substrate", + "description": "The number of individual solar cells, or pixels, on the substrate on which the reported cell is made", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "Pn-Heterojunction", + "Front contacted", + "Back contacted", + "pin", + "nip", + "Schottky" + ] + } + } + ] + }, + "name": "architecture", + "description": "The cell architecture with respect to the direction of current flow and the order in which layers are deposited. The two most common are nip (also referred to as normal) and pin (also referred to as inverted) but there are also a few others, e.g. Back contacted\n- nip architecture means that the electrons are collected at the substrate side. The typical example is when a TiO2 electron selective contact is deposited between the perovskite and the substrate (e.g. SLG | FTO | TiO2-c |Perovskite | \u2026)\n- pin architecture means that it instead is the holes that are collected at the substrate side. The typical example is when a PEDOT:PSS hole selective contact is deposited between the perovskite and the substrate (e.g. SLG | FTO | PEDOT:PSS |Perovskite | \u2026)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "flexible", + "description": "TRUE if the cell flexible and bendable.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "flexible_min_bending_radius", + "description": "The maximum bending radius possible without degrading the cells performance", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "semitransparent", + "description": "TRUE if the cell is semi-transparent, which usually is the case when there are no thick completely covering metal electrodes.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "semitransparent_AVT", + "description": "The average visible transmittance in the wavelength range stated in the next field", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "nan; nan", + "800; 1200" + ] + } + } + ] + }, + "name": "semitransparent_wavelength_range", + "description": "the wavelength range under which the average visible transmittance is determined\nExample:\n400; 720\n350; 770", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "semitransparent_raw_data", + "description": "A link to where the data file for the measurement is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for stability data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Module", + "description": "Specific section containing information if the reported device is a module.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "Module", + "description": "TRUE if the cell is a module composed of connected individual sub cells", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "number_of_cells_in_module", + "description": "The number of cells in the module", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "area_total", + "description": "The total area of the module in cm2. This includes scribes, contacts, boundaries, etc. and represent the module\u2019s geometrical footprint.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "area_effective", + "description": "The active area of the module in cm2.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "JV_data_recalculated_per_cell", + "description": "The preferred way to report IV data for modules is to recalculate the IV data to average data per sub-cells in the module. That simplifies downstream comparisons, and it ensures that there is no erroneous transformation that otherwise may occur when error checking the IV data. Mark this as TRUE if the conversation is done.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Substrate", + "description": "Information about the substrate used in the device. It describes the `substrate stack sequence`, the `substrate area`, the `substrate thickness`, and its provenance or fabrication method.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "42P2O5-22Li2O-22ZnO-12Sm2O3-2CeO2 | FTO", + "Ag-nw; GFRHybrimer; ITO", + "Ag-nw; Graphene; Polycarbonate; Polystyrene", + "Au | Ni | Al | Ti | GaN", + "Carbon-nt-fiber", + "Carbon-nt-yarn", + "Cellophane | TiO2 | Ag | TiO2", + "Cellophane | TiO2-c | Ag", + "Cellulose paper | Carbon black", + "Cu", + "Cu-nw; GFRHybrimer; ITO", + "Epoxy | ITO", + "FPA-PDMS", + "Flexible | IZO", + "Foil | AZO", + "Graphite", + "HCLaminate | IZO", + "INVAR | ITO", + "ITO | PEN", + "ITO | PET", + "Mica | ITO", + "NOA63", + "NOA63 | Au", + "NOA63 | ITO", + "NOA63 | MoO3 | Au", + "NOA88 | PEI | Au", + "Nanopaper | TiO2 | Ag", + "Nb:SrTiO3", + "PAA-PEG | Ti", + "PAA-PEG | Ti | PANI | Ti", + "PDMS", + "PDMS | Graphene", + "PDMS | PET", + "PDMS | PET | Au-grid", + "PDMS | SLG | ITO", + "PEG | ITO", + "PEI | ITO", + "PEN", + "PEN | AZO", + "PEN | Ag-grid", + "PEN | Ag-nw", + "PEN | FTO", + "PEN | Graphene", + "PEN | Graphene | MoO3", + "PEN | Graphene; MoO3", + "PEN | ITO", + "PEN | Planarization | SiN | ITO", + "PEN | SWCNTs | MoO3", + "PES | AZO | Ag-nw | AZO", + "PES | AZO | CuNW | AZO", + "PES | FTO", + "PES | ITO", + "PES | PEDOT:PSS | Ag", + "PES | Ti | Graphene", + "PET", + "PET | APTES | AuCl3; Graphene", + "PET | APTES; Graphene", + "PET | AZO", + "PET | AZO | Ag | AZO", + "PET | Ag", + "PET | Ag-grid", + "PET | Ag-grid | PEDOT:PSS", + "PET | Ag-mesh | PH1000", + "PET | Ag-mesh:PH1000", + "PET | Ag-nw", + "PET | Ag-nw | FZO", + "PET | Ag-nw | Graphene", + "PET | Ag-nw; Graphene oxide", + "PET | Ag-nw; PEDOT:PSS", + "PET | Al2O3", + "PET | Au", + "PET | Au-np; Graphene; TFSA", + "PET | AuCl3; Graphene", + "PET | FTO", + "PET | Graphene", + "PET | Graphene; TETA", + "PET | ITO", + "PET | ITO | Ag-nw", + "PET | IWO", + "PET | IZO", + "PET | In2O3", + "PET | MSA-PEDOT:PSS", + "PET | Ni-mesh:PH1000", + "PET | PEDOT:PSS", + "PET | PEDOT:PSS | Ag-nw", + "PET | SWCNTs", + "PET | TCE", + "PET | WO3 | Ag | WO3", + "PETUG", + "PI", + "PI | Ag-np | PEDOT:PSS", + "PI | Cu-grid | Graphene", + "PI | PEDOT:PSS", + "PS", + "Paper | Au", + "Polyester-satin textile", + "Polyimide | ITO", + "Polyimide | In2O3:H", + "Pt", + "Quartz | Graphene", + "Quartz | ITO", + "Quartz | TaN", + "Regenerated cellulose film | Ag-nw", + "SLG", + "SLG | APTES; Graphene", + "SLG | AZO", + "SLG | AZO | Ag-nw | AZO", + "SLG | AZO | Au | AZO", + "SLG | AZO | Cu-nw | AZO", + "SLG | AZO:F", + "SLG | Ag", + "SLG | Ag | Unknown", + "SLG | Ag-nw", + "SLG | Ag-nw | AZO", + "SLG | Ag-nw | Graphene", + "SLG | Ag-nw | Graphene oxide", + "SLG | Ag-nw; Graphene oxide", + "SLG | Au", + "SLG | Au-grid | AZO", + "SLG | Au-np; Graphene", + "SLG | Au-np; Graphene; TFSA", + "SLG | Cd2SnO4", + "SLG | Cu", + "SLG | Cu-BHT", + "SLG | Cu-nw", + "SLG | DWCNTs", + "SLG | FAZO", + "SLG | FGZO", + "SLG | FTO", + "SLG | FTO | Au-grid", + "SLG | Graphene", + "SLG | Graphene | MoO3", + "SLG | Graphene; TFSA", + "SLG | ITO", + "SLG | ITO | Au-grid | AZO", + "SLG | ITO | Au-grid | ITO", + "SLG | ITO | ITO", + "SLG | ITO | Ni", + "SLG | ITO-HMDS Scaffold", + "SLG | ITO:ATO", + "SLG | IWO", + "SLG | IZO", + "SLG | In2O3:H", + "SLG | MPTMS-SMA | Ag | MUTAB-SAM", + "SLG | MSA-PEDOT:PSS", + "SLG | Ni", + "SLG | Ni:Au-mesh", + "SLG | PEDOT:PSS", + "SLG | PEDOT:PSS | Ag | PEI", + "SLG | PEI | Au", + "SLG | PET", + "SLG | SU-8 | MoO3 | Au", + "SLG | SWCNTs", + "SLG | SWCNTs | MoO3", + "SLG | SWCNTs-HNO3", + "SLG | SnO2 | SiO2 | FTO", + "SLG | TCO", + "SLG | Ti", + "SLG | TiO2-c | Ag", + "SLG | TiO2-c | SnO2-c | TiO2-c | SnO2-c | TiO2-c | SnO2-c | TiO2-c | SnO2-c | TiO2-c | ITO", + "SLG | WO3 | Ag", + "SLG | WO3 | Ag | WO3", + "SLG | ZnO | ITO | Ag-nw | ITO", + "SLG | ZrO2 | MPTMS-SMA | Ag | MUTAB-SAM", + "SLG | rGO", + "SLG | resist | ITO", + "SLG-HAMC-patterned | FTO", + "SLNOA63 | CPI | Cr | Au-grid", + "SU-8 | Ca | Au", + "SU-8 | MoO3 | Au", + "Si", + "Si | ITO", + "Si | SiO2", + "SiO2-hollow | SLG | ITO", + "SiO2-mp | SLG | ITO", + "Silk | Ag-nw | PEDOT:PSS", + "SrTiO3 | Sr2RuO4", + "Stainless steel", + "Steel", + "Textile | PEN | ITO", + "Ti", + "Ti-foil", + "Ti-sheet", + "Ti-wire", + "Transparent wood | ITO", + "Unknown", + "Unknown | ITO", + "Willow glas | Ti", + "Willow glass | AZO", + "Willow glass | Graphene | Ag-nw", + "Willow glass | ITO", + "Willow glass | IZO", + "b-CNF | IZO", + "none" + ] + } + } + ] + }, + "name": "stack_sequence", + "description": "The stack sequence describing the substrate.\n- With the substrate, we refer to any layer below the electron transport layer in a nip-device, and any layer below the hole transport layer in a pin-device.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- Use common abbreviations when appropriate but spell it out if risk for confusion.\n- There are a lot of stack sequences described in the literature. Try to find your one in the list. If it is not there (i.e. you may have done something new) define a new stack sequence according to the instructions.\nExampleBelow are some of the most common substrates\nSLG | FTO\nSLG | ITO\nPET | ITO\nPEN | ITO\nSLG | AZO\nPET | IZO", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "nan | 140.0", + "2.0 | 0.0004", + "nan | 0.4", + "3.0", + "0.03 | 0.00015 | 2.0", + "nan | 332.0", + "nan | 35.0 | nan | 35.0", + "2.0 | 0.06", + "nan | 100.0", + "0.15", + "398.0", + "nan | 500.0", + "nan | 0.2", + "nan | 0.6", + "nan | 0.1", + "2.2 | nan", + "nan | 180.0", + "nan | nan", + "1.0 | 0.14", + "2.2 | 0.2", + "3.0 | nan", + "2.0", + "nan | 220.0", + "nan | 0.5", + "nan | 0.13", + "nan | 0.22", + "150.0", + "nan | 60.0", + "200.0", + "nan | 0.15", + "nan | 0.25", + "1.0 | 0.15", + "nan | 0.04", + "0.175 | 0.0025", + "2.2", + "1.0 | 0.13", + "2.0 | 0.6", + "nan | 40.0" + ] + } + } + ] + }, + "name": "thickness", + "description": "A list of thicknesses of the individual layers in the stack. Use the following guidelines\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous filed.\n- State thicknesses in nm\n- Every layer in the stack have a thickness. If it is unknown, state this as \u2018nan\u2019\n- If there are uncertainties, state the best estimate, e.g write 100 and not 90-110\n- If you only know the total thickness, e.g. you have a 2 mm thick commercial FTO substrate and you do not know how thick the FTO layer is, state that as \u20182 | nan\u2019\nExample\n2.2 | 0.1\n2 | nan\nnan | nan | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "area", + "description": "The total area in cm2 of the substrate over which the perovskite is deposited. This may be significantly larger than the cell area", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "AimCore Technology", + "Lumtec", + "Yingkou OPV Tech New Energy Co.", + "Sigma Aldrich", + "Yingkou YouXuan", + "Unknown", + "Automatic Research GmbH", + "Xiang Science & Technology", + "Solaronix", + "OPV Technology Corp", + "Furuuchi Chemical", + "Thin Film Devices Inc.", + "Mekoprint OC50", + "Luminiscence Technology Corporation", + "Naranjo", + "Lab made", + "CSG Holding Co", + "Eastman Chemical Company", + "Naranjo substrates", + "Nippon Sheet Glass Co.", + "Pilkington", + "Advanced Election Technology", + "Kintec", + "Shen Zhen Hua Nan Xiang Cheng Factory", + "Hartford Glass Co.", + "3M", + "HeptaChroma", + "Merck", + "Delta Technologies", + "Ossila", + "AMG-Tech", + "Greatcell Solar", + "Xinyan Technology", + "Zhuhai Kaivo" + ] + } + } + ] + }, + "name": "supplier", + "description": ". The supplier of the substrate.\n- Most substrates in the perovskite field are bought commercially, but if it is made in the lab, state this as \u201clab made\u201d\n- If the supplier is unknown, stat that as\u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nLab made\nNGO\nPilkington", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "TCO-XY15", + "Unknown", + "TEC15", + "TEC8", + "TEC14", + "Trizact 3000", + "FTO22-7", + "TEC7", + "TEC7.5", + "NSG10", + "DHS-FTO22-15N", + "TEC9", + "TCO22-7", + "TECS" + ] + } + } + ] + }, + "name": "brand_name", + "description": ". The specific brand name of the substrate. e.g NGO11, TEC15, etc.\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Commercial | Commercial", + "Commercial | Electrodeposition >> Spin-coating", + "Commercial | Sputtering", + "Commercial | Electrospinning", + "Unknown", + "Commercial | Sputtering >> Sputtering", + "Commercial | commercial", + "Spin-coating | Commercial", + "Photolithography | Spin-coating | Lamination", + "Commercial | Laser patterning >> Spin-coating", + "Commercial | Spin-coating", + "CVD", + "Commercial | Magnetron sputtering", + "Commercial | ALD | Doctor blading | ALD" + ] + } + } + ] + }, + "name": "deposition_procedure", + "description": ". A list of the deposition procedures for the substrate\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- Make sure that you describe as many layers as there are layers in the stack. Otherwise it will be difficult to interpret which layer the deposition procedure is referring to. It should thus be as many vertical bars in this field as when describing the substrate stack.\n- When more than one reaction step, separate them by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the deposition procedure for a layer unknown, state that as\u2018Unknown\u2019\n- If a substrate is bought commercially and you do not know, indicate this by the label \u201cCommercial\u201d\n- This category was included after the initial project release wherefor the list of reported purities are short, so be prepared to expand on the given list of alternatives in the extraction protocol.\nExample\nCommercial | Commercial\nCommercial | Sputtered >> Sputtered\nCommercial | ALD", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "surface_roughness_rms", + "description": "The root mean square value (RMS) of the surface roughness expressed in nm\n- If not known, leave this field blank", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "nanometer" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Unknown", + "Photolithography", + "Dipping in HCl", + "Laser etching", + "Zn-powder; HCl >> Mecanical scrubbing" + ] + } + } + ] + }, + "name": "etching_procedure", + "description": ". For the most common substrates, i.e. FTO and ITO it is common that part of the conductive layer is removed before perovskite deposition. State the method by which it was removed\n- If there is more than one cleaning step involved, separate the steps by a double forward angel bracket (\u2018 >> \u2018)\n- This category was included after the initial project release wherefor the list of reported purities are short, so be prepared to expand on the given list of alternatives in the extraction protocol.\nExample\nZn-powder; HCl >> Mecanical scrubbing\nLaser etching", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "2.5 M NaOH >> Ultrasonic bath >> Water >> Detergent >> Milli-Q Water >> Annealed 30 min at 500\u2103", + "Acetone >> IPA >> O2 plasma", + "Acetone >> IPA >> Water", + "Acetone >> Ultrasonic bath >> Abs Ethanol >> Ultrasonic bath >> DI Water", + "Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Water >> Ultrasonic bath", + "Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Water >> Ultrasonic bath >> UV-Ozone", + "Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath", + "Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> Drying in oven >> UV-Ozone", + "Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> Ethanol >> UV-Ozone", + "Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> Ethanol >> Ultrasonic bath", + "Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> O2-plasma", + "Acetone >> Ultrasonic bath >> Isopropyl alcohol >> Ultrasonic bath >> de-ionized Water", + "Acetone >> Ultrasonic bath >> Methanol >> Ultrasonic bath", + "Acetone >> Ultrasonic bath >> Methanol >> Ultrasonic bath >> DI Water", + "Acetone >> Ultrasonic bath >> Methanol >> Ultrasonic bath >> Water", + "Acetone >> Ultrasonic bath >> Methanol >> Ultrasonic bath >> Water >> Ultrasonic bath", + "Acetone >> Water >> IPA >> Nitrogen flow", + "Acetone >> Water >> IPA >> Nitrogen flow >> Corona Treatment 0.74 kW", + "DI Water >> Ethyl alcohol >> Acetone", + "DI Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath", + "DI Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> UV-Ozone", + "DI Water >> Ultrasonic bath >> Ethanol", + "DI Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> UV-Ozone", + "DI Water >> Ultrasonic bath >> Helmanex >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Methanol >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> UV-Ozone", + "DIWater >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> UV-Ozone", + "DIWater >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Oven drying >> UV-Ozone", + "De-ionized Water >> Ultrasonic bath >> Soap >> Ultrasonic bath >> IPA >> Ultrasonic bath", + "Detergent >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> >> DI-Water >> Ultrasonic bath >> UV-Ozone", + "Detergent >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath", + "Detergent >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> UV-Ozone", + "Detergent >> Ultrasonic bath >> DI-Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> UV-Ozone", + "Detergent >> Ultrasonic bath >> DI-Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> air plasma", + "Detergent >> Ultrasonic bath >> alkali liquor >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath", + "Extran 300 >> Ultrasonic bath >> IPA", + "H2O2/HCl/H2O = 1:1:5 >> acetone >> isopropyl alcohol", + "Hellmanex >> solution >> DI >> water >> acetone >> IPA", + "Helmanex >> Acetone >> IPA >> O2-plasma", + "Helmanex >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> O2 plasma", + "Helmanex >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> UV-Ozone", + "Helmanex >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath", + "Helmanex >> Ultrasonic bath >> DI Water >> Ethanol >> 2-propanol >> Ultrasonic bath", + "Helmanex >> Ultrasonic bath >> DI Water >> Ultrasonic bath", + "Helmanex >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> IPA >> Ultrasonic bath", + "Helmanex >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> O2 plasma", + "Helmanex >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> UV-Ozone", + "Helmanex >> Ultrasonic bath >> Ethanol >> Acetone", + "Helmanex >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> DI Water", + "Helmanex >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> UV-Ozone", + "Helmanex >> Ultrasonic bath >> IPA >> Ultrasonic bath >> Acetone >> UV-Ozone", + "Helmanex >> Ultrasonic bath >> Water >> IPA >> Ultrasonic bath >> Acetone >> microwave plasma", + "Helmanex >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> UV-Ozone", + "Helmanex >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethanol", + "Helmanex >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath", + "Helmanex >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> UV-Ozone", + "Micro-90 detergent >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath", + "Mucasol >> Ultrasonic bath >> Acetone >> Utrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> Ozone", + "Mucasol >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Water >> Ultrasonic bath", + "Mucasol >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> IPA >> UV-Ozone", + "NaOH >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> DI Water >> Acetone", + "NaOH Ethanolic solution >> Water >> detergent >> Water >> Dry air", + "Oxygen plasma", + "Soap >> Acetone >> Ethanol >> Water >> UV-Ozone", + "Soap >> Acetone >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethanol >> O2-plasma", + "Soap >> DIWater >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> N2 blowing >> UV-Ozone", + "Soap >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol", + "Soap >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> DI Water", + "Soap >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> DI Water >> Ultrasonic bath >> Plasma", + "Soap >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> Water >> Ultrasonic bath >> O2-plasma", + "Soap >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> Plasma", + "Soap >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> UV-Ozone", + "Soap >> Ultrasonic bath >> Ethanol-HCl >> Ultrasonic bath >> Acetone >> Water >> Heating", + "Soap >> Ultrasonic bath >> UV-Ozone", + "Soap >> Ultrasonic bath >> Water", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Plasma", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> O2-plasma", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> Plasma", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> UV-Ozone", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethanol >> Utrasonic bath >> UV-Ozone", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethano >> Ultrasonic bath >> UV-Ozone", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethanol >> UV-Ozone", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> O2-plasma", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> UV-Ozone", + "Soap >> Ultrasonic bath >> Water >> Ultrasonic bath >> IPA >> UV-Ozone", + "Soap >> Ultrasonic bath >> de-ionized Water >> Ultrasonic bath >> Acetone >> UV-Ozone >> Ethanol >> UV-Ozone", + "Soap >> Water >> Acetone >> IPA >> Ethanol >> Water >> UV-Ozone", + "Soap >> Water >> Acetone >> IPA >> UV-Ozone", + "Soap >> Water >> Acetone >> Water", + "Soap >> Water >> Ethanol", + "Soap >> Water >> Toluene >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> O2-plasma", + "Soap >> Water >> Ultrasonic bath >> Acetone >> Ethanol >> Ultrasonic bath >> IPA >> UV-Ozone", + "Soap >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol", + "Soap >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> IPA >> UV-Ozone", + "Soap >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> O2-plasma", + "Soap >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA", + "Soap >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> O2-plasma", + "Soap >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> UV-Ozone", + "Soap >> Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> lPA >> >> Ethanol >> O2-plasma", + "Soap >> Water >> Ultrasonic bath >> Acetone; IPA; Ethanol >> UV-Ozone", + "Soap >> Water >> Ultrasonic bath >> Ethanol", + "Soap >> Water >> Ultrasonic bath >> Ethanol >> O2-plasma", + "Soap >> Water >> Ultrasonic bath >> Ethanol >> UV-Ozone", + "Soap >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> UV-Ozone", + "Soap >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> IPA", + "Soap >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> IPA >> O2-plasma", + "Soap >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> IPA >> UV-Ozone", + "Soap >> Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> lPA;Acetone; Water >> Ultrasonic bath >> UV Ozone", + "Soap >> Water >> Ultrasonic bath >> IPA >> O2-plasma", + "Soap >> peroxide/ammonia >> Ultrasonic bath >> Methanol >> Ultrasonic bath >> IPA >> UV-Ozone", + "Toluene >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Water >> Ultrasonic bath", + "UV-Ozone", + "Unknown", + "Unknown >> O2 plasma", + "Unknown >> UV-Ozone", + "Water >> Acetone >> Ethanol >> IPA", + "Water >> Acetone >> Ethanol >> UV-Ozone", + "Water >> Acetone >> IPA", + "Water >> Acetone >> IPA >> O2-plasma", + "Water >> Acetone >> IPA >> UV-Ozone", + "Water >> Ethanol >> IPA", + "Water >> Ultrasonic bath >> Acetone >> Ultrasonic bath >> IPA >> Ultrasonic bath >> UV-Ozone", + "Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone", + "Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> UV-Ozone", + "Water >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> heating >> UV-Ozone", + "Water >> Ultrasonic bath >> IPA >> Ultrasonic bath >> O2-plasma", + "alconox-detergent >> Ultrasonic bath >> deionized water >> Ultrasonic bath >> acetone >> Ultrasonic bath >> isopropanol >> Ultrasonic bath", + "detergent >> acetone >> isopropanol >> ethanol", + "detergent >> deionized water >> isopropanol >> acetone >> UV-Ozone" + ] + } + } + ] + }, + "name": "cleaning_procedure", + "description": ". The schematic cleaning sequence of the substrate. The Extraction protocol does not capture the fine details in the cleaning procedures, e.g. times, temperatures, etc. but state the general sequence. Refers to the cleaning of the entire substrate before the deposition of the rest of the cell stack starts.\n- If there is more than one cleaning step involved, separate the steps by a double forward angel bracket (\u2018 >> \u2018)\n- If more than one procedure is occurring simultaneously, e.g. Soap washing an ultrasonic bath, separate simultaneously occurring steps with a semicolon.\n- This category was included after the initial project release wherefor the list of reported purities are short, so be prepared to expand on the given list of alternatives in the extraction protocol.\nExample\nHelmanex >> Ultrasonic bath >> Ethanol >> Ultrasonic bath >> Acetone >> UV-ozone\nPiranha solutionion\nPiranha solutionion >> UV-ozone\nSoap\nSoap >> Ultrasonic bath\nSoap >> Ultrasonic bath >> Ethanol; Ultrasonic bath >> Acetone >> UV-ozone\nSoap >> Ultrasonic bath >> UV-ozone\nUnknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "ETL", + "description": "A section to describe information related to the Electron Transport Layer (**ETL**).", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "3TPYMB", + "PCBM-60; ICBA", + "SnO2 | C60", + "SnO2-np | MSAPBS", + "TiO2-c | TiO2-mp | PbS-QDs", + "ZTO | SnO2-c | C60", + "TmPyPB | C60 | TmPyPB", + "CeOx", + "TiO2-c | TiO2-np | TiO2-mp", + "TiO2-c | TiO2-mp | CsBr", + "PCBM-60 | CeOx", + "C60; PCBM-60 | BCP", + "ZTO | SnO2-c | PCBM-60", + "SnO2-c | C60", + "TiO2-c | TiO2-nw | CdS", + "TiO2-c | TiO2-mp | NH4I", + "SnO2-c | C60-5d", + "NDI-PhE", + "PCBM-60 | Zr(acac)4", + "PCBM-70 | C60 | AUH", + "SnO2", + "2PDI-0S | PEIE", + "PCBM-60 | TiO2-np", + "PCBM-60 | DEME-BF4", + "ZnO-np | p-(F)-PO-TAZ", + "TiO2-c | TiO2-mp | Sinapoyl malate", + "Cyptop | PCBM-60 | BCP", + "PCTDI", + "PCBM-60 | PPDIN6", + "FA-PDI2 | TiO2-c", + "SnO2-mp | TiO2-c", + "ZnO0.95Sn0.05O1.05", + "ZnO | PEIE", + "a-PTCDI", + "SnO2-np | TiO2-c", + "TiO2-c | SiO2-np; TiO2-mp", + "TiO2-c | TiO2-mp | NaYF2@SiO2-np", + "MoS2", + "PCBM-63", + "TiO2-c | Al2O3-c", + "SnO2-np | PbF2", + "PCBM-60 | DPO", + "PEG; SnO2-np", + "SnO2-np | BBA", + "ZnO0.9Sn0.1O1.1", + "PCBM-60 | BCP | AZO", + "TiO2-c | Ce2O-mp", + "S-acetylthiocholine chlorde | C60 | BCP", + "TiO2-c | TiO2-mp | D205", + "Ti(OiPr)4", + "PCB-C8", + "WO3", + "PCBM-60 | AZO-np | BCP", + "TiO2-c | In2O3", + "FDA | PCBM-70", + "AZO | ZnO-nw", + "PCBM-60 | BCP; TZ-1", + "SnO2-c | Au | SnO2-c | TiO2-mp", + "TiO2-c | TiO2-mp | BaTiO3", + "TiO2-c | TiO2-mp | Caproic acid", + "SnO2-np | EPA", + "SnO2-np | C60-SAM", + "PTAA", + "SnO2-np; ZnO-np", + "ICBA", + "TiO2-c | TiO2-mp | Sb2S3", + "TPE-ISO4 | C60 | BCP", + "NDI-ID (RS)", + "IDTT2FPDI", + "SrTiO3-c | SrTiO3-mp", + "ZnO | 1,2-ethanedithiol (10 mM)", + "C60; C70", + "PCBM-60 | Isopropanol-hydroquinolatolithium", + "TiO2-c | MgO | TiO2-nw", + "PN-F25", + "PbI2", + "TiO2-c | WOx", + "TiO2-c | BaSnO3-mp", + "TiO2-c | MPMIC60", + "ZnO0.75Sn0.25O1.25", + "SnO2-c | NPC60 OH", + "PCBM-60 | C3-CBL", + "TiO2-c | TiO2-mp | ZrO2@TiO2-mp", + "ICBA-tran3 | C60 | BCP", + "TiO2-c | H3PW12O4; TiO2-mp", + "LiF | C60 | TmPyPB", + "TiO2-c | SiO2", + "MgO | TiO2-mp", + "C60 | Rhodamine 101", + "PCBM-60; PDI-DA | BCP", + "ZTO | TiO2-mp | ZrO2-mp", + "PCBM-60 | PDINO", + "C60 | PCBM-60", + "TiO2-c | SnO2@TiO2-np", + "PDI-T | C60 | BCP", + "NDI-BTH1", + "PCBM-60 | Rodhamine 101", + "Ba(OH)2", + "KY7F22-np", + "F8TBT", + "PCBM-60 | CMB-vTA", + "TiO2-nt", + "PCBB-S-N | PCBM-60", + "TiO2-nanobundles", + "PCB-C12", + "TiO2-c | SnO2-c | TiO2-mp | ZrO2-mp", + "TiO2-c | ZnSe", + "SnO2-c | TiO2-np", + "ZnO-c | PCBM-70", + "TiO2-c | OTS", + "TiO2-mp | Z907", + "TiO2-c | CsCl", + "PSe-PDI", + "Zn2SnO4-c", + "PCBM-60 | PCBC", + "ITCPTC-Se | C60 | BCP", + "TiO2-nanoplatelets", + "PTEG-1", + "WOx | SnO2-np", + "IDTCN | C60 | BCP", + "Zn2SnO4", + "Mono-PCBOE | ZnO", + "TiO2-c | TiO2-nanocones", + "TiO2-c | PCBDAN", + "HATNAS3C7", + "F-PDI | ZnO-np", + "PCBM-60 | PCBDAN", + "PCBM-60; PEI", + "CdSe | LiF", + "TiO2-nw | CuInS2-QDs", + "PCBM-70", + "ZnO-nw | ZnO-c", + "TMTA | PCBM-60 | C60 | TPBi", + "PNDI-2T | PEIE", + "Graphene oxide; TiO2-np", + "TiO2-c | Benzoic acid", + "3TPYMB | C60 | TmPyPB", + "YVO4:Eu | TiO2-c | TiO2-mp", + "SnO2-np | PCBA", + "TiO2-c | ZnO-c | TiO2-mp", + "SnO2-c | PCBM-60-np", + "TiO2-c | WO3", + "TPE-DPP8 | C60 | BCP", + "C60-HPy | BCP", + "SnS2", + "TiO2-c | BaSnO3-np", + "IPH", + "C60 | BCP", + "TiO2-c | TiO2", + "SnO2-c | KCl", + "PCBM-70; PTB7-Th", + "TiO2-c | TiO2-nc", + "SnO2-np | PN4N", + "PCBM-60 | F-C60", + "PS | PCBM-60", + "SnO2-np | ImAcHcl", + "PCBM-60 | ZnMgO", + "Sn2O3-ns | PCBM-60 | Bphen", + "Au-np; TiO2-np | C-PCBOD", + "PCBM-60 | ZnO | PEI", + "PCBM-60 | Bphen; Ir(MDQ)2(acac)", + "PEIE | C60", + "ITCPTC-Se | Rhodamine 101 | LiF", + "SnO2-c | Ba(OH)2", + "TiO2-c | 2-OMe-SAM", + "TMPA-Cl | C60 | BCP", + "ZnO-np | NH4Cl", + "ETM", + "SnO2-c | Al2O3-mp | NiO-np", + "ZnO-np | PFS-FC", + "TiO2-c | Graphene", + "PC61BTh | BCP", + "TiO2-c | Zn2Ti3O8-mp", + "ZnO0.855Sn0.15O1.15", + "Nb2O5 | PCBM-60 | Bphen", + "SnO2-np | Sinapoyl malate", + "ZnOS", + "PCBM-60 | Rhodamine 101 | C60 | BCP | Rhodamine 101 | LiF", + "TiO2-c | TiO2-mp | BaTiO3-mp", + "Phenyltrichlorosilane | PCBM-60", + "ICPA | BCP", + "TiO2-c | ZnO-nanoflake", + "TiO2-c | TiO2-mp | PCBM-60; PS", + "TiO2-c | SiW11O39-POM", + "TiO2-c | SiO2-np | TiO2-c | SiO2-np | TiO2-c", + "TiO2-c | SiO2-np | TiO2-c", + "ZnO-c", + "TiO2-c | D35", + "SnO2-np | PCBA-60", + "ZnO-c | TiO2-mp", + "TiO2-c | TiO2-mp | PCBM-60; PTAA", + "SnO2-c | IDTT2FPDI", + "PCBM-60 | CMB", + "TiO2-c | SiO2-IO", + "TiO2-c | TiO2-mp | Graphene", + "ZnO-c | 4-methoxybenzoic acid", + "ZnO-c | CPTA", + "PCBM-60; Sb-Carbon-nw | BCP", + "ZnO-c | 1,2 ethanedithio", + "TiO2-c | TiO2-mp | 3-aminopropanoic acid-SAM", + "Ca", + "TPE-DPP6 | C60 | BCP", + "SnO2-nw | TiO2-c", + "PCBM-60 | TPPI", + "SnO2-np | KCl", + "P3HT", + "ZnO-c | ZnSO", + "CPTA-E", + "TiO2-c | TiO2-mp | PCBM-60; Poly(N-vinylcarbazole)", + "SnO2-nanosheets | C60", + "TiO2-c | CPTA", + "ZnO", + "ZnO-c | ZnO-mp | PEI", + "TiO2 | Al2O3-mp", + "TiO2-c | Dimethylbiguanide", + "PCBM-60 | AgAl-np | Au-np | LiF", + "TiO2-c | Graphene; SrTiO3", + "f-C70", + "Fe2O3-mp", + "TiO2-c | TiO2-mp | SnO2", + "IDT6CN-TM | BCP", + "PCBM-60 | PFN-P2", + "ZnO-np | EA", + "ZnO-np | ZnO-nanospheres", + "PCBM-60 | Ca(acac)2", + "PCBM-60 | Zn(acac)", + "TiO2-c | TiO2-mp | Carbo-QDs", + "ITO-nw | TiO2-np", + "IZO", + "TiO2-c | TiO2-mp | ZnO-mp", + "PPDIDTT | PCBM-60 | Bphen", + "PDIN", + "ZnSO4-c | ZnSO4-mp", + "TiO2-c | Fullerenol", + "PCBM-60; ICBA | BCP", + "PCBM-60-MCM", + "CMB-vTA | PCBM-60 | AZO", + "SrTiO3 | TiO2-mp", + "nTi-MOF | PCBM-60", + "COi8DFIC | BCP", + "ZnO-np | PEI", + "PEAI | PCBM-60 | BCP | SnO2-c", + "In2O3-c | PCBM-60", + "CeO2-c | TiO2-c", + "H-PDI", + "SnO2-c | TiO2-mp", + "ZnO-c | ZnO-nw | SnO2-c", + "MgO-c | SnO2-c", + "TiO2-c | TiBaO-nanosphere", + "PCBM-60 | TmPyPB", + "TiO2-c | KH560", + "ZnO | 1,2-ethanedithiol (5 mM)", + "4-acetylpyridine | PCBM-60 | BCP", + "TiO2-c | TiO2-mp | Trimethylamine oxide", + "DMEC-70 | LiF", + "TiO2-c | ZnO-nw | AZO-c", + "PEDOT:PSS", + "IT-4f | BCP", + "PCBM-60; PMMA", + "C70", + "PCBM-60 | ZnO-np | AZO", + "PCBM-60 | PCBC | LiF", + "WO3 | TiO2-c", + "TiO2-c | SWCNTs; TiO2-mp", + "LiF", + "TiO2-mp | MgO", + "ZnO-c; Graphene-np", + "Graphene | Al2O3-mp", + "PCMB-60:BCP", + "SnO2-np | C60", + "Graphene-QDs", + "ZnO-c | PVP", + "(RhCp*Cp)2 | PTCBI", + "SnO2-c | ABA-SAM", + "PCBM-70 | C60", + "TiO2-c | TiO2-nanofibers", + "AZO-np", + "IDT6CN | Rhodamine 101 | LiF", + "PCBM-60 | C70 | BCP", + "PCBM-60 | TOPD", + "TiO2-c | TiO2-mp | SbI3", + "SnO2-c | PMMA", + "PCBM-60 | Methanol-hydroquinolatolithium", + "LiF | C60 | PEIE | SnO2-c | ZTO", + "PCBM-60 | PDIN", + "ZnO-c | AZO-np", + "PCBM-60 | ZnO-np | BCP", + "TiO2-mp", + "B-DIPBI", + "NDI; SnO2-np", + "QCAPZ | LiF", + "ZnO-c | ZnO-nw", + "ZnO-c | C3-SAM", + "Carbon-nt | PFN-Br", + "TiO2-c | AAO", + "AgAu-np | TiO2-c", + "TiS2", + "pBTTz", + "PCBM-60-PCP", + "TiO2-c | PCBM-60 | WS-C60", + "TiO2-c | TiO2-mp | Cs2CO3", + "NDI-BTH2", + "SrTiO3 | Al2O3-mp", + "TiO2-c | Polystyrene-ns | TiO2-mp", + "SnO2-nanospheres", + "PCBM-60 | PCBDANI", + "ZnO-c | AZO-mp", + "ZnO-np | PCBM-60", + "NDI-PM", + "C60 | TmTyPB", + "Graphene-np; TiO2-mp", + "TiO2-c | TiO2-mp | Si-np", + "PCBM-62", + "PFPDI", + "PCBM-60 | TiO2", + "TiO2-c | TiO2; Al2O3-mp", + "TiO2-c | TiO2-hollow spheres; TiO2-mp", + "PFN | C60; PCBM-60", + "PCBM-60 | PN4N", + "PCBM-60 | [BMIM]BF4", + "PNVT-8 | ZnO", + "IT4H | s-Bphen", + "TiO2-c | Ba0.9Sr0.1SnO3-np", + "TiO2-c | TiO2-mp | ETPM", + "TiO2-c | TiO2-mp | MBA-SAM", + "SnO2-c | TiO2-c | TiO2-mp", + "PEDOT:PSS | PEI", + "IDTCN | Rhodamine 101 | LiF", + "Carbon-QDs; SnO2-c", + "Q10 | BCP", + "TiO2-mp | Pbs-QDs", + "PCBM-60 | ZnO", + "PDBS-PDI", + "PTTI-1", + "PCBM-70 | BCP", + "ZnO-c | PEI", + "C60 | C60-np", + "TiO2-c | TiO2-mp | Au@Ag", + "C70 | TmPyPB", + "TiO2-mp | MK2", + "TiO2-c | CSOE", + "PDI-V | C60 | BCP", + "PCBM-60 | BCB", + "ZnO | C60", + "TiO2-c | SiO2-nanocolumns | TiO2-nw", + "ZnO@rQD-np", + "Graphene; TiO2-c | Al2O3-mp", + "PEI | ICBA", + "TiO2-np | C60; PCBM-60", + "Polyimid | PCBM-60 | BCP", + "ZnO-c | ZnMgO-c | ZnO-nw | PCBM-60", + "P(NDI2DT-TTCN) | BCP", + "PFN-2TNDI", + "CeOx-np", + "TiO2-c | ZnO-np", + "CeO2-c", + "PCBM-70 | ZrO2", + "Aniline; rGO | CsCO3", + "IDT6CN-4F | BCP", + "TiO2-c | TiO2-mp | Au-np", + "PCBM-60 | TiO2 | BCP", + "SnO2-c | PA-SAM", + "BenMeIM-Cl", + "PEI", + "PCBB-S-N | C60 | BCP", + "TiO2-c | NaYF4:Yb:Er-np", + "PCBM-60 | Phosphoniumfluorene", + "ZnO-c | ZnO-nw | TiO2-np", + "Ti | C60", + "DS1", + "PCBM-60 | Bphen | Cs2CO3", + "TiO2-c | ZnO-nw | Al2O3-c", + "PCBM-60 | Rhodamine 101 | LiF", + "TiO2-c | TiO2; SiO2-IO", + "PCBM-60 | BCP; TZ-2", + "TiO2-c | TiO2-mp | n-dimethyloxamic acid", + "CPTA", + "ZnO-c | Ethyl acetate", + "TDTP | LiF", + "bis-C60", + "PCBM-60 | AZO-np", + "TiO2-c | TiO2-mp | Nb2O5", + "TiO2-mp | ZrO2-mp", + "PCBM-60", + "BPTI | C60 | BCP", + "CdS-np", + "f-C60 | C60", + "PCBM-60 | Bphen | Cs2CO3; MoO3", + "TiO2-c | TiO2-mp | Al2O3", + "SnO2-QDs | PCBM-60", + "PCBM-60 | Carbon-QDs", + "ZnO-c | Urea", + "PEIE | PCBM-60", + "TiO2-c | TiO2-mp | PCBM-60; PMMA | BAI", + "TiO2-c | TiO2-mp | Al203-c", + "Me4NBr | PCBM-60 | BCP", + "PCBM-derivative10", + "In2O3", + "TiO2-c | 60", + "TiO2-c | TiO2-nanowalls", + "PCBB-S-N", + "bis-PCBOE | ZnO", + "EG-PEDOT:PSS | Ti | SnO2-c | TiO2-c", + "TiO2-c | 3-OMe-SAM", + "TiO2-c | TiO2-np", + "PDPT", + "SnO2-c | NiCl2", + "PCBM-60 | FPI-PEIE", + "Zn2SnO4 | Zn2SnO4-nw", + "Carbon-mp | TiO2-mp", + "SnO2-c | C3-SAM", + "PCBM-60 | MoS2", + "TiO2-c | MoOx", + "Mg0.1Zn0.9O-np", + "ICBA; PCBM-60", + "TiO2-c | PCBM-60 | C60-SAM", + "Zn:SnO2", + "TiO2-c | TiO2-mp | PbTiO3", + "PCBM-60; F8BT | C60", + "TiO2-c | CsAc", + "Zn2SnO4-c | rGO; Zn2SnO4-fiber", + "PCBM-60 | C60SB:TBAI", + "SrSnO3", + "TPE-DPP16 | C60 | BCP", + "(DTYM-NDI-DTYA)2 | BCP", + "Polystyrene | C60 | BCP", + "TiO2-nw | TiO2-nw", + "Al2O3-mp", + "TiO2-c | Graphdiyne-QDs", + "Plastic foam | C60 | BCP", + "TiO2-c | TiO2-nanobeads", + "TiO2-c | PCBM-60 | PbI2", + "PCBM-60 | ZnO-np | ZnO-c", + "C60-N", + "NDI-P", + "Al:ITO-c", + "Al2O3-c | TiO2-c | TiO2-mp", + "PN-P", + "TiO2-c | ZnCdS", + "AZO-np | PCBM-60", + "PCBM-60 | BMIM-OTF", + "TiO2-c | TiO2-helices", + "f-C60", + "SnO2-c | Carbon-QDs", + "TiO2-c | TiO2-mp; YVO4:Eu:Bi-np", + "none", + "LiSPS | PCBM-60", + "ZnO-np | Graphene", + "N2200; PFN-Ox | bis-C60", + "ZnO@SnO2-np", + "MgO | SnO2-np | Ethanol amine", + "TiO2-c | TiO2-mp | 4\u2010Aminobenzoic acid", + "Cs2CO3", + "TiO2-c | Si-nw", + "Fullerene @ F2", + "PCBM-60; F8TBT", + "HAT-CN | BCP", + "TiO2-nanoleaves | MgO", + "TiO2-c | C60-BCT", + "TiO2 | SnO2-c | SnO2-np", + "TiO2-nanofibers", + "CdS-c | TiO2-mp", + "CdSe-QDs; PCBM-60 | Rhodamine 101 | LiF", + "ITCPTC-Th | Rhodamine 101 | LiF", + "PCBM-60 | Rhodamine 101 | C60 | Rhodamine 101 | LiF", + "S-acetylthiocholine chloride | C60 | BCP", + "PCBM-60 | AZO-np | SnO2-c", + "ZnO-c | ZnO-c", + "PCBM-60 | Polyethylimine", + "C60; PDI | BCP", + "BrTPA-PCBM | bis-C60", + "BaSnO3-np", + "TiO2-c | TiO2-mp | PhCOOH", + "IC60BA | bis-C60", + "Li4SiW12O40", + "Au@TiO2-np; TiO2-np", + "TiO2-np", + "TiO2-np | PCBM-60 | TiO2-c", + "TiO2-c | TiO2-mp | ZIF-8-40", + "TiO2-c | Al2O3-nt", + "TiO2-c | TiO2-mp | MXene", + "ZnO-np | Sinapoyl malate", + "ZnO-np | MgO-EA", + "2-HI-PVK | PCBM-60 | BCP", + "TiO2-c | 1-OMe-SAM", + "LiF | C60 | SnO2-c", + "TiO2-c | PCBB-2CN-2C8", + "TiO2-c | MCA", + "TiO2-c | TiO2-mp | Y2O3-c", + "PCBH", + "TiO2-np; Nb2O5", + "C60:PhIm | C60", + "TiO2-c | TiO2-mp | C60 | ZrO2-mp", + "PCBCB", + "Carbon | TiO2-mp", + "TiO2-np | PCBM-60", + "TiO2-c | Al2O3-mp", + "C60-SAM", + "TiO2-c | TiO2-nw | N-[3-(Trimethoxysilyl)propyl]ethylenediamine-SAM", + "ZnO-c | ZnO-nw | TiO2-c", + "PbS | PCBM-60", + "SnO2-np | DTPP", + "ZnO | 1,2-ethanedithiol (15 mM)", + "TiO2-c | [EMIM]PF6-IL", + "TTC | C60 | BCP", + "C60 | SnO2-np", + "TiO2-mp | TiO2-c", + "Au-nw | TiO2-c", + "ZnO-nanospheres", + "Nb2O5 | (EMIM)PF6", + "F-PDI", + "SnO2-c | C60-5a", + "TiO2-c | Ag-nw; TiO2-np", + "TPA-PCBM | bis-C60", + "SnO2-np | TPPO", + "PCBM-60 | PVP", + "SnO2-c | C60-5b", + "PyCEE", + "TiO2-c | TiO2-np | ZrO2-mp", + "TiO2-c | SrTiO3", + "TiO2-c | SrTiO3-mp", + "TiO2-c | ZnO-nw", + "ITIC; PCBM-60 | PEI", + "FSIP | C60 | BCP", + "PTCDA | PO-T2T", + "PCBM-60 | CIL", + "C60 | C60; Phlm", + "PMDPT", + "TiO2-c | TiO2-mp | PbSe", + "TPE-DPP4 | C60 | BCP", + "TiO2-c | PCBM-63", + "Acetyl acetate; I2; LiI", + "Au-np; TiO2-np | C-PCBSD", + "TiO2-c | NaYF4:Yb:Er-np; TiO2-mp", + "TiO2-c | TiO2-mp | HOOC-Ph-SH", + "CPTA | BACl", + "H-DIPBI", + "SnO2-c | C60-SAM", + "PCBM-60; CTAB", + "Zr(acac)4", + "TiO2-c | TiO2-nanoflowers", + "C5-NCMA | bis-C60", + "MC-43", + "TiO2-np | C70", + "TiO2-c | Au-np; TiO2-mp", + "C60 | C60", + "MoO3 | Au | SnO2-c | TiO2-mp", + "TiO2-c | IPH", + "PCBM-60 | ZnO-c", + "C60 | LiF | BCP", + "N2200 | bis-C60", + "Graphene | ZnO-QDs", + "ZnO-c | T2CA", + "PCBM-60 | PCBM-60", + "P(NDI2OD-TET)", + "TiO2-c | NiO", + "TiO2-c | TiO2-mp | D149", + "PCBM-60 | AZO", + "ZnO-c | ZnO-nanodisks", + "Fullerene-2a", + "Ru(acac)", + "PCBM-60 | Phen-NaDPO", + "PCBM-60 | bis-C70", + "PCBM-60; Graphene | BCP", + "TiO2-c | TiO2-mp | Aminocaproic acid; Caproic acid", + "Graphene nanoribbons hPDI2-Pyr-hPDI2", + "TiO2-c | TiO2-mp | 4\u2010Aminobutyric acid", + "BAFB | ZnO-np", + "SnO2-c | C60-5e", + "2PDI-3S | PEIE", + "PEIA | PCBM-60 | BCP", + "Graphene", + "Graphene; NDI; SnO2-np", + "PCBM-60 | CD", + "MATS | PCBM-60", + "PCBM-70 | C70 | BCP", + "MABr | PCBM-60 | BCP", + "PTEBS", + "PEDOT:PSS | PEI | PCBM-60", + "SnO2-mp", + "PMMA | PCBM-60", + "2PDI-4S | PEIE", + "TiO2-nw", + "Au-np; TiO2-np", + "C60 | Zr(AcAc)", + "PEAI | PCBM-60 | PEI", + "C60; Phlm", + "ZnO-mp | ZnO-np", + "PCBM-60 | PEOz", + "TiO2-c | TiO2-mp | ZIF-8-20", + "PFN-OX:ZnO", + "In2S3", + "ZnLiO", + "TiO2-c", + "C60 | TmPyPB", + "SnO2-np | SnO2-c", + "PTCDI | BCP", + "PCBM-60 | TBAI", + "SnO2-c | CBA-SAM", + "MAI | PCBM-60 | PEI", + "PEIE | SnO2-np | ITIC", + "t-BPTI | C60 | BCP", + "Carbon-QDs; TiO2-c", + "P2", + "PEI | PCBM-60", + "PCBM-60 | FPI", + "Bphen", + "Au-np | TiO2-c", + "TiO2-fibres", + "TiO2-nanosphere", + "ZnO-c | 3, 4, 5- trimethoxybenzoic acid", + "C60-SAM | C60 | BCP", + "PCBM-derivative11", + "SnO2-nanosheets", + "TiO2-nw | N719", + "TiO2", + "TiO2-c | TiO2-mp | TiO2-c", + "CdS", + "PCBM-60 | Carbon-nt; PEI", + "C60; PCBM-60", + "C60 | B4PyMPM", + "SnO2-QDs", + "PCBM-60; Zn0.8Cd0.2S-np", + "(4AMP)I2 | PCBM-60 | BCP", + "C60; PCBM-60 | bis-C60", + "ZnO-c | ZnOS | TiO2-mp", + "SnO2-np | OTES:APTES-SAM", + "PDI | C60 | BCP", + "TiO2-c | (3-Aminopropyl)trimethoxysilane", + "SnO2-c | BA-SAM", + "IDTT2FPDI | PCBM-60 | Bphen", + "ZnO-np | BCP", + "ZnO-c | ZnO-nanofibers", + "GaN", + "CSCNT@Al2O3-c", + "PCBM-60 | C60", + "IT4M | s-Bphen", + "SnO2-np | B2Cat2", + "PCBM-60 | PFN-Br", + "Fe2O3-np", + "ICBA | bis-C60", + "ZnO-c | Graphene; ZnO-np", + "ZnS", + "Corrannulene-derivative", + "D-C60", + "PCPDT-PDI", + "TiO2-3D", + "TiO2-c | TiO2-mp | ZnS", + "PCBM-60 | FPyBr", + "DNDIF3", + "SnO2-np | ZnO-c", + "ZrO2-c | TiO2-c | Al2O3-mp", + "C60-lactone", + "IT4F | s-Bphen", + "Zn2SnO4-np", + "Ag-np; TiO2-c | TiO2-mp | ZrO2-mp", + "PCBM-60 | PFN; ZnO-np", + "ZnO-nanoflake", + "TiO2-c | TiO2-mp | Carbon-QDs", + "PCBM-60 | Ethanl-hydroquinolatolithium", + "Fullerene-2b", + "ITCPTC | C60 | BCP", + "PFN; ZnO", + "PCBM-60 | PrC60MAI", + "TiO2-c | TiO2-mp | Al2O3-mp | TiO2-c", + "PEG; ZnO-np", + "2,6-Py | PCBM-60 | PEI", + "TiO2-nanosphere | TiO2-mp", + "MoS2-nanosheets", + "BPTI | PDI-C4 | BCP", + "SnO2-np; ZnO-np | Al2O3-mp", + "MgO | SnO2-np", + "Nb2O5-c | TiO2-mp", + "TiO2-c | Au-np", + "FPI-PEIE", + "TiO2-np | C-PCBOD", + "LiF | C60 | SnO2-c | ZTO", + "TiO2-c | AgInS2-QDs; TiO2-c", + "ATO | TiO2-c | TiO2-mp", + "TiO2-c | CdS", + "Nb2O3 | Al2O3-mp", + "TiO2-c | TiO2-mp | MgO", + "PEIE | SnO2-np", + "Mg0.2Zn0.8O-np", + "N-PDI", + "Fe2O3-c", + "Graphene oxide; TiO2-c", + "F16CuPc | Bphen", + "TiO2-c | TiO2-nanosphere | ZrO2-mp", + "TiO2-c | TiO2-nw", + "SnO2-np", + "SnO2-np | Ethanol amine", + "PCBM-60 | C60/C70-N", + "Zn2SnO4-c | Zn2SnO4-mp", + "ZnO-np | TiO2-mp", + "Fullerene-2c", + "P(NDI2DT-T2)", + "WO3-c | WO3-nw | Cs2CO3 | PCBM-60", + "TiO2-c | Thiourea", + "TiO2-c | ZnO", + "SnO2-nw; Zn2SnO4-np", + "PCBM-60 | BCP | TiO2-c", + "TiO2-c | ZTO-mp", + "ITIC", + "TiO2-c | ZIF-8", + "PCBM-70; ZnO-np | TiO2-c", + "ZnO-c | 4-dimethoxybenzoic acid", + "PCBM-60 | Cs2CO3", + "ZnO-c | p-amino-benzoic acid", + "ZnO-c | SnO2; TiO2-mp", + "ZnO-c | ZnO-nanospheres", + "2PDI-2S | PEIE", + "TiO2-c | Ps", + "C60 | Bphen", + "ZnO-c | ZnO-mp | ZrO2-mp", + "SnO2-c | SnO2-np", + "WO3-c", + "IDT6CN-TM | C60 | BCP", + "C60; PCBM-60-DPM-OE", + "PSS | PCBM-60 | BCP", + "TiO2-c | SrTiO3-np", + "PCBM-60 | C60-ETA", + "TiO2-c | Al3O3-mp", + "TiO2-c | TiO2-mp | ZrO2-mp | Co3O4-mp", + "TiO2-c | PPDI-F3N", + "PDTP-DFBT:PCBM-60", + "PCBM-60 | Si-np", + "SnO2-c | C60-5g", + "TiO2-c @ {001} facet", + "PCBB", + "TiO2-c | PCBSD:GD", + "C3N5", + "PCBM-60; PDI-DA", + "nTi-MOF", + "PCBM-60 | pi-PFE3", + "PCBM-derivative12", + "C60 | PEI", + "PCBM-60 | ZrAcac", + "N2200 | PCBM-60", + "ZnO-np | MgO-EA | TiO2-mp", + "NbOH5", + "TiO2-c | TiO2-mp | N719", + "Boron subphthalocyanine chloride | PCBM-60", + "TiO2-c | CsBr", + "TCl-PDI", + "FNCA | C60 | BCP", + "P3", + "SnO2-c | APTES-SAM", + "TiO2-c | C60-BCT-Au-NP", + "PCBM-60 | Ppz", + "ZnO-c | JTCA", + "Ti", + "PCBM-60 | CMB-vTA | AZO", + "Nb2O5 | PCBM-60", + "PS | C60 | BCP", + "BaSnO3-mp", + "NDI3HU-DTYM2 | BCP", + "OCA | C60 | BCP", + "DS2", + "CuCrO2 | C60; PCBM-60", + "SnO2-np | PCBM-60", + "GDY-Tz-CH2(CH2)16CH3; PCBM-60 | C60", + "C60 | ZnO-c", + "C60-BPy | BCP", + "PCBM-60 | ZnO-np", + "Nb2O5 | PCBM-60 | (EMIM)PF6", + "PCBM-70 | C60 | BCP", + "TiO2 | ITIC", + "PCBM-60 | Phen-NaDPO:Sn(SCN)2", + "PCBM-60 | P3HT; PCBM-60", + "TiO2-c | TiO2-mp | Al2O3-c", + "HATNAS3C7-C3h", + "MgZnO", + "TiO2-c | SiO2-mp", + "PDI | PDI", + "ZnO-np | MgO | TiO2-mp", + "TiO2-c | TiO2-mp | ZrO2-mp | Silane-SAM", + "SrTiO3 | Graphene; Al2O3-mp", + "TiO2-c | SnO2-np", + "C60 | SnO2 | ZTO", + "SnO2-c | Cs4SnO4", + "ZnCsO", + "TiO2-c | Na2SO4", + "WOx", + "PCBM-60; TDPP-CN4 | BCP", + "TiO2-c | TiO2-mp | PABA-SAM", + "PFN | PCBM-60", + "TiO2-c | KH550", + "Teflon | C60 | BCP", + "a-DMEC70", + "EVA | PCBM-60 | BCP", + "SnO2-c | MgO-c", + "TiO2-c | Al2O3-mp | NiO-np", + "PTO", + "PCBM-60; TiO2-np", + "TiO2-c | Alq3", + "GO-Li | TiO2-c", + "ZnO-c | TiO2-c", + "CITP-SAM", + "NDI-Se", + "ZnO0.85Sn0.2O1.2", + "PCBM-70 | Fe2O3-np", + "TiO2-c | TiO2-mp | Poly(TA)", + "TEAI | PCBM-60 | PEI", + "ZnO-c | AZO-c", + "IPH | PFNBr", + "PC61BPy | BCP", + "Ag-np; TiO2-c | TiO2-mp", + "ICTA | C60 | BCP", + "Fulleropyrrolidinium Iodide", + "DMEC-60 | LiF", + "ZnO-np", + "TiO2-c | SiO2-np | TiO2-c | SiO2-np | TiO2-c | SiO2-np | TiO2-c", + "1,2-diaminoethane | C60 | BCP", + "TiO2-c | CoCr", + "ZnSO | TiO2-mp", + "SnO2-np | ZnO-np", + "TiO2-mp | D35", + "ZnO-c | PCBM-60", + "HATNASOC7-Cs", + "TiO2-c | TiO2-mp | PTDPQ", + "TiO2-c | Ba0.5Sr0.5SnO3-np", + "SnO2-c | SnO2-nw", + "Mg0.05Zn0.95O-np", + "PCBM-60 | TPBi", + "MPMIC60 | ZnO-np", + "TiO2-c | CdSe-tetrapod", + "IPB", + "TiO2-c | TiO2-mp | NaPTH", + "TiO2-mp | SAM1", + "PCBM-70 | Lif", + "TiO2-c | C60-NH2", + "PCBM-60 | P4N4", + "Ethyl acetate; I2; LiI; TBP; Urea", + "SnO2-np | Dompamin-SAM", + "Ti | Au", + "MgO-c | TiO2-mp", + "SnO2-np | TiO2-np", + "PN", + "ZnO-c | CdS", + "TiO2-c | PCBA", + "TiO2-c | In2O3-c", + "SnO2-c | SnO2-nw | TiO2-c", + "WO3-np", + "C60; C70 | BCP", + "Fe2O3", + "TiO2-c | Heparin-Na", + "WO3-np | Cs2CO3 | PCBM-60", + "PCBM-60 | EFGnPs-F", + "C60 | SnS", + "ZnO-mp", + "PCBM-60-np | PrC60MA | PEI", + "TiO2-c | TiO2-mp | PCBM-60; PVK", + "C60 | SnO2-c | ZTO", + "TiO2-np | C60", + "NDI-TriSe", + "TPA-3CN | BCP", + "TiO2-c | ZnO-nw | ZnO-c", + "PEIE | NDI-H", + "ITCP-M | BCP", + "Alq3; C60 | LiF", + "PDPP3T; PCBM-60", + "PCBM-60 | Ag-np | BCP", + "TiO2-c | STHNP", + "SrTiO3", + "B4PyMPM | C60 | TmPyPB", + "Ti3C2Tx", + "TiO2-c | graphite nanofibers", + "TiO2-c | TiO2-mp | Al2O3-c | ZrO2-mp", + "SnO2-c | SnO2-mp", + "[EMIM]PF6-IL", + "HATNAS3C4", + "TiP2-c | PCBM-60", + "Nb2O5-c", + "TiO2-c | SrTiO3-np; TiO2-nw", + "Poly(9-vinylcarbazole) | PCBM-60", + "TiO2-c | PNP", + "SnO2-c | Ag | SnO2-c | SnO2", + "ZnO | Au-nw", + "ZnSnO4-c | ZnSnO4-mp", + "PCBM-60 | PFN", + "SnO2-c | Al2O3-mp", + "PCBM-60 | C70", + "P1", + "PCBM-70 | AZO-np", + "TiO2-c | TiO2-mp | Al2O3-mp | NiO-mp", + "PCBM-60 | ZSO-np", + "ZnCsO | PCBA", + "ZnO-c | WPF\u20106\u2010oxy\u2010F", + "Al2O3-c", + "Carbon", + "PCBM-60 | PCBDANI | LiF", + "TiO2-c | TiO2-mp | MTPS-SAM", + "IDT6CN-4F | C60 | BCP", + "TiO2-c | ZnO-c | C60", + "PCBM-60; PS-b-PEO", + "TiO2-c | TiO2-mp | Li-TFSI", + "PCBM-60 | P3TMAHT", + "PCBM-70 | TiO2", + "TiO2-c | TiO2-IO", + "AZO-c", + "PDI | BCP", + "TiO2-c | Au@SiO2-nw; TiO2-mp", + "PCBM-60 | C60-N", + "TiO2-c | TiO2-mp | In2O3", + "TiO2-c | CuI", + "PCBM-60 | BCP; TZ-3", + "ZnO-c | Al2O3-mp", + "TiO2-c | TiO2-nw | Al2O3", + "C60; PhIm", + "PCBM-60 | bis-C60", + "PEAI | PCBM-60 | BCP", + "pSNT", + "Bi2S3", + "SnO2-c", + "ZnO-c | CPTA; PbI2", + "ZnO-c | C-PCBSD", + "ZnO-c | Ag | TiO2-c", + "ZnO-c | ZnO-nw | Au-np", + "BaCoF4", + "Unknown", + "ZnO-c | C60", + "TiO2-c | TiO2-mp | PCBM-60", + "SnO2-c | 3-(1-pyridinio)-1-propanesulfonate", + "Graphitic carbon nitride | PCBM-60; Graphene | BCP", + "PCBM-60 | LiF", + "TiO2-c | TiO2-mp | 4PA-SAM", + "Graphene nanoribbons hPDI3-Pyr-hPDI3", + "TiO2-np | PCBM-70", + "PCBM-60 | TBAOH", + "PCBM-70 | ZnO-np", + "F8BT | C60", + "Carbon-nt", + "SnO2-c | TiS2", + "HPDT | PCBM-60 | Bphen", + "Nb2O5-c | Nb2O5-mp", + "Al2O3; TiO2-c", + "TiO2-c | Sr2CeO4:Eu", + "PEIE | TiO2-c | TiO2-mp", + "1-ethyl-3-methylimidazolium iodide | C60 | 1-ethyl-3-methylimidazolium iodide", + "ITIC | BCP", + "N2200", + "C60 | LiF", + "TiO2-c | Ag | TiO2-c", + "TEACl | PCBM-60 | PEI", + "ZnO | MgO | EA | TiO2-mp", + "ITCPTC | Rhodamine 101 | LiF", + "IDIC", + "PCBM-60 | PDI-Br", + "SFX-PDI4 | TiO2-c", + "In2O3-c", + "ZnO-nw", + "Graphene oxide", + "TiO2-c | 3-PA-SAM", + "ITIC | PEIE", + "ZnO-c | ZnO-nw | CdS-QDs", + "TiO2-c | TiO2-mp | Al2O3-mp", + "PCBM-60 | ZnO-np | DPO", + "TiO2-c | Ba0.8Sr0.2SnO3-np", + "C60 | PN4N", + "TiO2-c | TiO2-mp | ZrO2-mp | NiO-mp", + "TiO2-c | SnO2-c", + "PSS | PCBM-60 | ZnO-np", + "TiO2-c | TiO2-mp | La2O3", + "PCBM-60 | SnO2-c", + "PFN-OX", + "PVDF-TrFE | C60 | BCP", + "ZnO-np | ZnO-nanospheres | PEI", + "TPE-PDI4 | C60 | BCP", + "PEABr | PCBM-60 | BCP", + "PbZrTiO3", + "TiO2-c | TiO2-nanofibres", + "TiO2-c | SiO2-np", + "ICBM | bis-C60", + "Mix-DMEC70", + "N2200 | ZnO-np", + "TiO2-c | SnO2-np | BSO-mp", + "LiF | C60 | BCP", + "Fluorosilane | C60 | BCP", + "C60(OH)16 | C60", + "TiO2-c | TiO2-mp | MAI", + "ZnO-c | ZnO-nw | ZrO2-mp", + "SnO2-nw", + "B2F | C60 | BCP", + "PCBB-S-N | PCBM-60 | C60 | BCP", + "SnO2-np | Li-TFSI", + "PCBM-60 | pFN-Br", + "PCBM-60 | Cr2O3", + "TiO2-mp | TiO2-c | TiO2-nw", + "TiO2-nw | TiO2-c", + "PO-TAZ | ZnO-c", + "PCBB-3N-3I | PCBM-60", + "PCBM-60 | PN6", + "TiO2-c | TiO2-mp | Graphene oxide", + "SnO2-np | SnO2-mp", + "LiF | C60", + "PCBM-60; MAI", + "PCBM-60 | TiO2-c", + "PCBM-60 | Poly(2-ethyl-2-oxazoline)", + "N2200; PCBM-70; TT", + "Br-PDI | ZnO-np", + "MoS2; TiO2-np", + "TPE-PDI4 | Rhodamine 101 | LiF", + "TiO2-mp | N719 | LPP", + "IDT6CN | C60 | BCP", + "PCBM-60 | bis-C61", + "(RhCp*Cp)2 | C60", + "Br-PDI", + "C-PDTON | ZnO", + "SrGeO3", + "PCBM-60 | DEME-TFSI", + "Nb2O5 | TiO2-mp", + "ZnO-c | MgO | TiO2-mp", + "TiO2-c | TiO2-mp | SnO2-mp", + "P(NDI2OD-T2)", + "SnO2-np | PEG; SnO2-mp", + "PYPH | LiF", + "(2Z,2\u2032Z)-3,3\u2032-(5,5\u2032-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo[lmn][3,8] phenanthroline-4,9-diyl)bis(thiophene-5,2-diyl))bis(2-(3,5-bis (trifluoroomethyl)phenyl) acrylonitrile)", + "TiO2-nw | Sb2O3-np; SnO2-np", + "bis-PCBM", + "SnO2-c | BMIMBF4", + "ITIC-Th | Zn(acac)2", + "ITCPTC-Se | LiF", + "TiO2-c | SnO2-np | PCBM-60", + "In2S3 | TiO2-c | TiO2-mp", + "TiO2-c | C60", + "TiO2-mp | Ti:TiO2 | ZrO2-mp", + "Cs2SnI6", + "TiO2-c | KH570", + "TiO2-c | TiO2-mp; TiO2-nw", + "ZnO-np | C60", + "PNDI20D-TT | ZnO", + "PCBDAN", + "SnO2-QDs | C60", + "d-PCBM-60; PCBM-60", + "TiO2-c | Ag-nw", + "PEIE | TiO2-c", + "NDIF1", + "PCBM-60 | C60 | Rhodamine 101 | LiF", + "TPE-DPP12 | C60 | BCP", + "TiO2-nw | TiO2-np", + "ZrO2-c | PCBM-60", + "ZnO-np | ATTA", + "ZnO-c | CdSO", + "Black P-QDs", + "MSAPBS", + "SnO2-c | PCBM-60", + "TiO2-c | SAED", + "ZnO-np | ZnO-nw", + "TiO2-c | PCBM-62", + "TiO2-c | TiO2-mp | CBA-SAM", + "AZO", + "PCBM-60-mp", + "SnO2-c | SnO2-c", + "B2F | C60", + "BenMeIM-Cl | C60", + "PCBC6 | BCP", + "B2T | C60", + "TiO2-c | TiO2-mp | HOOC-C11H22-SH", + "c-HATNA | bis-C60", + "TiO2-np | TiO2-c", + "C60 | SnO2", + "TiO2-mp | N719", + "SnO2-np; TiO2-np; MXene", + "TiO2-c | NaYF4:Yb:Tm-np", + "CdS | PCBM-60", + "ZnO-np | TiO2-np", + "Fullerene @ F4", + "SnO2-np | PCBM-60; PCBA | C60", + "ZnO-c | SnO2-np", + "PCBM-60 | m-PYBrZnPor", + "ZnO-c | ZnO-nw | PCBM-60", + "TiO2-c | ZrO2-c | Al2O3-mp", + "PCBM-60 | DMAPA-C60", + "NDI-ID", + "MgO-c", + "PCBM-60 | BCP | AZO-c", + "TiO2-c | SnO2-QDs", + "TiO2-c | TiO2-mp | Bacteriorhodopsin", + "[EMIM]PF6-IL | C60", + "ZnO-c | 3-aminopropanioc acid-SAM", + "TiO2-c | TiO2-c", + "TiO2-c | PCBM-60", + "SnO2-c | TiO2-c", + "Graphene | TiO2-mp", + "TiO2-c | TiO2-mp | GABAHI", + "WO3-c | WO3-nw", + "pBTT", + "TiO2-c | TiO2-mp | ZrO2-mp | Carbon-mp", + "ZnSe", + "ADAHCl | C60 | BCP", + "C60", + "PCBM-60 | Zr(acac)4 | PEI", + "PCBM-60; PCBDAN", + "Poly-EDOT-C60", + "TiO2-c | TiO2-mp | NBA-SAM", + "C60/C70-N", + "PCBM-60 | Rhodamine 101", + "4-methoxythiophenol", + "4-HI-PVK | PCBM-60 | BCP", + "C60 | ZnSe", + "ZnO-c | EMIM-PF6", + "C60 | bis-C60", + "TiO2-c | TiO2-mp | Graphene-QDs", + "NDP-V | Rhodamine 101 | LiF", + "CYOP | PCBM-60 | PEIE", + "LiF | C60 | SnO2-c | ZnSnO2-c", + "CuInS2 | Al2O3-np", + "TiO2-c @ {101} facet", + "ZnO | MgZnO", + "EDTA", + "ZnO-np | SnO2-np | C60-SAM", + "Nb2O5", + "C60 | BCP | LiF", + "PCBM-60 | C60 | TPBi", + "TiO2-c | PDI2", + "TiO2-c | MgO-c | TiO2-mp", + "SiPc-Py-2 | PTCDA | PO-T2T", + "PCBB-3N | PCBM-60", + "TiO2-c | TiO2-mp | MgO-c", + "TiO2-c | TiO2-mp | Au-np | MgO", + "PCBM-70 | Rhodamine 101", + "TiO2-c | TiO2-mp | CdSe-QDs", + "In2O3-c | SnO2-c", + "SnO2-np | APTES-SAM", + "Ag-np | TiO2-c", + "SnO2-nt", + "CDIN", + "TIPD; ZnO-np", + "TiO2-c | TiO2-mp | 4-aminobenzoic acid-SAM", + "ZnO-c | ZnO-nanowells", + "TiO2-c | TiO2-mp | C60-SAM", + "TiO2-c | TiO2-mp | ZrO2-mp | PbTiO3", + "Fullerene-SAM", + "SnO2-c | 1\u2010butyl\u20103\u2010methylimidazolium bromide", + "PCBM-60 | PPy", + "TiO2-c | TiO2-nanosphere", + "TiO2-c | CsPbBr3-QDs", + "TiO2-c | TiO2-mp | B2Pin2", + "TiO2-c | TiO2-mp; ZrO2-mp", + "TiO2-c | NAMF-Cl", + "4-DMABA | PCBM-60 | BCP", + "ZnO-c | ZTO | PCBM-60", + "TiO2-c | TiO2-mp | GO-Li", + "NiO-c", + "F8BT", + "TiO2-c | TiO2-mp | Cs2CO2", + "PCBM-60 | Bis-FITG", + "ZnO-c | Al2O3-c | TiO2-mp", + "MgO", + "TMAH", + "C60 | [EMIM]PF6-IL", + "Ca | C60", + "TiO2-c | C60-ETA", + "TiO2-c | C60-SAM | SiO2-np", + "TN-P", + "diPDI | TiO2", + "ZnO-c | Cs2CO3", + "Graphene oxide; ZnO-np", + "ZnO-np | PFS-FTEG", + "PCBM-60 | Et2PrNMe-CF3BF3", + "TiO2-c | TiO2-nt | ZrO2-mp", + "TiO2-c | TiO2-nt", + "TiO2-c | SnO2", + "SnO2 | PCBM-60", + "f-C70 | C60", + "1\u2010benzyl\u20103\u2010methylimidazolium chloride", + "SnO2-c | PCBM-60; PMMA", + "PCBM-60 | CeOx-np", + "TiO2-macroporous", + "ICMA", + "TiO2-c | TiO2-mp | PcM-Cou", + "TiO2-c | SnO2-nanosheets", + "HATNASO2C7-Cs", + "P4", + "PV-PDI", + "PCBM-60 | PrCMA", + "TiO2-c | TiOZn-nanosphere", + "TiO2-c | TiO2-mp | TiN", + "TiO2-c | Ag@TiO2-nw", + "BCP", + "Choline chloride | C60 | BCP", + "ZnO-c | Al2O3-c", + "BaSnO3-nw", + "TDPP-CN4 | BCP", + "PCBM-60 | Bphen", + "Cr2O3", + "NDP-V | C60 | BCP", + "Carbon-np; SnO2-np", + "SnO2-np | DPC60", + "ZnO-np | MgO", + "TiO2-c | TiO2-mp | ZIF-8", + "BiFeO3", + "TiO2-c | PBCM-60", + "PCBM-60 | BCP | Ga2O3", + "TiO2-c | TiO2-nw | TiO2-np", + "CMB | AZO", + "C60-MPy | BCP", + "CdI2 | C60 | BCP", + "Me4NI | PCBM-60 | BCP", + "LiQ; PEIE | PCBM-60", + "C-PDTON | SnO", + "C60MC12 | AZO-np", + "SnO2-c | NaOH", + "TiO2-c | ZrO2-mp", + "TiO2-c | NaYF4-np; TiO2-mp", + "PCBM-60 | Bis-FIMG", + "SnO2-c | ZnTiO3-mp", + "TiO2-c | TiO2-mp | SQ2", + "TiO2-np | CsBr", + "TiO2-c | TiO2-mp | SiO2-mp", + "C60 | Al2O3-mp", + "PCBM-70 | TiO2-c", + "DPC60", + "PCBM-60 | MUTAB", + "FeO | PCBM-60", + "ZnO-np | SnO2-np", + "ZnO-c | APTES-SAM", + "SnO2-c; SWCNTs", + "PN-F50", + "NDI-BiSe", + "ZnO-c | ZnO-mp", + "TiO2-c | Ag-np | TiO2-c", + "SnO2-np | LiF", + "TiO2-c | bis-PCBM; DMC", + "PCBM-60 | AgAl-np | LiF", + "PCBM-60 | C60 | BCP", + "PCBM-60 | pi-PFE4", + "TiO2-c | TiO2-mp | Al2O3-np", + "TiO2-nanocones | TiO2-mp", + "TiO2-c | PCBM-60 | C60-ETA", + "PC61BEH", + "TiO2-c | TiO2-mp | ZIF-8-10", + "Mg0.25Zn0.75O-np", + "PCBB-OEG; PCBM-60 | C60 | BCP", + "NMPFP", + "2H-TaS2", + "ICBA | BCP", + "C70 | LiF", + "TiO2-c | TiO2-mp | PCBM-60; PMMA", + "1-ethyl-3-methylimidazolium iodide", + "TiO2-c | MgO | TiO2-mp | ZrO2-mp", + "SrTiO3 | TiO2-mp | Al2O3-mp", + "BaSnO3", + "CMB-vTA | AZO", + "TiO2-c | NiO-np", + "ITIC-Th | BCP", + "PCBM-70 | ZrO3", + "FPI-PEIE | PCBM-60", + "TiO2-c | PCBSD", + "ZnO-c | ZnO-nw | Al2O3-c", + "PCBM-60 | AZO | BCP", + "Zn2SnO4 | TiO2-mp", + "BCP | C60", + "ZnSO", + "TiO2-c | NAMF-H", + "CdZnSeS-QDs | C60 | BCP", + "TiO2-c | TiO2; CoCr-mp", + "IPH | PDINO", + "PCBM-60 | HDAC", + "C60 | SnO2-c", + "Ag-nanocube | TiO2-c", + "SnO2-c | C9", + "NbOx", + "IDIC | C60 | BCP", + "NiO-c | TiO2-c", + "ICBA | PrC60MAI", + "TiO2-c | TiO2-mp | CdS", + "AZO-c | ZnO-nw", + "Fullerene @ F3", + "SnO2-c | TiO2-mp | ZrO2-mp", + "CdS-nw", + "PCBM-60 | F-R-COOK", + "TiO2-c | 2-PA-SAM", + "TiO2 | C60", + "TiO2-nt | ZnO-c", + "SnO2-c | C60-5c", + "PT-PDI", + "NDI-ID (RR)", + "TEABr | PCBM-60 | PEI", + "FPDI", + "MgO | SrRuO3 | SrRuO3", + "PCBM-60 | TrNBr", + "TiO2-c | TiO2-mp | Au@SiO2-np", + "PCBM-60 | EFGnPs-H", + "TiO2-c | Sr2CeO4:Sm", + "TiO2-c | TiO2-mp", + "ZnO | PTFE", + "ZnO-c | TiO2-c | PCBM-60", + "C60 | 3TPYMB", + "PCBM-60 | Rodhamine 101 | C60 | Rodhamine 101 | LiF", + "PCBM-60; ZnO-np", + "PCBM-60 | TIPD", + "PCBM-60 | pi-PFE1", + "C60; PCBM-60 | Zr(acac)4", + "TiO2-c | TiO2-nw | SiO2-nanocolumns | TiO2-nw", + "PCBM-60 | F-C60; bis-C60", + "TiO2-c | BZnTPP", + "C60 | BenMeIM-Cl", + "Au-np; SnO2-np", + "ZnO-c | PCBA", + "PC61BBz | BCP", + "SnO2-np; TiO2-c", + "SiO2-c | ZnO-c", + "CdSe-QDs", + "(2Z,2\u2032Z)-3,3\u2032- (5,5\u2032-(2,7-dioctyl-1,3,6,8-tetraoxo-1,2,3,6,7,8-hexahydrobenzo [lmn][3,8]phenanthroline-4,9-diyl)bis (thiophene-5,2-diyl))bis(2-(4-(trifluoromethyl)phenyl) acrylonitrile)", + "PDI-HE", + "PCBM-60 | SnO-c | SnZnO", + "ZSO-np | PCBM-60", + "SnO2-c | Al2O3-np", + "PCB-C4", + "PCBM-60 | Zr(Acac)", + "PEIE", + "PTTI-2", + "ZnO-c | Nb2O5", + "SnO2-np | CPTA", + "TiO2-c | SnO2-mp", + "TiO2-c | TiO2-nanoballs | SiO2", + "TiO2; WOx", + "PCBM-70 | LiF", + "TiO2-c | Zn2SnO4-mp", + "PCBM-60 | C60 | LiF", + "ITCPTC-Th | C60 | BCP", + "ZnO | 1,2-ethanedithiol", + "TiO2-c | NAMF-Br", + "TiO2-c | Au@SiO2-np; TiO2-mp", + "TiO2-c | CsPbCl3-QDs", + "WO3-c | Cs2CO3 | PCBM-60", + "t-BPTI | PDI-C4 | BCP", + "TiO2-c | ZnO-c", + "TiO2-c | TiO2-mp | SnO2-c", + "SnO2-np | Graphene-QDs", + "SnO2-c | KOH", + "PCBM-60 | BCP", + "ZnO | ZnO-nw", + "TiO2-c | CsPbI3-QDs", + "HATNAS3C7-Cs", + "TiO2-c | Al2O3-mp; Ag@TiO2-np", + "TiO2-c | KY7F22-np", + "PCBM-60 | Carbon", + "ZnO-np | Mg-EA", + "SnO2-np | Choline Chloride", + "SnO2-np | TiO2-mp", + "TiO2-c | C60-SAM | Al2O3-np", + "ITIC | PCBM-60 | PEIE", + "Au@TiO2-nw; TiO2-np", + "TiO2-c | DMF", + "ICBA | C60 | BCP", + "CNTPA-PCBM | bis-C60", + "ZnTiO3-c", + "Mg0.15Zn0.85O-np", + "PCBM-70 | Bphen", + "PCBM-60 | PEI", + "PCBM-60 | DTAB", + "TiO2-c | ZnPtriazine(gly)2", + "ITCPTC-Th | LiF", + "PCBM-60; PCDTBT", + "PFN", + "H-PDI | ZnO-np", + "tris-PCBOE | ZnO", + "TiO2-c | TiO2-nw | TiO2-c", + "PCBM-60 | PEIE", + "TiO2-c | PS:TiO2-mp", + "Fullerene @ F1", + "TiO2-c | Au@TiO2-np; TiO2-mp", + "ZTO | SnO2-c", + "TiO2-c | Au@Ag | TiO2-mp", + "TiO2-c | TiO2-mp | CaTiO3-c", + "HfO2 | SnO2-np", + "DBP | PCBM-60 | Bphen", + "IBF-Ep", + "C60; PhIm | C60", + "PCBM-70 | AZO", + "1-ethyl-3-methylimidazolium iodide | C60", + "SnO2-c | Graphene", + "TiO2-c | rGO:TiO2-nanofibrse", + "TiO2-c | TiO2-mp | CaTiO3", + "TiO2-c | [BMIM]BF4", + "C70 | BCP", + "P(NDI2OD-T2); PCBM-60 | BCP", + "In2O3 | PCBM-60", + "CdS | TiO2-c", + "TiO2-c | TiO2-mp | ZrO2-mp", + "ZnO-c | Hexamethylenetetramine", + "TiO2-c | Graphene-QDs", + "BCP; PCBM-60", + "PCBM-60 | AZO-np | PEI", + "PCBM-60 | BCP | LiF", + "C60 | PCBM-60 | BCP", + "ITIC | Zn(acac)2", + "PCBM-60 | TIPD; ZnO-np", + "ZnO-c | ZnO-nanofibers | PEI", + "CeOx | PCBM-60", + "SnO2-c | PEIE | PCBM-60", + "C60 | PAA", + "ZnLiO | PCBA", + "GAN", + "TiO2-c | TiO2-mp | beta-Alanine-SAM", + "TiO2-c | Al2O3-c | TiO2-mp", + "TiO2-c | TiO2-mp | CsI", + "TiO2-c | C60-SAM", + "C60 | TiO2-c", + "PCBM-60 | ZnO-np | ACO-c", + "3-acetylpyridine | PCBM-60 | BCP", + "TiO2-c | TiO2-nanosphere | TiO2-mp", + "PCBM-60 | pi-PFE2", + "ZrO2-np", + "C60-SAM | SnO2-c | PCBM-60", + "PCBM-60 | BCP; TZ-4", + "BPB-M | LiF", + "SnO2-np | OEABS", + "PCBM-60 | Lif", + "NDIF2", + "ZnO-c | ZnO-c | Ba(OH)2", + "TiO2-c | TiO2-mp | Aminocaproic acid", + "C60 | Zr(acac)4", + "PCBM-60 | CTAB", + "HATNA-F6", + "PCBM-60 | ZnO-np | PEI", + "(RuCp*mes)2 | C60", + "PTCBI", + "PTCBI | BCP", + "PCBM-60 | EGME", + "TiO2-nanocones", + "IT-M | Zn(acac)2", + "2-acetylpyridine | PCBM-60 | BCP", + "C60 | C60; PhIm", + "SnO2-nw | SnO2-nw", + "Ti3C2", + "Al:ITO-c | SnO2-c", + "WOx | I-Ph-PA_C60-C6-PA", + "WOx | C60", + "SnO2-np | PFN-Br", + "PEIE | PCBM-60 | Bphen", + "TiO2-c | SrTiO3:TiO2-mp", + "TiZnO12-c", + "TiO2-c | Carbon-nt; TiO2-mp", + "PTCA", + "SnO2-c | SnO2-mp | TiO2-c", + "C60; Phlm | C60", + "PCBM-60 | ICL", + "PCBM-60 | Alq3", + "TiO2-c | TiO2-nanoballs", + "TiO2-nanoleaves" + ] + } + } + ] + }, + "name": "stack_sequence", + "description": "The stack sequence describing the electron transport layer. Use the following formatting guidelines\n- With the ETL, we refer to any layer between the substrate and the perovskite in a nip-device, and any layer between the perovskite and the back contact in a pin-device.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- If no electron transport layer, state that as \u2018non\u2019\n- Use common abbreviations when appropriate but spell it out if risk for confusion.\n- If a material is doped, or have an additive, state the pure material here and specify the doping in the columns specifically targeting the doping of those layers.\n- There is no sharp well-defined boundary between when a material is best considered as doped or as a mixture of two materials. When in doubt if your material is best described as doped or as a mixture, use the notation that best capture the metaphysical essence of the situation.\n- There are a lot of stack sequences described in the literature. Try to find your one in the list. If it is not there (i.e. you may have done something new) define a new stack sequence according to the instructions.\nExampleBelow are some of the most common electron transport layers\nTiO2-c | TiO2-mp\nTiO2-c\nPCBM-60\nPCBM-60 | BCP\nSnO2-np\nC60 | BCP\nSnO2-c\nTiO2-c | TiO2-mp | ZrO2-mp\nZnO-c\nPCBM-60 | C60 | BCP\nPCBM-60 | LiF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "40.0 | 50.0", + "50.0 | 7.0", + "40.0 | nan", + "5.0 | 65.0 | nan", + "50.0 | 200.0", + "nan | 400.0 | 1700.0", + "20.0 | 400.0", + "40.0 | 3.0 | 2.0 | 2.0", + "40.0 | 150.0", + "14000.0", + "50.3", + "27.0 | 600.0", + "40.0 | 210.0", + "nan | 1100.0", + "25.0 | 150.0", + "nan | 600.0", + "nan | 2000.0 | nan", + "0.0", + "30.0 | 351.0", + "12.7 | 40.0 | 6.0", + "27.0 | 175.0", + "nan | 950.0", + "nan | 100.0 | 2000.0", + "40.0 | 353.0", + "1800.0", + "60.0 | 12.0", + "nan | 480.0 | 900.0", + "nan | 400.0 | nan", + "nan | 600.0 | 1200.0", + "160.0 | 40.0", + "141.0 | 200.0", + "2.4", + "50.0 | 1000.0 | 1000.0", + "nan | 325.0", + "nan | 1000.0 | 4500.0", + "614.0", + "87.0", + "8.0 | nan | 1.0", + "70.0", + "nan | 5400.0", + "nan | 1000.0 | 1008.0", + "500.0", + "85.0 | nan", + "80.0 | 365.0", + "4.0 | nan", + "76.0", + "90.0 | 400.0", + "45.0 | 4.0", + "6.0 | 20.0 | 8.0", + "35.0 | 150.0", + "100.0 | nan | 2.0", + "100.0 | 300.0", + "2.0 | 4.0 | nan", + "50.0 | 50.0 | 300.0", + "30.0 | 440.0", + "14.0 | nan", + "2.0 | 1.0", + "31.1", + "240.0", + "50.0 | 100.0 | 400.0 | 50.0", + "101.0 | 500.0", + "nan | nan | 7.0", + "nan | 320.0", + "75.0 | 500.0", + "95.0 | 365.0", + "50.0 | 480.0", + "30.0 | 600.0", + "nan | 25.0", + "nan | 1000.0 | 1010.0", + "60.0 | 2500.0", + "30.0 | 200.0 | nan", + "40.0 | 300.0", + "1.0 | 25.0 | 6.0", + "120.0 | 0.5", + "26.0", + "55.0 | 5.0", + "nan | 30.0 | 10.0", + "700.0 | 80.0", + "50.0 | 6.3", + "nan | 500.0 | 500.0 | 10000.0", + "20.0 | nan | 20.0", + "60.0 | 460.0", + "80.0 | 120.0", + "nan | 2000.0 | 2000.0", + "9.0", + "72.0 | 200.0", + "20.0 | 20.0 | 20.0", + "nan | 600.0 | nan", + "30.0 | 12000.0", + "50.0 | 200.0 | 115.0", + "nan | 270.0", + "5000.0", + "50.0 | 250.0", + "nan | 500.0 | 3000.0", + "700.0 | 2400.0", + "30.0 | 130.0", + "70.0 | nan", + "17.0 | 350.0", + "90.0 | 300.0", + "80.0 | 1050.0 | 1.0", + "70.0 | 80.0 | nan", + "6.0 | 54.0", + "36.0", + "50.0 | 30.0", + "23.0 | nan | 1.0", + "nan | 100.0", + "nan | 440.0", + "50.0 | 1.0", + "nan | 220.0", + "15.0 | 50.0", + "50.0 | 180.0", + "nan | 55.0", + "106.0 | nan", + "25.0 | 15.0", + "100.0 | 130.0 | nan", + "80.0 | 1400.0", + "23.0 | 7.0", + "50.0 | 620.0", + "nan | 500.0 | 1300.0", + "80.0 | 300.0 | 1400.0", + "40.0 | 10.0", + "368.0 | nan", + "30.0 | 240.0", + "nan | 20.0 | 5.0", + "nan | 2000.0 | 1000.0", + "58.0 | 200.0", + "0.2 | nan", + "135.0", + "2.0 | nan", + "nan | 120.0", + "15.0 | 6.0", + "30.0 | 20.0 | 8.0", + "90.0 | 200.0", + "5.5", + "200.0 | 700.0 | 1000.0", + "40.0 | 40.0 | 150.0 | 150.0", + "nan | 750.0", + "8.0 | nan | nan", + "80.0 | 900.0 | 1.0", + "1.2 | 10.0 | 8.0 | 2.0", + "277.0", + "60.0 | 24.0", + "50.0 | 400.0 | 400.0", + "27.0 | 275.0", + "nan | 500.0 | 500.0", + "nan | 6.0 | nan | nan", + "20.0 | 30.0", + "50.0 | 5.0 | 5.0", + "nan | 1300.0", + "60.0 | 15.0", + "10.0 | nan | 1.0", + "nan | 290.0", + "50.0 | 1000.0 | 800.0", + "91.0", + "60.0 | 30.0", + "15.0 | 180.0", + "7.5", + "405.0", + "100.0 | 30.0 | 10.0", + "80.0 | 20.0", + "13.0 | 20.0 | 8.0", + "30.0 | 20.0", + "nan | 100.0 | nan", + "65.0 | nan", + "50.0 | 50.0 | 6.3", + "nan | 453.0", + "30.0 | 350.0", + "5.0 | 20.0 | 8.0", + "40.0 | 5.0 | 40.0", + "40.0 | 3.0", + "75.0", + "20.0 | 5.0", + "nan | 0.6", + "40.0 | 3.0 | 2.0 | 0.5", + "nan | 180.0", + "nan | 600.0 | 500.0", + "nan | 1050.0 | 350.0", + "nan | 5502.0", + "22.0", + "10.0 | 40.0", + "50.0 | nan | 30.0 | 10.0 | 0.05 | 0.8", + "35.0 | 40.0", + "63.0", + "60.0 | 3.0", + "34.0", + "50.0 | 300.0 | 500.0", + "10000.0 | nan | nan", + "100.0 | 60.0", + "43.0 | nan | 1.0", + "nan | nan | 305.0", + "100.0 | 600.0", + "70.0 | 80.0 | nan | nan", + "280.0", + "60.0", + "40.0 | 360.0", + "45.0 | nan", + "7.0", + "440.0", + "400.0", + "nan | 0.7", + "25000.0", + "1.5", + "nan | 450.0", + "128.0", + "20.0 | nan", + "nan | 660.0", + "600.0 | 340.0", + "208.0 | 200.0", + "40.0 | 250.0", + "50.0 | 150.0", + "nan | 1000.0 | 1004.0", + "50.0 | nan | 1.0", + "nan | 200.0", + "12.0", + "60.0 | 120.0", + "800.0 | 200.0", + "100.0", + "40.0 | 10.8", + "nan | 1073.0", + "70.0 | 130.0", + "55.0 | 75.0", + "20.0 | 260.0", + "15.0 | 1.0", + "nan | nan | 1.5", + "15.0 | 400.0", + "55.0 | nan", + "38.69", + "120.0 | 700.0", + "16.39", + "60.0 | 530.0", + "3.0 | 25.0 | 6.0", + "70.0 | 10.0", + "75.0 | 365.0", + "50.0 | 600.0", + "nan | 3600.0", + "30.0 | 550.0", + "290.0", + "100.0 | 1.3", + "nan | 20.0 | 0.6", + "55.0 | nan | nan", + "50.0 | 540.0", + "43.0 | 10.0", + "50.0 | 100.0", + "40.0 | 5.0", + "20.0 | 25.0 | nan", + "60.0 | 1500.0", + "50.0 | 800.0 | 700.0", + "35.0 | 15.0", + "30.0 | 150.0", + "40.0 | 7.5", + "nan | 15.0 | 6.0", + "140.0 | 380.0", + "10.0 | 150.0", + "nan | 670.0", + "20.0 | 6.0", + "nan | 350.0 | nan", + "17.0 | 170.0", + "80.0 | 60.0", + "20.0 | 10.0 | 10.0", + "500.0 | 3000.0", + "90.0 | 60.0", + "nan | 20000.0", + "15.0 | 20.0", + "nan | 170.0", + "60.0 | 50.0 | 45.0", + "22.0 | 150.0", + "60.0 | nan | 10.0", + "7.0 | nan", + "44.0", + "45.0 | 100.0", + "550.0", + "5.0 | 30.0", + "65.0 | 30.0", + "140.0 | nan", + "119.0 | 35.0", + "50.0 | 1000.0 | 500.0", + "3.0 | 50.0", + "80.0 | 300.0", + "120.0", + "50.0 | 500.0", + "nan | 1000.0 | 1011.0", + "110.0", + "20.0 | 15.0", + "100.0 | 340.0", + "nan | 15.0 | 150.0", + "68.0 | nan", + "nan | 7.0 | nan | nan", + "150.0 | 2.0", + "65.0 | 10.0", + "40.0 | 20.0 | 40.0", + "590.0", + "770.0", + "90.0 | nan", + "70.0 | 20.0", + "17.5 | 100.0", + "50.0 | 3.0", + "75.0 | 200.0", + "60.0 | 7.5", + "85.0 | 150.0", + "33.0 | 200.0", + "15.0 | 220.0", + "nan | 452.0", + "nan | 700.0", + "5.0 | 7.5 | 20.0", + "100.0 | 4.3", + "100.0 | 2.0", + "800.0 | 340.0", + "nan | 1000.0 | 1002.0", + "60.0 | 0.5", + "47.03", + "210.0", + "5.0 | 80.0", + "29.0 | 20.0 | 8.0", + "40.0 | 260.0", + "251.0", + "0.5 | 90.0 | 7.0", + "42.0 | nan | 1.0", + "nan | 3.0 | 1.0", + "17.0 | 140.0", + "129.0", + "30.0 | 15.0", + "14.0 | nan | nan", + "50.0 | 220.0", + "nan | 10.0", + "nan | 0.0", + "nan | 9400.0", + "6.0 | 340.0", + "40.0 | 345.0", + "50.0 | 75.0", + "17.0 | 150.0", + "nan | 604.0", + "30.0 | nan | 200.0", + "100.0 | 2.1", + "50.0 | 420.0", + "40.0 | 3.0 | 2.0 | 1.0", + "10.0 | 75.0", + "nan | 550.0 | 2500.0", + "10.0 | 50.0", + "nan | 1000.0 | 1005.0", + "nan | 6.0", + "100.0 | nan", + "nan | 1000.0 | 2000.0", + "nan | 510.0", + "40.0 | 8.0", + "1900.0", + "90.0", + "nan | 857.0 | 2000.0", + "32.0 | nan", + "10.0 | 340.0", + "89.0 | nan", + "nan | 130.0", + "10.0 | 180.0", + "40.0 | 4.0", + "300.0 | 500.0", + "668.0", + "142.0 | 20.0 | 8.0", + "40.8 | 8.0", + "29.0 | nan | 1.0", + "nan | 200.0 | 200.0", + "nan | 800.0", + "15.0 | 150.0", + "21.0 | 150.0", + "47.6", + "nan | 40.0 | 6.0", + "25.0 | 187.0", + "40.0 | 30.0", + "20.0 | nan | nan", + "nan | 70.0 | 350.0", + "31.0 | nan | 1.0", + "nan | 20.0 | 10.0", + "25.0 | 4.0", + "nan | 1470.0", + "nan | 25.0 | 10.0", + "40.0 | 140.0", + "1.0 | 30.0 | nan | nan | nan", + "28.0 | nan", + "11.0", + "nan | 480.0 | 480.0", + "56.0 | 250.0", + "nan | 801.0", + "50.0 | 2.3", + "30.0 | 200.0", + "nan | 53.0", + "nan | 15.0 | 25.0", + "5.0 | 150.0", + "10.0 | 350.0", + "10.0 | 5.0", + "60.0 | 80.0", + "nan | 1800.0", + "80.0 | 280.0 | 1.0", + "nan | 60.0 | 1000.0", + "70.0 | 170.0", + "80.0 | 450.0 | 1.0", + "30.0 | 1050.0", + "30.0 | 8.0", + "300.0 | 340.0", + "nan | 380.0", + "50.0 | 400.0", + "100.0 | 8.3", + "11.0 | nan", + "nan | 1.0 | 1.0", + "10.0 | 270.0", + "23.0 | 20.0", + "nan | 700.0 | 5.0", + "nan | 460.0", + "27.0 | 80.0 | 27.0 | 80.0 | 27.0 | 80.0 | 27.0", + "nan | 23.0 | 7.0", + "nan | 125.0 | nan", + "11.0 | 120.0", + "25.0 | 200.0", + "166.9", + "3.0 | 40.0 | 6.0", + "30.0 | 40.0", + "nan | 13.0", + "nan | 1.0", + "30.0 | 2.0", + "50.0 | 350.0 | 2.5", + "300.0 | 4.0", + "8.0", + "nan | 8.0", + "nan | 3.0", + "nan | 360.0", + "70.0 | 400.0", + "30.0 | 9.0", + "20.0 | 10.0", + "40.0 | 365.0", + "4.0 | 350.0", + "60.0 | 140.0", + "22.5 | 10.0", + "200.0 | nan", + "30.0 | 8.0 | 1.0", + "nan | nan | nan | 15.0", + "90.0 | 45.0", + "70.0 | 500.0 | 2000.0", + "100.0 | 6.0", + "30.0 | 250.0", + "nan | 548.0", + "10.0 | 20.0", + "50.0 | 156.0", + "30.0 | 450.0 | 500.0", + "1.3 | 50.0 | nan", + "65.0", + "nan | 45.0", + "40.0 | 600.0", + "11.2 | 3.0", + "nan | 60.0", + "43.9", + "55.0 | 8.0", + "40.0 | 380.0", + "5.0 | nan | 1.0", + "5.0 | 20.0", + "nan | 25000.0", + "40.0 | 400.0 | 6.0", + "31.0 | 150.0", + "244.0", + "120.0 | 7.0", + "47.0", + "nan | 7.0", + "50.0 | 1000.0 | 1200.0", + "24.0 | 500.0 | nan", + "nan | 125.0", + "nan | 12.0", + "28.0 | nan | nan", + "1.0 | nan", + "5.0 | 45.0", + "nan | 500.0 | nan | 2000.0", + "30.0 | 500.0", + "200.0 | 20.0", + "nan | 1000.0 | 1012.0", + "nan | 2000.0 | 1000.0 | nan", + "97.0 | nan", + "nan | 800.0 | 500.0", + "100.0 | 1000.0 | 500.0", + "50.0 | 80.0", + "49.0", + "40.0 | 468.0", + "31.2", + "nan | 610.0", + "60.0 | 2.5", + "30.0 | 910.0", + "8.0 | 50.0", + "20.0 | 20.0 | nan", + "nan | 450.0 | 400.0", + "nan | 52.0", + "30.0 | 1.0 | 8.0", + "50.0 | 80.0 | nan", + "10.0 | 17.0", + "67.0", + "30.0 | 7.0", + "45.0 | 25.0", + "nan | 430.0", + "1.0 | 15.0 | 10.0", + "24.6", + "60.0 | 5.0", + "nan | 23.0 | 8.0", + "13.3 | 40.0 | 6.0", + "nan | 118.0", + "380.0", + "50.0 | 1.6", + "700.0", + "50.0 | 300.0 | nan | nan", + "300.0 | 1.0", + "40.0 | 3.0 | 1.0", + "nan | nan | 1.2", + "nan | 400.0 | 900.0", + "1.0 | 30.0 | 8.0", + "60.0 | 100.0", + "37.0", + "110.0 | nan", + "7.5 | 20.0", + "nan | 150.0 | nan", + "45.0 | 1.0", + "5.0", + "900.0", + "20.0 | 3.0", + "50.0 | 440.0", + "8.9 | 40.0 | 6.0", + "500.0 | 3000.0 | 10000.0", + "15.0 | 300.0", + "nan | 240.0", + "10.0 | 48.0", + "45.0 | 125.0", + "20.0 | 7.0", + "80.0 | 720.0 | 1.0", + "30.0 | 100.0", + "840.0", + "8.3 | 40.0 | 6.0", + "nan | nan | 4.0", + "15.0 | 40.0", + "nan | 3.5", + "20.0 | 250.0", + "600.0", + "12000.0 | nan", + "40.0 | 174.0", + "10.0 | 130.0", + "6.0 | nan", + "40.0 | 100.0", + "105.0", + "100.0 | 500.0", + "69.0", + "17.0 | 80.0", + "nan | 300.0 | 150.0", + "68.5", + "10000.0 | nan", + "40.0 | 7.0", + "70.0 | 40.0", + "nan | nan | 3.0", + "110.0 | 700.0", + "nan | 30.0 | 8.0", + "nan | 1250.0", + "30.0 | 342.0", + "4.0 | 80.0", + "45.0 | 8.0", + "0.5 | 25.0 | 6.0", + "70.0 | 500.0", + "nan | 8300.0", + "0.84 | 3.0", + "10.0 | 1.0", + "nan | 5000.0", + "30.0 | 386.0", + "1.0 | 10.0 | 6.0", + "300.0 | 3.0", + "60.0 | 13.0", + "64.0 | 200.0", + "nan | 300.0 | 400.0", + "100.0 | 800.0", + "50.0 | 3.8", + "45.0 | 2.0", + "1.5 | nan | nan", + "50.0 | 400.0 | nan", + "117.0", + "25.0 | 3.0", + "36.0 | 20.0 | 8.0", + "nan | 1000.0 | 4000.0", + "nan | 25.0 | 8.0", + "52.0 | 270.0", + "nan | 50.0", + "nan | 5800.0", + "30.0 | 170.0", + "60.0 | 270.0", + "60.0 | 50.0 | 70.0", + "300.0 | nan", + "nan | 480.0 | 600.0", + "30.0 | 175.0", + "nan | 451.0", + "30.0 | 310.0", + "2.5 | 10.0", + "nan | 390.0", + "35.0 | 2.0", + "nan | 1000.0 | 1500.0", + "189.0", + "55.0 | 365.0", + "80.0 | nan", + "6.0", + "100.0 | 20.0", + "20.0 | 100.0", + "80.0 | 190.0", + "40.0 | 1000.0 | 1000.0", + "61.0", + "20.0 | 80.0", + "80.0 | 500.0", + "55.0 | 0.5", + "1.0 | 340.0", + "50.0 | 280.0", + "nan | 20.0 | 8.0", + "15.0", + "52.2", + "nan | 1000.0 | 3000.0", + "100.0 | nan | 10.0", + "430.0", + "41.0 | 10.0", + "70.0 | 80.0", + "1.0 | 30.0 | nan | nan", + "80.0 | 1.0", + "50.0 | 700.0 | 450.0", + "nan | 800.0 | 1500.0", + "60.0 | 280.0", + "80.0 | 200.0", + "20.0 | 8.0", + "100.0 | 365.0", + "nan | 1200.0", + "27.0 | nan", + "1000.0", + "25.0 | nan", + "16.0 | 150.0", + "nan | 500.0 | nan | 1200.0", + "nan | 238.0", + "15.0 | 15.0", + "nan | 650.0", + "nan | 40.0", + "40.0 | 1.0", + "80.0 | 800.0", + "nan | 850.0", + "8.0 | 40.0", + "30.0 | 150.0 | nan", + "390.0", + "70.0 | 350.0", + "10.0", + "80.0 | 3.0", + "42.0", + "30.0 | 45.0", + "30.0 | nan", + "20.0 | 1.0", + "65.0 | 250.0", + "52.0 | 10.0", + "40.0 | 2.0", + "nan | 1000.0 | 1007.0", + "15.0 | 260.0", + "nan | 2.8", + "51.0 | 270.0", + "5.0 | 10.0", + "25.0 | 0.5", + "30.0 | 201.0", + "nan | 40.0 | 8.0", + "5.0 | 12.0 | 20.0", + "265.0 | nan", + "90.0 | 350.0", + "nan | 500.0 | nan | 3000.0", + "nan | 100.0 | 400.0", + "5.0 | 20.0 | 7.0", + "8.0 | 340.0", + "nan | nan | 4.8", + "42.0 | 10.0", + "3.0 | 200.0", + "nan | 5500.0", + "nan | 450.0 | 1200.0", + "30.0", + "35.0 | 30.0", + "20.0 | 12.0", + "88.0 | nan", + "70.0 | 150.0", + "745.0", + "20.0 | 18.0", + "nan | 480.0", + "nan | nan | 2.0", + "3.2 | 40.0 | 6.0", + "10.0 | nan | nan", + "30.0 | 200.0 | 1.9", + "152.0", + "26.0 | nan", + "10.0 | 15.0", + "10.0 | 400.0", + "60.0 | 20.0", + "nan | 1.2", + "nan | 20.0 | 3.0", + "60.0 | 190.0", + "nan | 285.0", + "30.0 | 265.0", + "50.0 | 430.0", + "80.0 | 550.0 | 1.0", + "62.0 | nan", + "60.0 | 260.0", + "nan | 2000.0 | 1100.0", + "50.0 | 190.0", + "140.0", + "nan | 1500.0 | 2000.0", + "70.0 | 100.0", + "20.0 | 150.0", + "nan | 3900.0", + "6.0 | nan | nan", + "60.0 | 40.0", + "nan | 618.0", + "nan | 400.0", + "80.0 | 175.0", + "40.0 | 30.0 | 30.0", + "50.0 | 13.6", + "24.0 | nan | nan", + "15.0 | 10.0", + "89.0", + "nan | 580.0", + "100.0 | 800.0 | 1000.0", + "220.0", + "nan | 210.0 | nan | nan", + "20.0 | 40.0", + "nan | nan | 450.0", + "35.0 | 0.1", + "40.0 | 1900.0", + "47.0 | 34.0", + "30.6", + "30.0 | 2000.0", + "nan | 160.0", + "55.0 | 250.0", + "40.0 | 3.0 | 1.0 | 1.0", + "40.0 | 500.0", + "17.0 | 200.0", + "70.0 | nan | 150.0", + "60.0 | 200.0 | nan", + "100.0 | 400.0", + "30.0 | 0.0", + "nan | 500.0 | 3000.0 | 10000.0", + "nan | 40.0 | 9.0", + "24.0 | 8.0", + "60.0 | nan | 5.0", + "15.0 | 365.0", + "95.0", + "nan | nan | 121.0", + "60.0 | 350.0", + "42.4", + "nan | 400.0 | 10.0", + "5.6 | 40.0 | 6.0", + "50.0 | 40.0", + "20.0 | 7.5", + "130.0 | nan", + "100.0 | 1000.0 | 1000.0", + "193.0", + "50.0 | 8.0", + "73.0", + "57.0 | 250.0", + "1300.0", + "nan | nan | 258.0", + "2000.0", + "40.0 | 180.0 | nan", + "nan | 27.0 | 1.0", + "5.0 | 7.0", + "10000.0 | 5.0", + "17.0 | nan", + "55.0 | 300.0", + "175.0", + "60.0 | 70.0", + "nan | nan | 20.0", + "nan | nan | 40.0 | 8.0", + "55.0 | 10.0", + "50.0 | 800.0 | 1200.0", + "30.0 | 216.0", + "112.0", + "17.0 | 230.0", + "2.0 | 20.0 | 8.0", + "30.0 | 308.0", + "33.0 | nan", + "nan | 500.0 | 1000.0", + "101.0", + "3.0 | nan | nan", + "nan | 330.0", + "10.0 | 10.0 | 10.0", + "50.0 | 30.0 | 8.0", + "30.0 | 7.5", + "32.0 | nan | nan", + "nan | 224.0", + "176.0", + "341.0", + "60.0 | 50.0 | 150.0", + "34.0 | nan | 1.0", + "nan | 480.0 | nan", + "nan | 80.0", + "nan | 540.0", + "650.0", + "60.0 | 50.0 | 30.0", + "220.0 | nan", + "60.0 | 8.0", + "60.0 | 360.0", + "60.0 | 200.0", + "10.0 | 25.0", + "30.0 | 1730.0", + "nan | 280.0", + "24.0 | 30.0", + "nan | 110.0", + "100.0 | 450.0", + "56.0 | nan", + "37.8 | 8.0", + "20.0 | 2.0", + "80.0 | 10.0", + "80.0 | 30.0", + "nan | 500.0 | 1000.0 | 10000.0", + "40.0 | 190.0", + "nan | 8000.0", + "70.0 | 1.0", + "nan | 1000.0 | 1001.0", + "nan | 380.0 | nan", + "150.0", + "50.0 | 19360.0", + "nan | 70.0", + "20.0 | 220.0", + "nan | 140.0", + "30.0 | 910.0 | nan", + "nan | 1000.0", + "30.0 | 30.0", + "46.0 | nan", + "nan | 20.0", + "43.8", + "15.0 | nan", + "56.0 | 200.0", + "30.0 | 70.0", + "nan | 7.5", + "39.4", + "40.0 | 165.0 | nan", + "nan | 1050.0", + "30.0 | nan | nan", + "33.0", + "51.0", + "50.0 | 0.8", + "1.0 | 5.0", + "30.2", + "16.0 | nan", + "nan | 600.0 | 2500.0", + "60.0 | 50.0", + "50.0 | 300.0", + "100.0 | 150.0", + "nan | 500.0 | 1300.0 | 70.0", + "27.0 | 20.0 | 8.0", + "100.0 | 390.0", + "nan | nan | 1.0", + "54.0 | 250.0", + "2.0 | 340.0", + "5.0 | 1.0", + "nan | 585.0", + "45.0 | 3.0", + "25.0", + "1.0 | 20.0", + "72.0 | nan", + "80.0 | 1000.0", + "2.0 | 40.0", + "40.0 | 350.0", + "100.0 | 700.0 | 1500.0", + "60.0 | 6.0", + "25.0 | 6.0", + "15.0 | 175.0", + "35.0 | nan", + "100.0 | 220.0", + "30.0 | 1000.0 | 2000.0", + "100.0 | 844.0", + "30.0 | 100.0 | 100.0", + "10.0 | nan", + "40.0 | 200.0", + "35.0 | 365.0", + "3.0 | nan", + "45.0 | 30.0", + "nan | nan | 75.0", + "115.0 | nan", + "40.0 | 6.0", + "40.0 | 40.0 | 5.0", + "45.0 | 55.0", + "nan | 480.0 | 500.0", + "30.0 | 400.0", + "nan | 550.0", + "60.0 | 60.0", + "40.0 | 230.0", + "100.0 | nan | 5.0", + "nan | 160.0 | nan", + "125.0", + "nan | 30.0", + "250.0 | 100.0", + "550.0 | nan", + "4.0 | 0.0", + "50.0 | 170.0", + "50.0 | 250.0 | 300.0", + "nan | 15.0", + "nan | 400.0 | 600.0", + "20.0 | 240.0", + "510.0", + "24.0 | nan", + "nan | 79.0", + "80.0 | 150.0", + "20.0 | 200.0", + "nan | 275.0", + "nan | 10.0 | 3.0", + "unkown", + "0.8 | nan", + "4.0", + "50.0 | 585.0", + "7.0 | 20.0 | 8.0", + "40.0 | 120.0", + "nan | 850.0 | nan", + "740.0", + "8.0 | nan", + "30.0 | 330.0", + "252.0", + "nan | 230.0", + "31.7 | 6.0", + "0.5", + "54.0 | 10.0", + "10.0 | 20.0 | 8.0", + "88.0 | 200.0", + "100.0 | 15.0 | 1.0", + "995.0", + "350.0", + "20.0 | 600.0", + "3.0", + "76.2", + "nan | 300.0 | 1100.0", + "20.0 | nan | 5.0", + "4.0 | 20.0 | 8.0", + "43.0 | nan", + "1.0 | 10.0", + "nan | nan", + "50.0 | 130.0", + "100.0 | 8.4", + "80.0 | 2.0", + "20.0 | 160.0", + "100.0 | 15.0 | 5.0", + "nan | 500.0 | 1500.0", + "nan | 500.0 | nan", + "160.0", + "nan | 564.0", + "100.0 | 8.0", + "20.0 | 50.0", + "18.0 | nan", + "25.0 | 100.0", + "40.0 | 20.0 | 8.0", + "3.0 | 0.0", + "nan | 210.0", + "25.0 | 35.0", + "40.0 | 165.0", + "15.0 | 45.0", + "nan | 900.0", + "55.0", + "10.0 | 210.0", + "23.0 | nan", + "60.0 | 1.0", + "60.0 | 365.0", + "17.0", + "300.0 | 200.0", + "5.0 | 60.0", + "42.0 | nan", + "70.0 | 350.0 | nan", + "700.0 | 420.0", + "17.0 | 5.0", + "19.0", + "nan | 1000.0 | 12000.0", + "nan | 30.0 | 7.0", + "79.0", + "40.0 | 150.0 | 150.0", + "18.0", + "34.0 | 200.0", + "130.0", + "39.0", + "30.0 | 1000.0", + "nan | 90.0", + "80.0 | 5.0", + "310.0", + "10.0 | 100.0", + "nan | 300.0 | 6.0", + "nan | 10000.0", + "70.0 | 180.0", + "78.0", + "100.0 | 0.6", + "60.0 | 500.0", + "nan | 2200.0", + "65.0 | 2.0", + "30.0 | 50.0", + "120.0 | 2.0", + "235.0", + "nan | 1000.0 | 60.0 | 1000.0", + "1050.0", + "45.0 | 7.5", + "nan | 8.0 | 5.0", + "25.0 | 400.0", + "40.0 | 400.0", + "20.0 | 35.0", + "140.0 | 0.5", + "45.0 | 80.0", + "90.0 | 7.0", + "nan | 25.0 | 7.0", + "80.0 | 170.0", + "74.0 | 200.0", + "10.0 | 370.0", + "27.0 | 80.0 | 27.0 | 80.0 | 27.0", + "30.0 | 6.0", + "141.0 | nan", + "nan | 410.0", + "65.0 | 300.0", + "50.0 | 300.0 | nan", + "525.0", + "20.0 | nan | 10.0", + "50.0 | 1000.0 | 1800.0", + "370.0", + "30.0 | 850.0", + "56.1", + "80.0 | 500.0 | 1400.0", + "35.0 | 200.0", + "24.0", + "nan | 480.0 | 300.0", + "30.0 | 400.0 | 450.0", + "nan | 473.0", + "nan | 8600.0", + "50.0 | 130.0 | 1.0", + "200.0 | 200.0", + "nan | 375.0", + "41.2", + "23.0 | 8.0", + "30.0 | 260.0", + "nan | 1500.0", + "nan | 75.0 | 1400.0", + "50.0 | 0.3", + "38.0 | nan", + "0.5 | 7.5", + "27.0 | 60.0 | 27.0 | 60.0 | 27.0 | 60.0 | 27.0", + "60.0 | 20.0 | 7.0", + "5.0 | 400.0", + "nan | 8.0 | 1.0", + "50.0 | 500.0 | 500.0", + "nan | 700.0 | 1800.0", + "100.0 | 350.0", + "460.0", + "30.0 | 5.0", + "60.0 | 450.0", + "35.0 | nan | 1.0", + "45.0 | 7.0", + "nan | 230.0 | nan", + "100.0 | 250.0", + "100.0 | 200.0", + "nan | 222.0", + "80.0", + "31.0 | nan", + "12.0 | nan", + "45.0 | 300.0", + "131.0 | 200.0", + "nan | 5.0", + "46.0", + "320.0", + "nan | 195.0", + "50.0 | 830.0", + "40.0 | 80.0", + "1.0 | 30.0 | 6.0", + "20.0 | 130.0", + "25.0 | 120.0", + "50.0 | 10.0", + "39.0 | 206.0 | 186.0", + "50.0 | 16.0", + "25.0 | 5.0", + "60.0 | 93.0", + "nan | nan | 213.0", + "nan | nan | 1500.0", + "80.0 | 200.0 | 200.0", + "nan | 1400.0", + "30.0 | 1.0", + "8.0 | 23.0", + "nan | 250.0", + "24.0 | 500.0", + "100.0 | 10.0", + "12.0 | 600.0 | 600.0", + "70.0 | 90.0", + "95.0 | 20.0 | 8.0", + "50.0", + "nan | 405.0", + "180.0", + "45.0", + "40.0 | 70.0", + "22.0 | 80.0", + "70.0 | 800.0", + "nan | 260.0", + "nan | 400.0 | 400.0", + "40.0 | 6.0 | 2.0", + "nan | 800.0 | 2500.0", + "123.0", + "50.0 | 350.0", + "60.0 | 10.0", + "120.0 | nan", + "40.0 | 2000.0 | nan", + "60.0 | 150.0", + "5.0 | 35.0", + "41.0", + "130.0 | 40.0", + "0.5 | 50.0", + "60.0 | 900.0", + "114.0", + "5.0 | nan", + "nan | 2.5", + "nan | 1000.0 | 1006.0", + "1.0 | 7.5", + "nan | 175.0", + "1.0", + "4.0 | 340.0", + "54.0", + "50.0 | nan | nan", + "80.0 | 22.0", + "32.0 | 200.0", + "38.0 | 20.0 | 8.0", + "17.0 | 110.0", + "630.0", + "50.0 | 130.0 | 100.0", + "20.0 | 5.0 | 10.0", + "1.1 | nan", + "50.0 | 450.0", + "145.0 | nan", + "25.0 | 8.0", + "80.0 | 400.0", + "50.0 | 50.0", + "35.0 | 8.0", + "30.0 | 500.0 | 2000.0", + "85.0 | 30.0 | 7.0", + "nan | nan | 8.0", + "80.0 | 600.0", + "21.0", + "60.0 | 560.0", + "nan | 5501.0", + "1000.0 | 340.0", + "50.0 | 1400.0 | 500.0", + "420.0", + "45.0 | 200.0", + "50.0 | 640.0", + "70.0 | 100.0 | nan", + "85.0", + "20.0 | 20.0 | 8.0", + "60.0 | 250.0", + "53.0 | 250.0", + "25.0 | 500.0", + "nan | 150.0", + "70.0 | 600.0", + "50.0 | 700.0 | 700.0", + "nan | 370.0", + "50.0 | 700.0 | 500.0", + "nan | 36.0 | 1.0", + "5.0 | 40.0", + "60.0 | 750.0", + "620.0", + "10.0 | 200.0", + "184.2", + "22.0 | nan", + "13.0", + "50.0 | 15.0", + "13.0 | 80.0", + "20.0 | 10.0 | 0.5", + "nan | 1000.0 | 1000.0", + "nan | nan | nan", + "nan | 250.0 | nan", + "20.0", + "30.0 | 300.0", + "31.0 | 20.0 | 8.0", + "1400.0", + "65.0 | 0.5", + "nan | 717.0", + "25.0 | 500.0 | 1000.0", + "2.3", + "nan | 4800.0", + "90.0 | 440.0", + "nan | 790.0", + "1100.0", + "30.0 | 1650.0", + "25.0 | 7.0", + "92.0", + "60.0 | 700.0", + "nan | 600.0 | 2000.0", + "30.0 | 120.0", + "30.0 | 80.0", + "20.0 | 300.0", + "nan | 90.0 | nan", + "55.0 | 650.0", + "0.0 | 340.0", + "250.0", + "35.0 | 300.0", + "19.0 | nan | nan", + "10.0 | 10.0", + "60.0 | 20.0 | 8.0", + "nan | 1.5", + "60.0 | 600.0", + "60.0 | 550.0", + "37.0 | 1.0 | 1.0", + "40.0 | 55.0", + "3.0 | 57.0", + "60.0 | 28.0", + "33.7 | 67.5", + "57.0 | nan", + "50.0 | 7.5", + "nan | nan | 5.0", + "100.0 | 0.5", + "6.0 | 2.0", + "27.0 | 70.0 | 27.0 | 70.0 | 27.0 | 70.0 | 27.0", + "60.0 | 300.0", + "50.0 | 270.0", + "60.0 | 400.0", + "610.0", + "44.2 | 8.0", + "nan | 1000.0 | 1009.0", + "nan | nan | 1.3", + "nan | 0.5", + "700.0 | 1970.0", + "55.0 | 2.0", + "nan | 35.0", + "70.0 | 5.0", + "35.0", + "60.0 | 125.0", + "100.0 | 5.0", + "30.0 | 10.0", + "8.0 | 80.0", + "40.0 | 3.0 | 3.0 | 1.0", + "3.0 | 20.0 | 8.0", + "nan | 2.0", + "50.0 | 60.0", + "2.5", + "60.0 | nan", + "50.0 | 27.0", + "21.0 | nan", + "nan | 350.0 | 150.0", + "80.0 | 350.0", + "20.0 | 20.0", + "60.0 | 4.0", + "25.0 | 10.0", + "23.0", + "35.0 | 10.0 | 1.0", + "10.0 | 9.0", + "30.0 | 230.0", + "65.0 | 350.0", + "100.0 | 35.0", + "30.0 | 650.0", + "550.0 | 2500.0", + "54.0 | nan", + "nan | nan | 50.0", + "40.0", + "126.0 | nan", + "230.0", + "51.0 | 250.0", + "60.0 | 420.0", + "3.5", + "28.0", + "28.0 | 8.0", + "nan | 45.0 | nan", + "50.0 | nan", + "nan | 300.0", + "30.0 | 600.0 | 2500.0", + "nan | 400.0 | 500.0", + "780.0", + "48.8", + "nan | 2000.0", + "0.8", + "60.0 | 1300.0", + "nan | 1000.0 | 1003.0", + "74.4", + "60.0 | 7.0", + "100.0 | 30.0", + "nan | 700.0 | 700.0", + "27.0 | 80.0 | 27.0", + "122.0", + "300.0 | 2.0", + "55.0 | 30.0", + "181.0 | nan", + "2.0", + "2.0 | 0.0", + "48.0 | 150.0", + "130.0 | 10.0", + "52.0 | 200.0", + "6.0 | 10.0", + "80.0 | 2100.0", + "30.0 | 340.0", + "50.0 | nan | 1200.0", + "400.0 | 17.0", + "60.0 | 105.0", + "nan | nan | 10.0", + "nan | 600.0 | 3000.0", + "10.0 | 40.0 | nan", + "nan | 20.0 | 6.0", + "44.0 | 200.0", + "60.0 | 160.0", + "0.5 | nan", + "40.0 | 40.0", + "80.0 | 1800.0", + "64.7", + "50.0 | nan | nan | 1200.0", + "68.0", + "30.0 | 172.0", + "30.0 | 5.5", + "50.0 | 250.0 | nan", + "200.0", + "20.0 | 370.0", + "150.0 | nan", + "80.0 | 8.0", + "70.0 | 2.0", + "30.0 | 264.0", + "1.6 | 40.0 | 6.0", + "100.0 | 40.0", + "nan | 500.0 | 2000.0", + "30.0 | 258.0", + "10.0 | 30.0", + "80.0 | 2300.0", + "40.0 | 450.0", + "90.0 | 100.0", + "15.0 | 20.0 | 8.0", + "930.0", + "nan | 500.0 | 750.0", + "25.0 | 20.0 | 5.0", + "60.0 | 1000.0 | 1000.0", + "20.0 | 180.0", + "38.0", + "nan | 20.0 | 7.0", + "40.0 | 350.0 | 1000.0", + "nan | 51.0", + "270.0", + "62.0", + "170.0", + "nan | 12000.0", + "99.4", + "76.0 | 200.0", + "nan | 520.0", + "130.0 | 20.0", + "50.0 | 400.0 | 450.0", + "10.1 | 3.0", + "40.0 | 118.0", + "nan | nan | 167.0", + "20.0 | 450.0", + "45.0 | 0.5", + "nan | 20.0 | 7.5", + "100.0 | 413.0", + "nan | 54.0", + "8.0 | 100.0", + "300.0", + "190.0 | 40.0", + "nan | 500.0 | 600.0", + "200.0 | 400.0", + "30.0 | nan | 150.0", + "450.0", + "88.0", + "60.0 | 9.0", + "31.0 | 200.0", + "nan | 350.0", + "nan | 1700.0", + "150.0 | 10.0", + "5.8 | 40.0 | 6.0", + "54.0 | 150.0", + "33.0 | 1.0", + "27.0", + "66.0", + "nan | 4.0", + "30.0 | 3.0", + "10.0 | 35.0", + "1200.0", + "48.0 | 8.0", + "17.5", + "nan | 2300.0", + "1.7 | 40.0 | 6.0", + "60.0 | 1000.0", + "50.0 | 700.0 | 250.0", + "60.0 | nan | nan", + "2.0 | 25.0 | 6.0", + "20.0 | nan | 1.0", + "150.0 | 860.0", + "800.0", + "50.0 | 630.0", + "nan | 190.0", + "48.0 | nan | 1.0", + "55.0 | 0.5 | 30.0 | 0.5 | 0.5", + "32.0", + "1000.0 | 60.0 | 150.0", + "227.5", + "40.0 | 20.0", + "20.0 | 150.0 | 1.0", + "149.0", + "40.0 | 390.0", + "52.0 | 250.0", + "nan | 500.0 | 1400.0", + "95.0 | nan", + "100.0 | 3.3", + "30.0 | 180.0", + "120.0 | 365.0", + "40.0 | 15.0", + "20.0 | 60.0", + "383.0", + "25.0 | 187.0 | nan", + "nan | 500.0", + "nan | 38.0 | 1.0", + "60.0 | 50.0 | 15.0", + "11.0 | 150.0", + "45.0 | 10.0", + "96.0 | nan", + "100.0 | 370.0", + "40.0 | 20.0 | nan | 90.0", + "40.0 | 400.0 | nan", + "60.0 | 50.0 | 75.0", + "nan | 200.0 | nan", + "40.0 | 175.0", + "40.0 | 14.0", + "70.0 | 50.0", + "2.0 | 4.0 | 10.0", + "60.0 | 2.0", + "50.0 | 400.0 | 1500.0", + "65.0 | 150.0", + "30.0 | 500.0 | 1000.0", + "25.0 | 300.0", + "50.0 | 210.0", + "50.0 | 120.0", + "50.0 | 6.0", + "41.7 | 8.0", + "50.0 | 5.0", + "80.0 | 40.0", + "80.0 | 225.0", + "400.0 | 200.0", + "16.0", + "80.0 | 250.0", + "100.0 | 1.0", + "10000.0", + "30.0 | 450.0" + ] + } + } + ] + }, + "name": "thickness", + "description": "A list of thicknesses of the individual layers in the stack. Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous filed.\n- State thicknesses in nm\n- Every layer in the stack have a thickness. If it is unknown, state this as \u2018nan\u2019\n- If there are uncertainties, state the best estimate, e.g write 100 and not 90-110\nExample\n200\nnan |250\n100 | 5 | 8", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Undoped | Li-FTSI", + "PFO | Unknown", + "Er; Yb", + "Unknown | B; F; PEI", + "Unknown | Zr", + "Al(NO3)3\u00a0\u00b7 9H2O", + "PMo12 | Unknown | Unknown", + "Unknown | TiCl4; Mg", + "nan | Al", + "nan | Au-np", + "N-DPBI", + "Unknown | Li-TFSI; TiCl4", + "Unknown | Au-np; Li-TFSI", + "Bi2O2S-np", + "PEI", + "Unknown | CsBr", + "Unknown | Au@Ag-np; Li-TFSI | Unknown", + "N-Graphene", + "Unknown | I", + "1-butyl-3-methylimidazolium tetrafluoroborate", + "Unknown | NaCo2O4", + "H2PtCl6", + "Polystyrene", + "CH3NH3I", + "CsAc", + "UV", + "Unknown | CsI", + "Unknown | N", + "Unknown | Oleic acid", + "Unknown | Ruthenium", + "N-Graphene-nanosheets | Unknown", + "Unknown | Ag@SiO2 | Unknown", + "Unknown | NaYF4:Yb3:Er:@SiO2-np | Unknown", + "Unknown | Eu", + "Unknown | N; Ta", + "PMMA | Unknown", + "Y", + "Unknown | BF4", + "Undoped | Undoped", + "Galliumnitrate\u00a0hydrate", + "PFNOX", + "bis-C60", + "Ta", + "Eu(NO3)3\u00b76H2O", + "Acetylacetone", + "Ni", + "Al(NO3)3\u00a0\u00b7 9H2O; La(NO3)3\u00a0\u00b7 6H2O", + "Ga", + "Pyridine | Undoped", + "Ag", + "Unknown | NaYF4:Yb:Er-np", + "Mg", + "Unknown | Zn", + "Cs", + "Unknown | FeN3O9", + "Unknown | Ag@SiO2", + "ITIC | Undoped", + "InCl3", + "Unknown | TiO2-nw", + "In2O3", + "Unknown | Zn0.5Cd0.5S-np", + "DBU", + "Undoped | Mg | Undoped | Undoped", + "Unknown | TiCl4; Ethyl cellulose", + "D35", + "rGraphene oxide", + "Unknown | Ag-np", + "nan | MAI", + "nan | FK209", + "Urea", + "nan | Thiourea", + "EDTA", + "Tetraisopropil titanate butanol | TiCl4", + "(RuCp*mes)2 | Undoped", + "Unknown | N-DBPI", + "TiCl4 | Nb", + "Nb2O5", + "Unknown | SDBAC", + "Ethanolamine", + "CoSe", + "Unknown | ZnGa2O4:Eu(III)", + "1H molecule | Undoped", + "Ti", + "nan | Au-nw", + "CF4", + "AlCl3", + "Hydrogen | Undoped", + "Li-TFSI; Mg(TFSI)2", + "Unknown | Pluronic P-123", + "Al", + "Unknown | TiCl4 | Unknown", + "Ga2O3", + "Sb | Unknown", + "NaCl | Unknown", + "Al | Undoped", + "Al | nan", + "Unknown | Mg", + "Unknown | Er", + "DMOPA | Unknown", + "Dopamine", + "Undoped | P", + "Glycine", + "Unknown | Au@SiO2-np", + "Er", + "Phosphorene nanocomposites", + "ethanolamine", + "Unknown | NaYF4:Yb3:E3", + "oTb", + "Unknown | Fe", + "oTb | Unknown", + "Unknown | Graphene oxide", + "Yttrium", + "Graphene oxide | Unknown", + "F", + "Unknown | Zn0.25Cd0.75S-np", + "Unknown | EA | Unknown", + "Unknown | Au@TiO2 NPs", + "Unknown | Unknown | Cu", + "Undoped | p-Toluenesulfonic acid", + "SnCl2", + "Unknown | Nb", + "TMAH", + "tert-butanol", + "BF4", + "CF3NaO2S", + "Unknown | ZnCdS-np", + "Nb | TiCl4", + "Unknown | TPFPB; LiClO4", + "Unknown | TPFPB", + "N:Graphene-oxide", + "Unknown | Terpineol", + "Unknown | Unknown | Li-TFSI", + "Cs2CO3", + "Unknown | Au@Ag-np; Li-TFSI", + "Graphene oxide | Graphene oxide", + "Li-TFSI; Mg-TFSI | Li-TFSI", + "Li", + "La(NO3)3\u00a0\u00b7 6H2O", + "2,2,2-trifluoroethanol", + "Urea | Unknown", + "RGraphene oxide | RGraphene oxide", + "Unknown | PEG", + "Graphene; TiCl4 | Graphene", + "NbCl5", + "Cl", + "DPM2; OC10H21", + "Triton X-100", + "Li-TFSI; TiCl4", + "TiCl4 | TiCl4", + "TiCl4 | Decamethylcobaltocene", + "Unknown | SiW12", + "AgInS2-QD", + "Unknown | Li-TFSI | Unknown", + "Graphdiyne", + "Oleamide", + "Ti(acac)2", + "nan | Li-TFSI", + "F8BT | Unknown", + "Phen-I", + "Unknown | Graphene oxide | Unknown", + "Unknown | Mg; Er", + "Unknown | Ag-nw", + "CNT", + "Unknown | Li-TFSI", + "Bi | nan", + "TBABF4 | Unknown", + "Y2O3", + "Undoped | Undoped | Cu", + "Unknown | rGraphene oxide", + "nan | Ga", + "Yb", + "F | F", + "Unknown | H20", + "Chlorine", + "Ta | Undoped", + "Unknown | H", + "Unknown | SnCl2", + "DMOAP | Unknown", + "Unknown | Li; Er; Yb", + "TiCl4 | Ag-np", + "Ionic liquid", + "Unknown | NbCl5", + "nan | AuAg-np", + "nan | TiCl4", + "Unknown | Ge-np", + "Li-TFSI", + "Unknown | Al | Unknown", + "Unknown | BaTiO3", + "Fe | nan", + "EA", + "Unknown | N-DPBI", + "HCl", + "TAA", + "Unknown | Au@SiO2", + "Graphene-nanosheets | Unknown", + "Unknown | Au@Pt@Au-np | Unknown", + "TiCl4 | Undoped | Undoped", + "Er; Mg", + "DIO", + "Li-TFSI | nan", + "NaCl", + "Unknown | Triethylamine; HCl | Unknown", + "LiCl2; PEG", + "Cd; Y", + "Unknown | CeO2", + "SWCNTs | SWCNTs", + "Pluronic P123 surfactant", + "TiCl4 | Na-TFSI", + "DMBI", + "CoCl2", + "Unknown | Co-TFSI", + "Ga(acac)3 | Ga(acac)3", + "DPM; OE", + "Unknown | Triton 100-X", + "KCl", + "KOH", + "Potassium O-hexyl xanthate", + "2-CP", + "Ru | Unknown", + "SnOCl2", + "Al(NO3)3; Ethanolamine", + "DMOAP | Undoped", + "Unknown | SrO", + "Li2CO3", + "Ru", + "BaSnO3", + "Fe", + "Compound 2 | Unknown", + "Zn", + "Zr | N", + "Unknown | Unknown | Unknown | MoO3", + "Unknown | HI", + "Unknown | TiCl4 | Tm; Yb", + "Unknown | Al; In", + "Unknown | TiO4", + "Unknown | Li-TSFI", + "CTAB | Unknown", + "Unknown | Ta", + "Unknown | Ethylene cellulose; TiCl4", + "Phosphotungstic acid; WCl6", + "Undoped", + "PNDI-2T | Undoped", + "Unknown | Yb:Er", + "TiCl4 | Unknown", + "Mxene | Mxene", + "Nb; TiCl4", + "NACl", + "nan | CsBr", + "Unknown | Undoped", + "Ethyl cellulose | Unknown", + "Glucose", + "Unknown | Unknown | Nb", + "Unknown | LiFTSI", + "Sn | Unknown", + "SnCl2; MercaptoPropionic acid; Urea", + "Al | Unknown", + "HCl | Unknown", + "TOPD", + "Unknown | Li-TFSI; TiCl4 | Unknown", + "Tantalum(V) ethoxide", + "Acetic Acid", + "MAI | Unknown", + "IL-BF4", + "Undoped | AlCl", + "Unknown | La", + "B-TiO2", + "CNT, DMSO", + "RuCl3", + "Unknown | InCl3 | Unknown", + "rGraphene oxide | Unknown", + "Unknown | TiCl4; SWCNTs", + "Unknown | Graphene", + "Unknown | NaYF4:Yb:Tm-np", + "TiCl4", + "Undoped | Li-TFSI", + "Carbon-np", + "Unknown | Li", + "In | Unknown | Unknown", + "Unknown | Unknown | NaYbF4:Ho-np", + "nan | TAA", + "Mg | Unknown", + "Unknown", + "Samarium", + "Unknown | Au-np; TiCl4", + "TiCl4 | Undoped", + "nan | Nb", + "TiCl4 | nan", + "K", + "nan | Ag", + "Unknown | YCl3", + "Graphene", + "Unknown | SWCNTs", + "Undoped | W", + "Yb:Er", + "Unknown | Ag", + "Pyridine | Unknown", + "In", + "Unknown | Ho; Yb; Mg", + "N; PEI", + "Unknown | ZnGa2O4-np", + "Graphene | Graphene", + "Nb", + "H2O", + "PEIE", + "Unknown | 2,6-Py | Unknown", + "Unknown | Cl", + "Ga | Undoped", + "HMB", + "TBAPF6", + "Ethanolamine | Unknown", + "Unknown | Sb | Unknown", + "4,4\u2032-BiPy | nan", + "W2(hpp)4", + "N-Graphene | Unknown", + "DBU | Unknown", + "La", + "Unknown | F127", + "Unknown | Yb", + "Unknown | CTAB", + "N2H8S", + "Unknown | Zn0.75Cd0.25S-np", + "Unknown | TiCl4", + "TBAB", + "PF6", + "Unknown | SnOCl2", + "BIZ | Undoped", + "2H molecule | Undoped", + "Al2O3", + "LiCl", + "MoCl5", + "PMMA", + "Li-TFSI; Mg(TFSI)2 | Li-TFSI", + "F; Sn", + "N", + "Gd", + "TiCl4 | Li-TFSI", + "Co", + "Nb(OCH2CH3)5", + "n-DMBI", + "Unknown | CeO2:Eu", + "TiCl4 | polystyrene", + "Unknown | B", + "V | Undoped", + "SnCl4", + "TBABF4", + "Unknown | Ba(OH)2", + "TiAcAc", + "Unknown | AlCl3:NH3", + "Graphene-QDs", + "Titanium acetylacetonate", + "Unknown | In", + "2,6-Py | Unknown", + "Bphen", + "Unknown | Cs", + "Guanidinium chloride", + "N-DMBI | Unknown", + "Zr", + "Unknown | Ni | Unknown", + "Unknown | Carbon-np", + "ZnCl2", + "In | Unknown", + "Oleic Acid", + "C60-substituted catechol | C60-substituted catechol", + "TiCl4 | Unknown | Unknown", + "CdS", + "Undoped | TiCl4", + "Stearic acid; EDA", + "N2", + "Unknown | TAA", + "2,2\u2032-BiPy | nan", + "Undoped | Acetylacetone; Triton X-100", + "Cd", + "Carbon-QDs", + "W", + "Bi | Unknown", + "Sn", + "Unknown | F", + "Undoped | TiCl4 | TiCl4", + "Unknown | Sn", + "Unknown | PVC-g-POEM", + "Unknown | rGraphene oxide; Li-TFSI", + "Undoped | Undoped | Undoped", + "2D graphene", + "Mxene | Mxene | Unknown", + "Graphdiyne | Graphdiyne", + "NH4Cl", + "Nb | Unknown", + "Na2S", + "AgNO3 | Undoped | Undoped", + "TiCl4 | K-TFSI", + "MAI | Unknown | Unknown", + "TaCl", + "Unknown | In | Unknown", + "Unknown | Polystyrene", + "TaCl5", + "Unknown | DMBI", + "Fe(NO3)3 | Unknown", + "Mg | Undoped | Undoped", + "Unknown | Al", + "PS", + "IZ | Undoped", + "CTAB", + "NH4F", + "Unknown | HCl", + "CeOx; TiCl4 | Unknown", + "TiAc2", + "Unknown | Sb", + "Unknown | Li; Mg | Unknown", + "Unknown | Li; Ho; Yb", + "Triethylamine | Unknown", + "Sb", + "NOBF4", + "Unknown | B; F", + "Nb | Undoped", + "Unknown | Li-acetat", + "P123 | Unknown", + "Unknown | Li-FTSI", + "Unknown | InCl3", + "Na2CO3", + "Ag; In | Undoped", + "K2CO3", + "nan | Cs2CO3", + "DMBI | Unknown", + "DPM2; OE2", + "Unknown | Unknown | Unknown | Co2O3", + "Unknown | PAAb-PEO", + "Unknown | Er; Yb", + "Ti3C2", + "titanium diisopropoxide bis(acetylacetonate)", + "Unknown | PEI", + "Unknown | NaYF4:Yb3:Er-np | Unknown", + "TiCl4 | Cs-TFSI", + "Unknown | Sr", + "Unknown | Unknown | TiCl4", + "CdCl2", + "Unknown | Unknown | Unknown | NiO", + "Ti(acac)2 | TiCl4", + "Undoped | nan", + "rGS", + "DMOAP", + "C60-substituted catechol", + "Unknown | Unknown | Unknown | CuO", + "ClGD | Unknown", + "Unknown | Li-TFSI; TBP", + "Mo", + "PFNOX; Polystyrene", + "Li2SiO3" + ] + } + } + ] + }, + "name": "additives_compounds", + "description": "List of the dopants and additives that are in each layer of the ETL-stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous fields.\n- If several dopants/additives, e.g. A and B, are present in one layer, list the dopants/additives in alphabetic order and separate them with semicolons, as in (A; B)\n- If no dopants/additives, state that as \u201cUndoped\u201d\n- If the doping situation is unknown, stat that as\u2018Unknown\u2019\nExample\nUndoped | Li-TFSI\nTiCl4\nNb\nUndoped | Undoped | Undoped", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "4 % | nan", + "nan | 0.04 | 0.04", + "1", + "2", + "nan | 0.5 mg/ml", + "0.005", + "5 vol%", + "3 mol%", + "50 vol%", + "nan | 12 %", + "nan | 0.5 %", + "0.2", + "0.1 mol%", + "0.005 M", + "1 mol%", + "0 | 50 ppm", + "100 vol%", + "0.33", + "0.01", + "1.0 mol%", + "0.025 M | nan", + "0.003", + "0.1", + "0.66", + "0.4 % | nan", + "2.5 vol%", + "0.05 % | nan", + "0.07", + "40 mM | nan", + "10 mol%", + "0.025 M", + "0.15 M | 20 wt% | 0.5 mg/ml", + "0.05", + "2 mol%", + "nan | 7.5 % | nan | nan", + "0.15", + "0.2 mM/ml", + "0.015", + "0.3 mM", + "2 % | nan", + "1.2 mg/ml", + "0.5 % | nan", + "1.5 vol%", + "nan | 1 %", + "3.0 mol%", + "0.5", + "75 vol%", + "6 wt%", + "0.5 %; 0.5 %", + "0.4 mg/ml", + "0.15 M | nan", + "nan | 0.04", + "0 | 100 ppm", + "0.355 vol%", + "0.15 M | 20 wt% | 1 mg/ml", + "0.02", + "0.007", + "0.2 wt%", + "2.4 vol%", + "0.6 M", + "7.5 % | nan | nan", + "50 mM", + "6.25 wt% | nan", + "0.1 mM/ml", + "0.15 mM", + "0.6 mM", + "nan | nan", + "0.4 mM/ml", + "nan | 0.1 M", + "0.04 M", + "0.001", + "nan | 6 %", + "2.0 mg/ml", + "0.15 M | 20 wt% | 2 mg/ml", + "nan | 9 %", + "0.1 wt%", + "nan | 3 %", + "12.5 wt% | nan", + "0.5 mol%", + "3 % | nan", + "0 | 10000 ppm", + "20 mg/ml | 0.5 mg/ml", + "0.01 M", + "5 % | nan", + "0.8 mg/ml", + "2.5 wt% | nan", + "5 mol%", + "0.5 wt%", + "1.6 mg/ml", + " undoped", + "1.5 wt%", + "1 % | nan", + "100 mM | nan | nan", + "1 wt%", + "0.15 M | 20 wt% | 4 mg/ml", + "0.45 mM", + "nan | 100 mg/ml", + "0.3 mM/ml", + "3 wt%", + "nan | nan | nan", + "nan | 5 %", + "0.0025", + "5 wt%", + "25 vol%", + "0 | 1000 ppm", + "0.03" + ] + } + } + ] + }, + "name": "additives_concentrations", + "description": "The concentration of the dopants/additives.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If more than one dopant/additive in the layer, e.g. A and B, separate the concentration for each dopant/additive with semicolons, as in (A; B)\n- For each dopant/additive in the layer, state the concentration.\n- The order of the dopants/additives must be the same as in the previous filed.\n- For layers with no dopants/additives, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used.\n- The preferred way to state the concentration of a dopant/additive is to refer to the amount in the final product, i.e. the material in the layer. When possible, use on the preferred units\no wt%, mol%, vol%, ppt, ppm, ppb\n- When the concentration of the dopant/additive in the final product is unknown, but where the concentration of the dopant/additive in the solution is known, state that concentration instead. When possible, use on the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n5 vol%; nan | 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | 0.3 M", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "ALD", + "ALD | ALD | Spin-coating", + "ALD | Evaporation", + "ALD | Flame aerosol", + "ALD | Flame aerosol | ALD", + "ALD | Hydrolysis", + "ALD | Magnetron sputtering | ALD | ALD", + "ALD | Microwave hydrothermal", + "ALD | Screen printing", + "ALD | Screen printing | Screen printing", + "ALD | Spin-coating", + "ALD | Spin-coating | Hydrolysis", + "ALD | Spin-coating | Spin-coating", + "ALD | Spray-pyrolys | Spin-coating", + "Aerosol-assisted CVD | Spin-coating", + "Brush painting | Evaporation", + "CBD", + "CBD >> Rinsing >> Rinsing", + "CBD >> Screen printing >> CBD | Screen printing", + "CBD >> Screen printing >> CBD | Screen printing | Screen printing", + "CBD | CBD", + "CBD | Evaporation", + "CBD | Hydrothermal", + "CBD | Hydrothermal >> Etching", + "CBD | Hydrothermal | Dipp-coating", + "CBD | Inkjet printing | Inkjet printing", + "CBD | Screen printing", + "CBD | Screen printing | Dipp-coating", + "CBD | Screen printing | Screen printing", + "CBD | Spin-coating", + "CBD | Spin-coating >> CBD", + "CBD | Spin-coating | Dipp-coating", + "CBD | Spin-coating | Spin-coating", + "CVD", + "CVD >> ALD", + "CVD | CVD", + "CVD | CVD | Evaporation", + "CVD | CVD | Spin-coating", + "CVD | Doctor blading", + "CVD | Spin-coating", + "CVD | Spray-pyrolys", + "Chemical etching >> Thermal oxidation", + "Co-evaporation | Evaporation", + "Comersial | Spin-coating", + "Condensation | Evaporation | Evaporation", + "Condensation | Spin-coating", + "DC Magnetron Sputtering", + "DC Magnetron Sputtering | Electrochemical anodization", + "DC Magnetron Sputtering | Spin-coating", + "DC Reactive Magnetron Sputtering", + "DC Sputtering >> Electrochemical anodization", + "DC Sputtering | Spin-coating", + "Dipp-coating", + "Dipp-coating >> CBD", + "Dipp-coating | Dipp-coating", + "Dipp-coating | Doctor blading | Doctor blading", + "Dipp-coating | Evaporation", + "Dipp-coating | Hydrothermal", + "Dipp-coating | Hydrothermal | CBD", + "Dipp-coating | Screen printing | Screen printing", + "Dipp-coating | Spin-coating", + "Dipp-coating | Spin-coating >> Plasma treatment", + "Dipp-coating | Spin-coating | Spin-coating", + "Dipp-coating | Spin-coating | Spin-coating | CBD", + "Doctor blading", + "Doctor blading | Dipp-coating", + "Doctor blading | Doctor blading", + "Doctor blading | Evaporation", + "Doctor blading | Hydrothermal", + "Doctor blading | Spin-coating | Dipp-coating", + "Doctor blading | Spin-coating | Spin-coating", + "Drop-infiltration", + "Dropcasting", + "Dropcasting | Spin-coating | Spin-coating", + "E-beam evaporation", + "E-beam evaporation >> CVD", + "E-beam evaporation >> CVD | ALD", + "E-beam evaporation | CVD", + "E-beam evaporation | E-beam evaporation", + "E-beam evaporation | Spin-coating", + "E-beam evaporation | Spin-coating | Spin-coating", + "Electrochemical anodization", + "Electrochemical anodization | CBD", + "Electrochemical anodization | Electrochemical anodization", + "Electrodeposition", + "Electrodeposition | CBD", + "Electrodeposition | Electrodeposition", + "Electrodeposition | Hydrothermal", + "Electrodeposition | Screen printing", + "Electrodeposition | Spin-coating", + "Electrodeposition | Spin-coating >> CBD", + "Electrospinning", + "Electrospraying", + "Electrospraying | Electrospraying", + "Electrospraying | Electrospraying | Spin-coating", + "Electrospraying | Hydrothermal", + "Electrospraying | Hydrothermal | Hydorthermal", + "Electrospraying | Hydrothermal | Spin-coating", + "Electrospraying | Spin-coating", + "Evaporation", + "Evaporation >> Oxidation | Spin-coating", + "Evaporation | ALD", + "Evaporation | ALD | ALD", + "Evaporation | CVD", + "Evaporation | CVD >> ALD", + "Evaporation | Co-evaporation", + "Evaporation | Evaporation", + "Evaporation | Evaporation | ALD", + "Evaporation | Evaporation | ALD | ALD", + "Evaporation | Evaporation | CVD", + "Evaporation | Evaporation | CVD | CVD", + "Evaporation | Evaporation | Evaporation", + "Evaporation | Evaporation | Spin-coating | ALD | ALD", + "Evaporation | Spin-coating", + "Evaporation | Sputtering", + "Evaporation | Unknown", + "Frequency Magnetron Sputteirng", + "Hydrolysis", + "Hydrothermal", + "Hydrothermal >> Dipp-coating", + "Hydrothermal >> Solvothermal", + "Hydrothermal | CBD", + "Hydrothermal | Dipp-coating", + "Hydrothermal | Hydrothermal", + "Hydrothermal | Hydrothermal | Hydrothermal", + "Hydrothermal | Spin-coating", + "Hydrothermal | Spin-coating | CBD", + "Inkjet printing", + "Inkjet printing | Evaporation", + "Lamination", + "Lamination | Spin-coating", + "Langmuir-Blodgett deposition", + "Magnetron sputtering", + "Magnetron sputtering >> Electrochemical anodization", + "Magnetron sputtering >> Electrochemical anodization | Electrodeposition", + "Magnetron sputtering | Hydrothermal", + "Magnetron sputtering | Hydrothermal | ALD", + "Magnetron sputtering | Spin-coating", + "Magnetron sputtering | Spin-coating | Spin-coating", + "Meniscus coating | Evaporation", + "Meniscus-coating", + "Oxidation | Dipp-coating", + "Oxygen plasma treatment", + "PVD", + "Photo-thermal CVD", + "Photo-thermal CVD >> Spin-coating", + "Pulsed laser deposition", + "Pulsed laser deposition | Spin-coating", + "RF Magnetron Sputtering", + "RF Magnetron sputtering", + "RF Magnetron sputtering | RF Magnetron sputtering", + "RF plasma sputtering | Spin-coating", + "RF sputtering", + "RF sputtering | CBD", + "RF sputtering | Spin-coating", + "Reactive sputtering", + "Roller coating", + "SILAR", + "Screen printing", + "Screen printing | Screen printing", + "Screen printing | Screen printing | Screen printing", + "Screen printing | Screen printing | Screen printing | Screen printing", + "Screen printing | Spin-coating", + "Slot-die coating", + "Slot-die coating | Evaporation", + "Slot-die coating | Slot-die coating", + "Slot-die coating | Spin-coating", + "Solution combustion", + "Solution combustion | Spin-coating", + "Solvothermal", + "Spin-coating", + "Spin-coating >> CBD", + "Spin-coating >> CBD >> Rinsing >> Rinsing | Spin-coating", + "Spin-coating >> CBD | Evaporation", + "Spin-coating >> CBD | Spin-coating", + "Spin-coating >> Evaporation | Evaporation", + "Spin-coating >> Hydrothermal", + "Spin-coating >> Hydrothermal | Spin-coating", + "Spin-coating >> Solvent annealing", + "Spin-coating >> Spin-coating", + "Spin-coating >> Spin-coating >> CBD", + "Spin-coating >> Spin-coating >> Spin-coating", + "Spin-coating >> Spin-coating >> Spin-coating | Spin-coating", + "Spin-coating >> Spin-coating >> Spin-coating | Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating", + "Spin-coating >> Spin-coating | Spin-coating", + "Spin-coating >> litography", + "Spin-coating | ALD", + "Spin-coating | ALD | Evaporation", + "Spin-coating | Air brush spray", + "Spin-coating | CBD", + "Spin-coating | CBD | Spin-coating", + "Spin-coating | Dipp-coating", + "Spin-coating | Dipp-coating | Spin-coating", + "Spin-coating | Doctor blading", + "Spin-coating | Doctor blading | Doctor blading", + "Spin-coating | Dropcasting", + "Spin-coating | E-beam evaporation", + "Spin-coating | E-beam evaporation >> Electrochemical anodization", + "Spin-coating | Electrodeposition", + "Spin-coating | Electrodeposition >> CBD", + "Spin-coating | Electrodeposition | Spin-coating", + "Spin-coating | Electrospinning", + "Spin-coating | Electrospinning | Spin-coating", + "Spin-coating | Electrospraying", + "Spin-coating | Electrospraying | Spin-coating", + "Spin-coating | Evaporation", + "Spin-coating | Evaporation >> Anodisation >> Oxidation >> Etching", + "Spin-coating | Evaporation >> Electrohemical anodization >> Etching", + "Spin-coating | Evaporation | Evaporation", + "Spin-coating | Evaporation | Evaporation | Evaporation", + "Spin-coating | Evaporation | Spin-coating", + "Spin-coating | Evaporation | Spin-coating | CBD", + "Spin-coating | Evaporation | Spin-coating | Spin-coating", + "Spin-coating | Hydrolysis", + "Spin-coating | Hydrothermal", + "Spin-coating | Hydrothermal >> Solvothermal etching", + "Spin-coating | Hydrothermal >> Spin-coating", + "Spin-coating | Hydrothermal | ALD", + "Spin-coating | Hydrothermal | CBD", + "Spin-coating | Hydrothermal | Dipp-coating", + "Spin-coating | Hydrothermal | Doctor blading", + "Spin-coating | Hydrothermal | Evaporation", + "Spin-coating | Hydrothermal | Hydrothermal", + "Spin-coating | Hydrothermal | LBLAR", + "Spin-coating | Hydrothermal | SILAR", + "Spin-coating | Hydrothermal | Spin-coating", + "Spin-coating | Hydrothermal | Spin-coating | Spin-coating", + "Spin-coating | Hydrothermal | Sputtering", + "Spin-coating | Lamination", + "Spin-coating | Lithography", + "Spin-coating | Lithography | Spin-coating", + "Spin-coating | Magnetron sputtering >> Oxdation", + "Spin-coating | PVD", + "Spin-coating | RF Magnetron Sputtering", + "Spin-coating | RF sputtering", + "Spin-coating | SILAR", + "Spin-coating | Screen printing", + "Spin-coating | Screen printing >> CBD", + "Spin-coating | Screen printing | Screen printing", + "Spin-coating | Slot-die coating", + "Spin-coating | Solvothermal", + "Spin-coating | Spin-coating", + "Spin-coating | Spin-coating >> CBD", + "Spin-coating | Spin-coating >> CBD >> Rinsing", + "Spin-coating | Spin-coating >> CBD | Spin-coating", + "Spin-coating | Spin-coating >> Dipp-coating", + "Spin-coating | Spin-coating >> Hydrothermal", + "Spin-coating | Spin-coating >> Hydrothermal | Spin-coating", + "Spin-coating | Spin-coating >> Spin-coating", + "Spin-coating | Spin-coating >> Spin-coating | Spin-coating >> CBD", + "Spin-coating | Spin-coating | ALD", + "Spin-coating | Spin-coating | CBD", + "Spin-coating | Spin-coating | Dipp-coating", + "Spin-coating | Spin-coating | Doctor blading", + "Spin-coating | Spin-coating | Evaporation", + "Spin-coating | Spin-coating | Evaporation | Evaporation", + "Spin-coating | Spin-coating | Evaporation | Evaporation | Evaporation", + "Spin-coating | Spin-coating | Evaporation | Evaporation | Evaporation | Evaporation", + "Spin-coating | Spin-coating | Hydrothermal", + "Spin-coating | Spin-coating | RF sputtering", + "Spin-coating | Spin-coating | SILAR", + "Spin-coating | Spin-coating | SILAR method", + "Spin-coating | Spin-coating | Screen printing", + "Spin-coating | Spin-coating | Spin-coating", + "Spin-coating | Spin-coating | Spin-coating | ALD", + "Spin-coating | Spin-coating | Spin-coating | Dipp-coating", + "Spin-coating | Spin-coating | Spin-coating | Spin-coating", + "Spin-coating | Spin-coating | Spin-coating | Spin-coating | Spin-coating", + "Spin-coating | Spin-coating | Spin-coating | Spin-coating | Spin-coating | Spin-coating | Spin-coating", + "Spin-coating | Spin-coating | Sputtering", + "Spin-coating | Spin-coating | Unknown | Unknown", + "Spin-coating | Spray-coating", + "Spin-coating | Spray-pyrolys", + "Spin-coating | Sputtering", + "Spin-coating | Sputtering >> Hydrothermal >> ALD", + "Spin-coating | Sputtering | Spin-coating", + "Spin-coating | Transfer", + "Spin-coating | Ultrasonic spray", + "Spin-coating | Unknown", + "Spin-coating | Unknown | Unknown", + "Spray-coating", + "Spray-coating | Evaporation", + "Spray-coating | Solvothermal", + "Spray-coating | Spin-coating", + "Spray-coating | Spin-coating | Spin-coating", + "Spray-coating | Spray-coating", + "Spray-coating | Spray-pyrolys | Spin-coating", + "Spray-pyrolys", + "Spray-pyrolys >> CBD", + "Spray-pyrolys >> CBD | Spin-coating", + "Spray-pyrolys >> Hydrothermal", + "Spray-pyrolys >> Hydrothermal | PVD-OAD", + "Spray-pyrolys >> Hydrothermal | Spin-coating", + "Spray-pyrolys | ALD", + "Spray-pyrolys | ALD | Spin-coating", + "Spray-pyrolys | Blow-drying", + "Spray-pyrolys | CVD", + "Spray-pyrolys | Doctor blading", + "Spray-pyrolys | Dropcasting", + "Spray-pyrolys | Electrodeposition | Screen printing | Screen printing", + "Spray-pyrolys | Electrospinning", + "Spray-pyrolys | Electrospraying", + "Spray-pyrolys | Evaporation", + "Spray-pyrolys | Evaporation >> Electrochemical anodization", + "Spray-pyrolys | Hydrothermal", + "Spray-pyrolys | Inkjet-Printed", + "Spray-pyrolys | PVD", + "Spray-pyrolys | PVD | PVD", + "Spray-pyrolys | PVD | PVD | PVD", + "Spray-pyrolys | Screen printing", + "Spray-pyrolys | Screen printing | CBD", + "Spray-pyrolys | Screen printing | Evaporation | Screen printing", + "Spray-pyrolys | Screen printing | Screen printing", + "Spray-pyrolys | Screen printing | Screen printing | Dipp ccoating", + "Spray-pyrolys | Screen printing | Screen printing | Screen printing", + "Spray-pyrolys | Screen printing | Spin-coating", + "Spray-pyrolys | Screen printing | Spray-coating | Screen printing", + "Spray-pyrolys | Screen printing | Spray-pyrolys | Screen printing", + "Spray-pyrolys | Screen printnig", + "Spray-pyrolys | Screen printnig | Screen printing", + "Spray-pyrolys | Spin-coating", + "Spray-pyrolys | Spin-coating >> CBD", + "Spray-pyrolys | Spin-coating >> CBD | Spin-coating", + "Spray-pyrolys | Spin-coating >> Dipp-coating", + "Spray-pyrolys | Spin-coating >> Hydrothermal >> Ion exchange >> CBD", + "Spray-pyrolys | Spin-coating >> Spin-coating", + "Spray-pyrolys | Spin-coating | Dipp-coating", + "Spray-pyrolys | Spin-coating | Screen printing", + "Spray-pyrolys | Spin-coating | Spin-coating", + "Spray-pyrolys | Spin-coating | Spray-pyrolys", + "Spray-pyrolys | Spray-coating", + "Spray-pyrolys | Spray-pyrolys", + "Spray-pyrolys | Ultrasonic spray", + "Sputering", + "Sputtering", + "Sputtering >> CBD >> CBD", + "Sputtering >> Electrochemical anodization", + "Sputtering >> Electrochemical anodization | Spin-coating", + "Sputtering >> Oxidation | Spin-coating", + "Sputtering >> Spin-coating | Spin-coating", + "Sputtering | CBD", + "Sputtering | Dipp-coating", + "Sputtering | E-beam evaporation", + "Sputtering | Electrodeposition | Spin-coating", + "Sputtering | Evaporation", + "Sputtering | Hydrothermal", + "Sputtering | Hydrothermal | ALD", + "Sputtering | Pulsed laser deposition | Hydrothermal | Spin-coating", + "Sputtering | Screen printing | Screen printing", + "Sputtering | Spin-coating", + "Sputtering | Spin-coating | Spin-coating", + "Sputtering | Spray-pyrolys | Spin-coating", + "Sputtering | Sputtering", + "Sputtering | Sputtering | Sputtering", + "Substrate vibration assisted dropcasting", + "Temperature gradient solid-phase sintering", + "Thermal oxidation", + "Ultrasonic spray", + "Ultrasonic spray pyrolysis", + "Unknown", + "Unknown | CVD", + "Unknown | Hydrothermal", + "Unknown | Screen printing", + "Unknown | Screen printing | Screen printing", + "Unknown | Spin-coating", + "Unknown | Unknown", + "Unknown | Unknown | Spin-coating", + "Unknown | Unknown | Unknown" + ] + } + } + ] + }, + "name": "deposition_procedure", + "description": "The deposition procedures for the ETL stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate them by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Thermal annealing is generally not considered as an individual reaction step. The philosophy behind this is that every deposition step has a thermal history, which is specified in a separate filed. In exceptional cases with thermal annealing procedures clearly disconnected from other procedures, state \u2018Thermal annealing\u2019 as a separate reaction step.\n- Please read the instructions under \u201cPerovskite. Deposition. Procedure\u201d for descriptions and distinctions between common deposition procedures and how they should be labelled for consistency in the database.\nExample\nSpin-coating\nSpin-coating | Spin-coating\nSpray-pyrolys | Spin-coating\nEvaporation | Evaporation\nSpin-coating | Evaporation\nCBD\nSpray-pyrolys\nSpin-coating | Evaporation | Evaporation\nSpray-pyrolys >> CBD | Spin-coating >> CBD", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Liquid | Liquid", + "Liquid | Liquid >> Liquid | Liquid >> Liquid", + "Liquid >> Liquid >> Liquid >> Liquid | Liquid", + "Gas | Liquid | Liquid", + "Liquid | Liquid | Liquid | Liquid", + "Liquid >> Liquid >> Liquid | Liquid", + "Gas", + "Liquid | Liquid >> Liquid", + "Liquid >> Liquid >> Liquid", + "Gas | Gas", + "Liquid | Gas", + "Gas | Gas | Gas", + "Unknown", + "Liquid | Liquid | Liquid", + "Liquid >> Liquid", + "Gas | Gas >> Gas", + "Gas >> Gas", + "Liquid | Liquid | Gas", + "Liquid", + "Liquid | Gas | Gas", + "Liquid >> Liquid | Liquid", + "Liquid | Gas | Liquid", + "Liquid | Liquid >> Liquid >> Liquid", + "Unknown | Gas | Gas", + "Gas >> Liquid | Liquid", + "Solid | Solid", + "Gas >> Liquid >> Liquid", + "Gas | Liquid" + ] + } + } + ] + }, + "name": "deposition_aggregation_state_of_reactants", + "description": "The physical state of the reactants\n- The three basic categories are Solid/Liquid/Gas\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the aggregation state associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Most cases are clear cut, e.g. spin-coating involves species in solution and evaporation involves species in gas phase. For less clear-cut cases, consider where the reaction really is happening as in:\no For a spray-coating procedure, it is droplets of liquid that enters the substrate (thus a liquid phase reaction)\no For sputtering and thermal evaporation, it is species in gas phase that reaches the substrate (thus a gas phase reaction)\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nLiquid\nGas | Liquid\nLiquid | Liquid >> Liquid", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "N2 | Vacuum", + "N2", + "Air | Air >> Air", + "Air >> Air | Air", + "Air >> Air >> Air", + "Unknown", + "Air | N2", + "Vacuum | Vacuum | Vacuum", + "Vacuum >> Vacuum >> Unknown", + "N2 | N2 | N2", + "N2 | > N2", + "N2 | N2", + "Vacuum | Vacuum >> Vacuum", + "Ar | Ar", + "Ar", + "N2 | Air", + "Air | Air | Air", + "Air | Vacuum", + "N2 | N2 | Vacuum", + "Air | Air", + "Ar; O2 | Air", + "Vacuum | Air", + "Air | Vacuum | Vacuum", + "Air | Air >> Air | Air >> Air", + "Air | Air | Air | Air", + "Dry air", + "Vacuum | Vacuum", + "Air", + "Dry air | Dry air", + "Vacuum", + "Air | Ar", + "Ar; O2", + "Vacuum >> Vacuum", + "Dry air | Vacuum", + "Air >> Air", + "Air; O2 | Air", + "Vacuum | N2", + "N2 | Vacuum | Vacuum" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere", + "description": "The synthesis atmosphere\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nVacuum | N2\nAir | Ar; H2O >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1 Torr", + "1 atm >> 1 atm", + "0.00002 Torr | 1 Torr >> 1 Torr", + "1 atm | 1 atm", + "0.000001 mbar | 0.0000001 mbar", + "1 *10-6bar | 1 *10-6bar", + "0.0000002 Torr", + "0.0000001 mbar | 0.0000001 mbar | 0.0000001", + "0.0005 Pa | 0.0005 Pa", + "0.00002 Torr | 1 Torr", + "1 atm | 1 atm >> 1 atm", + "0.000001 mbar", + "0.0000048 Torr | 0.0000048 Torr", + "0.0000001 Torr", + "1 atm | 1 atm | 1 atm | 1 atm", + "0.005 Torr | 1 atm", + "nan >> nan | nan", + "0.000005 mbar | 0.000005 mbar", + "0.00001 Pa | 0.00001 Pa", + "0.000001 mbar | 0.000001 mbar", + "nan | nan", + "1 atm | 1 atm | 1 atm", + "nan | 0.000001 mbar", + "nan | 1 atm", + "0.000001 Torr", + "0.0075 Torr", + "1 atm >> 1 atm | 1 atm", + "nan | E-6torr", + "1 atm | 0.000001 mbar", + "nan | 0.000009 mbar", + "0.00002 Torr", + "nan | 5 E-4mbar", + "1 Torr >> 1 Torr", + "nan | 0.0005 Pa | 0.0005 Pa", + "1 atm" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_pressure_total", + "description": "The total pressure during each synthesis step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- Pressures can be stated in different units suited for different situations. Therefore, specify the unit. The preferred units are:\no atm, bar, mbar, mmHg, Pa, torr, psi\n- If a pressure is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 100 pa and not 80-120 pa.\nExample\n1 atm\n0.002 torr | 10000 Pa\n1 atm >> 1 atm | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1 Torr", + "1 atm >> 1 atm", + "0.0004023 Torr; 0.0046 Torr | 1 atm", + "0.001 Torr; 0.004 Torr | 1 atm", + "0.00002 Torr | 1 Torr >> 1 Torr", + "1 atm | 1 atm", + "0.000001 mbar | 0.0000001 mbar", + "1 *10-6bar | 1 *10-6bar", + "0.00002 Torr | 1 Torr", + "1 atm | 1 atm >> 1 atm", + "0.3 Torr", + "0.000001 mbar", + "1 atm | 1 atm | 1 atm | 1 atm", + "nan >> nan | nan", + "nan | 0.3 Torr", + "0.0065 Torr; 0.001 Torr", + "1 atm; 1 bar | 1 atm", + "0.000001 mbar | 0.000001 mbar", + "nan | nan", + "1 atm | 1 atm | 1 atm", + "nan | 1 atm", + "0.000001 Torr", + "1 atm >> 1 atm | 1 atm", + "1 atm | 0.000001 mbar", + "0.00002 Torr", + "1 Torr >> 1 Torr", + "0.0004545 Torr; 0.004545 Torr | 1 atm", + "1 atm", + "1 amt" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_pressure_partial", + "description": "The partial pressures for the gases present during each reaction step.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the partial pressures and separate them with semicolons, as in (A; B). The list of partial pressures must line up with the gases they describe.\n- In cases where no gas mixtures are used, this field will be the same as the previous filed.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 0.99 atm; 0.01 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "25", + "30 >> 30", + "0 >> 0", + "15", + "48 | 48", + "0 | 0 >> 0", + "20 | 20", + "25 | 25", + "30 | 30", + "40", + "30; 30", + "50 | 50", + "20", + "nan >> nan | nan", + "50 | 50 | 50", + "30", + "35 | 0", + "nan | nan", + "30 | 30 | 30 | 30", + "0 | 0", + "55; nan", + "48", + "30 | 30 | 30", + "30 >> 30 | 30", + "35 | 35 >> 35", + "30 | 0", + "35 | 35" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_relative_humidity", + "description": "The relative humidity during each deposition step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the relative humidity associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns\n- If the relative humidity for a step is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 35 and not 30-40.\nExample\n35\n0 | 20\n25 >> 25 | 0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Ethanol | Ethanol", + "Unknown | IPA", + "Dichlorobenzene | none", + "Acetyl acetone; IPA | Water", + "Ethanol | anhydrous 1-butanol | Water >> Water; Ethanol >> Methanol; Water >> Water; Ethanol", + "1-butanol >> 1-butanol | Ethanol", + "Ethanol; distilled Water >> nitric acid >> NaOH aqueous solution >> distilled Water; HCl | distilled Water", + "IPA | Unknown | Unknown", + "IPA >> Water | Ethanol; Water", + "Ethanol | Ethanol | Water", + "none >> 1-Butanol; IPA | Terpineol", + "IPA | Chlorobenzene", + "Ethanol | Terpineol; 2-Methoxy ethanol", + "2-methoxyethanol | Chlorobenzene", + "Unknown | Unknown", + "none", + "Ethanol | P25; polyethylenglycol; OP; Water", + "Unknown >> Water >> Water >> Ethanol | Ethanol", + "n-butyl alcohol | n-butyl alcohol", + "IPA | Methanol >> Water >> Water", + "IPA >> Water | Ethanol", + "Water >> Water >> Ethanol", + "IPA | IPA", + "Chlorobenzene", + "1-Butanol; IPA | Etanol >> Water", + "Ethanol | Dichlorobenzene", + "1-Butanol | Ethanol | DMF", + "Ethanol", + "urea | hydrochloric acid | thioglycolic acid | SnCl2\u00b72H2O | DI water", + "2-methoxyethanol; Ethanolamine", + "1-butanol | Water", + "butanol | Unknown", + "butanol | Ethanol", + "Chloroform | IPA", + "Water | 1-butanol >> Water", + "IPA | TiO2-np", + "butanol | IPA | Water", + "Ethanol | Ethanol | Ethanol", + "Terpineol | Terpineol | none", + "Ethanol; distilled Water >> nitric acid", + "Water | Ethanol", + "Chlorobenzene | none | none", + "Chloroform", + "Chlorobenzene | Ethyl alcohol", + "Acetyl acetone; IPA | Ethanol", + "Ethanol >> Water", + "2-Butanol | Chlorobenzene", + "Water >> Water", + "Ethanol | Unknown | Unknown", + "1-butanol | Unknown", + "IPA | none", + "Chlorobenzene | IPA | none", + "Ethanol | Ethanol | Ethanol | none", + "o-xylene >> tetrabutylammonium hydroxide 30-hydrate", + "Ethanol; distilled Water >> nitric acid >> none >> distilled Water; HCl", + "2-methoxyethanol | Methanol", + "IPA; Ethanol | Terpineol | Unknown", + "Anh ethanol", + "Acetonitil; Acetyl aceton; IPA | Ethanol >> acetonitrile", + "Chloroform | Isopropyl alcochol", + "Ethanol | Ethanol | Ethanol | Unknown", + "Water | Unknown", + "2-methoxyethanol >> 2-Butanol | Chlorobenzene", + "IPA | Water", + "none | Terpineol", + "Chlorobenzene | Ethanol", + "ethonal | 2-methoxyethanol | terpineol | acetonitrile", + "Water >> Ethanol | a-Terpineol >> Ethanol", + "Unknown >> Water | Chlorobenzene", + "Dicholorobenzene | IPA", + "Water | Methanol", + "Methanol | Water", + "Ethanol | Ethanol | Unknown", + "Ethanol >> Ethanol", + "1-butanol ethanol >> Water", + "IPA | Ethanol", + "Water | Water", + "Unknown | none | Unknown", + "Chloroform; IPA", + "1-butanol | Ethanol", + "Ethanol | Water", + "n-butylalcohol | Ethanol", + "1-Butanol >> 1-Butanol >> 1-Butanol | Acetylacetone; Polyethylene glycol; Triton X-100", + "Acetonitil; Acetyl aceton; IPA | Ethanol", + "Ethanol; HCl | Ethanol", + "Ethanol | Chlorobenzene", + "IPA >> Water | none", + "Dichlorobenzene", + "Acetyl acetone; Ethanol | Ethanol", + "1-Butanol; IPA | Terpineol", + "Unknown >> Water", + "Unknown", + "Ethanol >> Water | Ethanol", + "none | Ethanol", + "Ethanol | Ethanol >> acetonitrile", + "Chlorobenzene | none", + "Chlorobenzene; DCB | IPA", + "Water | Chlorobenzene", + "Ethanol >> Ethanol | IPA", + "n-butyl alcohol | Unknown", + "terpineol; Ethanol", + "1-Butanol", + "2-methoxyethanol | Water", + "Water2; Water | Chlorobenzene", + "Chlorobenzene; Octane | none", + "IPA >> IPA >> IPA | Unknown >> Unknown >> Unknown >> Unknown >> Unknown >> Unknown >> acetonitrile", + "IPA; Ethanol | Ethanol", + "none >> Water >> Water", + "IPA >> Ethanol", + "Water", + "Chlorobenzene | 2-methoxyethanol", + "Anisole; tetralin; TAA", + "Water | IPA", + "none | Chlorobenzene", + "none | none", + "Unknown | Ethanol", + "none | terpineol; Ethanol", + "1-butanol", + "Ethanol; Water", + "Ethanol | Methanol", + "1-butanol | Ethanol >> Water | Ethanol >> Water", + "1-Butanol; IPA | 1-Butanol; Ethylcellulose; Llauric acid; Terpineol", + "Chlorobenzene | Methanol", + "2-methoxyethanol", + "2-methoxyethanol >> 2-Butanol", + "IPA; Etanol | Etanol", + "Chlorobenzene | Unknown", + "n-butylalcohol | 2-methoxyethanol", + "IPA >> Water", + "n-butyl alcohol", + "Dichlorobenzene | IPA", + "IPA; Ethanol | none", + "n-butylalcohol", + "Ethanol | anhydrous 1-butanol", + "IPA | Unknown", + "Ethanol | Unknown", + "Ethanol | none", + "1-Butanol | Ethanol", + "Methanol; n-butanol; Chloroform", + "Chlorobenzene | Trifluorethanol", + "Chlorobenzene | Unknown | Unknown", + "Chlorobenzene | Water", + "Chlorobenzene | Chlorobenzene | Ethanol", + "Water2; Water", + "deionized water", + "n-butyl alcohol | Ethanol", + "IPA", + "n-butyl alcohol | n-butyl alcohol | Unknown", + "Ethanol | IPA", + "Chlorobenzene | IPA" + ] + } + } + ] + }, + "name": "deposition_solvents", + "description": "The solvents used in each deposition procedure for each layer in the stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvents associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the solvents in alphabetic order and separate them with semicolons, as in (A; B)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For non-liquid processes with no solvents, state the solvent as \u2018none\u2019\n- If the solvent is not known, state this as \u2018Unknown\u2019\n- Use common abbreviations when appropriate but spell it out when risk for confusion\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nDMF\nAcetonitil; Ethanol | Ethanol\nNone | Chlorobenzene\nH2O >> H2O | Methanol", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "deposition_solvents_mixing_ratios", + "description": "The mixing ratios for mixed solvents\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent mixing ratios associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For pure solvents, state the mixing ratio as 1\n- For non-solvent processes, state the mixing ratio as 1\n- For unknown mixing ratios, state the mixing ratio as \u2018nan\u2019\n- For solvent mixtures, i.e. A and B, state the mixing ratios by using semicolons, as in (VA; VB)\n- The preferred metrics is the volume ratios. If that is not available, mass or mol ratios can be used instead, but it the analysis the mixing ratios will be assumed to be based on volumes.\nExample\n9; 0.6; 0.4 | 1\n1 >> 1 | 1\n9; 1 | 3; 2", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Sigma Aldrich | Unknown >> Unknown", + "Sigma Aldrich | Sigma Aldrich | Unknown >> Unknown; Sigma Aldrich >> Unknown; Unknown >> Unknown; Sigma Aldrich", + "Acros Organics; Sigma Aldrich", + "sigma aldrich", + "Sigma Aldrich; Sigma Aldrich | Unknown >> Unknown", + "Sigma Aldrich", + "Alfa Aesar", + "Sigma-Aldrich", + "Unknown", + "NanoPac >> Unknown | NanoPac", + "Millipore Sigma | Milllipore Sigma", + "Unknown | Unknown", + "Sigma Aldrich | Sigma Aldrich", + "Sigma Aldrich | Unknown >> Unknown | Unknown >> Unknown", + "Unknown >> Unknown | Unknown", + "Sigma Aldrich; Sigma Aldrich", + "Wako; Wako; Wako; Unknown", + "Unknown >> Unknown | Alfa Aesar", + "Sigma Aldrich | Fischer Scientific", + "Kanto Chemical Tokyo; Unknown", + "Unknown | Sigma Aldrich", + "Unknown >> Sigma Aldrich; Sigma Aldrich | Sigma Aldrich", + "NanoPac >> Unknown", + "Sigma Aldrich; Sigma Aldrich; Fisher | Sigma Aldrich >> Acros", + "Sigma Aldrich | Unknown", + "Sigma Aldrich; Sigma Aldrich | Sigma Aldrich", + "Unknown; Sigma Aldrich", + "Sigma Aldrich; Unknown >> Sigma Aldrich >> Sigma Aldrich >> Unknown; Sigma Aldrich | Unknown", + "Sigma Aldrich | Sigma Aldrich >> Sigma Aldrich", + "Kanto Chemical Tokyo; Unknown | Unknown", + "Alfa Aesar | Alddin", + "Sigma Aldrich | Unknown | Unknown", + "Sigma Aldrich | Sigma Aldrich | Unknown", + "Nacalai Tesque", + "Sigma Aldrich; Unknown >> Sigma Aldrich", + "Unknown | Wako Pure Chemical Industries; Nacalai Tesque; Sigma Aldrich", + "Unknown | Alfa Aesar", + "Unknown; Unknown | Unknown", + "Sigma Aldrich; Unknown >> Sigma Aldrich >> Unknown >> Unknown; Sigma Aldrich", + "Sinopharm Chemical Reagent Co. Ltd." + ] + } + } + ] + }, + "name": "deposition_solvents_supplier", + "description": "The suppliers of all the solvents.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For non-liquid processes with no solvents, mark the supplier as \u2018none\u2019\n- If the supplier for a solvent is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nSigma Aldrich\nSigma Aldrich; Fisher | Acros\nnone >> Sigma Aldrich; Sigma Aldrich | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Puris | Unknown >> Unknown | Unknown >> Unknown", + "Puris | Unknown >> Unknown", + "Puris | Puris | Unknown >> Unknown; Puris >> Unknown; Unknown >> Unknown; Puris", + "99.8%; 99.5% | Uknown >> Unknown", + "Technical | Puris", + "99.5% | 99.5%", + "Unknown", + "99.8% | 99.5%", + "99.8% | Unknown | Unknown", + "Unknown | Unknown", + "Unknown | Unknown | Unknown", + "Unknown >> Unknown | Unknown", + "0.998", + "99.8% >> Unknown | 99.8%", + "Puris", + "Puris; Puris", + "99.8 >> Unknown | 99.8%", + "99.8% >> Unknown", + "Pro analysis; Pro analysis; Pro analysis | Puris >> Pro analysis", + "Unknown; Puris", + "Puris | Puris", + "Anhydrous 99.8%" + ] + } + } + ] + }, + "name": "deposition_solvents_purity", + "description": "The purity of the solvents used.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For non-liquid processes with no solvents, state the purity as \u2018none\u2019\n- If the purity for a solvent is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\nPuris; Puris| Tecnical\nnone >> Pro analysis; Pro analysis | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "nan | TiO2-np Anatase; TiO2-np Rutile", + "PEIE >> nTi-MOF | PCBM-60", + "TiO2-np; titanium diisopropoxide bis(acetylacetonate)", + "C60 | TDMASn", + "TiOx >> TiOx", + "Zinc Acetate dehydrate; ethanolamine | 3, 4, 5- trimethoxybenzoic acid", + "SnO2-np | PCBM-60; PEG", + "SnCl4", + "ICBA | BCP", + "SnO2-np | Choline Chloride", + "Titanium diisopropoxide bis(acetylacetonate) >> Titanium diisopropoxide bis(acetylacetonate) | CsAc", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2-np >> TiCl4 >> nan", + "TiCl4 | TiO2 paste", + "SnCl2", + "Titanium isopropoxide; diethanolamine | Titanium tetrabutanolate", + "SnO2-np", + "PCBM-60 | tetrakisdimethylamino-tin; H2O >> tetrakisdimethylamino-tin; H2O", + "Titanium diisopropoxide bis(acetylacetonate) | Titanium diisopropoxide bis(acetylacetonate) | (3-aminopropyl)trimethoxysilane (APTMS)", + "nan >> TiCl4 >> nan >> nan | TiO2-np", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2-np", + "Titanium(IV) isopropoxide >> nan >> nan >> NaOH >> nan | magnesium methoxide", + "Acetylacetone; Titanium isopropoxide | TiO2 paste NR30-D", + "Titanium isopropoxide (TTIP); HCl | TiO2 paste 18NRT", + "Zinc acetate dihydrate; KOH; ZnO", + "PCBM-60 | PFN", + "PEIE >> nTi-MOF", + "PCBM-60 | PEI", + "Zinc Acetate dehydrate; ethanolamine | 2-methoxybenzoic acid", + "PCBM | BCP", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2-np | ZrO-np", + "diethanolamine; Titanium isopropoxide; H2O", + "SnO2 | C60", + "Ti >> NaOH >> HCl", + "nan | TiO2-np", + "Zinc Acetate dehydrate; ethanolamine | 4-dimethoxybenzoic acid", + "TiO2 np", + "Titanium oxysulfate | PDI-glass", + "ZnO-np", + "SnCl2 | C60", + "Titanium diisopropoxide bis(acetylacetonate) >> Titanium diisopropoxide bis(acetylacetonate) >> Titanium diisopropoxide bis(acetylacetonate) | TiO2-np", + "PCBC6 | BCP", + "Titanium isopropoxide (TTIP); acetyl acetone >> NR30-D; ethanol", + "synthesized | synthesized | synthesized", + "tetrakisdimethylamino-tin; H2O", + "PCBM-60 | PEIE", + "Zinc Acetate dehydrate; ethanolamine", + "TiO2-np; Ethylcellulose", + "SnO2-np | 4-Bromobenzoic acid", + "nan | TiO2-np; Ethylcellulose", + "SnO2-np | ZnO-np", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2-np >> Li-TFSI", + "TPE-DPP-8 | C60 | BCP", + "SnCl5", + "HCl; Titanium isopropoxide | TiO2 paste | nan", + "TiO2 pellets | TTIP", + "SnO2", + "Titanium diisopropoxide bis(acetylacetonate) | Al2O3-np | Cu:NiO-np", + "Titanium diisopropoxide bis(acetylacetonate) | MgCl6 6H2O; SnCl2 2H2O | TiO2-np | ZrO2-np", + "Titanium isopropoxide (TTIP); HCl", + "TiO2-np; titanium diisopropoxide bis(acetylacetonate) | PPDI-F3N", + "PCBM-60 | Rhodamine 101 | LiF", + "B2F | C60 | BCP", + "Titanium diisopropoxide bis(acetylacetonate) | CaSc2O4:0.15Eu3+", + "titanium tetrachloride", + "Titanium diisopropoxide bis(acetylacetonate); TiO2-np", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2 paste NR30-D", + "SnO2-np | KOH", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2 paste NR30-D | SnCl4", + "Titanium diisopropoxide bis(acetylacetonate); TiO2-np; PCBM", + "Titanium isopropoxide | TiO2 paste", + "Acetylacetone; Titanium diisopropoxide bis(acetylacetonate) | TiO2 paste", + "Titanium diisopropoxide bis(acetylacetonate) | Titanium diisopropoxide bis(acetylacetonate)", + "Titanium isopropoxide | TiO2-np | Zn(NO3)2.6H2O >> nan >> Na2S >> nan", + "tantalum(V) ethoxide in titanium; Titanium diisopropoxide bis(acetylacetonate)", + "PCBM-70 | TiO2", + "TPE-DPP-6 | C60 | BCP", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2-np >> TiCl4", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2 paste | Al2O3 paste", + "Titanium Orthotitanate | TiO2-np", + "PCBM-60", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2 paste", + "SnO2 2H2O", + "nan | Al2O3-np", + "Titanium diisopropoxide bis(acetylacetonate)", + "Titanium diisopropoxide bis(acetylacetonate) >> TiCl4 | C60", + "Titanium isopropoxide (TTIP); HCl | C60 solution", + "nan | TiO2-np Rutile", + "PCBM-60 | Bphen", + "PEIE; C60", + "PCBM-60 | tetrakisdimethylamino-tin; H2O", + "SnCl2.H2O | ethanol | ( 3-aminopropyl)triethoxysilane (APTES) | IPA", + "Tetraisopropyl orthotitanate | TiO2-np", + "Titanium isopropoxide", + "tetrakisdimethylamino-tin; H2O >> tetrakisdimethylamino-tin; H2O", + "PCBM-70", + "SnO2-np | NaOH", + "Titanium tetrachloride", + "Titanium diisopropoxide bis(acetylacetonate); vanadium(V)oxytriethoxide | TiO2 powder; polyethylene glycol >> acetylacetone; triton X-100", + "C60 | LiF | BCP", + "HCl; Titanium isopropoxide | TiO2 paste", + "Titanium(IV) isopropoxide >> nan >> nan >> NaOH >> nan", + "Titanium diisopropoxide bis(acetylacetonate) | Polystyrene latex microsphere solution >> TiCl4 | TiO2-np >> TiCl4", + "synthesized | BCP", + "Tetra-nbutyl titanate; diethanolamine >> TiCl4 | TiO2 paste >> TiCl4 | ZrO2 paste", + "Titanium oxysulfate", + "C60", + "nan | TiO2 paste 18NRT", + "nan | TiO2-np | ZrO-np", + "Titanium(IV) isopropoxide >> nan", + "SnCl2 | PCBM-60", + "PCBM-60 | PFN-Br", + "nan | C60-SAM", + "HCl; TiCl3", + "C60; (RuCp*mes)2", + "PCBM-60 | Rhodamine 101", + "TiOx >> TiOx >> TiOx", + "TiCl4", + "PCBM-60 | AZO", + "Titanium diisopropoxide bis(2,4-pentanedionate) | In(NO3)3\u00b7xH2O", + "nan | TiO2-np >> TiCl4", + "TPE-DPP-16 | C60 | BCP", + "Titanium isopropoxide | Ethanol", + "PCBM | TBAOH", + "CdI2 | C60 | BCP", + "Titanium isopropoxide >> TiCl4 | TiO2-np", + "nan | TiO2-np Anatase", + "Titanium diisopropoxide bis(acetylacetonate) >> TiCl4 | TiO2-np", + "Zinc acetate; Tin Acetate", + "TiOx", + "Titanium isopropoxide >> TiCl4 | PCBA", + "Titanium tetrabutanolate", + "titanium diisopropoxide bis(acetylacetonate) | TiO2-np | ZrO2-np", + "Titanium diisopropoxide bis(acetylacetonate) >> TiCl4", + "Titanium isopropoxide; diethanolamine | TiO2-np >> TiCl4", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2-np | SbI3", + "TiO2-crystalline anatase np", + "Titanium isopropoxide (TTIP)", + "nan | nan", + "Tetrabutyl titanate | TiO2-np", + "TiO2-c | PCBM-61", + "nan | TiO2-np Anatase >> CdSO4; CS(NH2)2; NH3.H2O", + "SnCl2.H2O | ethanol", + "Titanium tetrachloride | TiO2-np", + "MgCl6 6H2O; SnCl2 2H2O | TiO2-np | ZrO2-np", + "TiCl4 | PCBM-60", + "1,4,5,8-Naphthalenetetracarboxylic dianhydride; (R)-(-)-aminoindane", + "Ti", + "Tetrabutyl titanate", + "Tetra-nbutyl titanate; diethanolamine | TiO2 paste NR30-D", + "COi8DFIC | BCP", + "Titanium isopropoxide >> TiCl4", + "TiO2 -np | Ti | ZrO2-np", + "C60 | BCP", + "Acetylacetone; IPA; tetrabutyl titanate; Triton X100 | TiO2 paste", + "NDI3HU-DTYM2 | BCP", + "TiO2-anatase >> Titanium diisopropoxide bis(acetylacetonate) | TiO2-np", + "titanium tetrachloride | TiO2-np >> titanium tetrachloride", + "Titanium diisopropoxide bis(acetylacetonate) >> Titanium diisopropoxide bis(acetylacetonate)", + "TiCl4 >> TiCl4", + "Titanium diisopropoxide bis(acetylacetonate); niobium(V)ethoxide | TiO2 powder; polyethylene glycol >> acetylacetone; triton X-100", + "SnO2-np | PCBM-60", + "PCBM-70 | Rhodamine 101", + "Titanium diisopropoxide bis(acetylacetonate) | SnCl4", + "PCBM | Bis-C60", + "PEIE", + "Nb | TiO2-np", + "Titanium isopropoxide | PCBM-60", + "titanium isopropoxide", + "ITIC | BCP", + "(DTYM-NDI-DTYA)2 | BCP", + "PCBM-60 | ZnO-np", + "TiO2-nw", + "Titanium isopropoxide | TiO2-np >> Li-TFSI", + "TiCl4 >> nan >> nan", + "Titanium diisopropoxide bis(2,4-pentanedionate)", + "Titanium diisopropoxide bis(acetylacetonate) >> Titanium diisopropoxide bis(acetylacetonate) | TiO2-np", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2 paste 18NR-T", + "MoS2-nanosheets", + "Titanium diisopropoxide bis(acetylacetonate); acetylacetone", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2 powder; polyethylene glycol >> acetylacetone; triton X-100", + "PCBM-60 | C60 | LiF", + "Tetrabutyl titanatein; HCl", + "Zinc Acetate dehydrate; ethanolamine | PCBM-60", + "TPE-DPP-12 | C60 | BCP", + "SnO2-np | ethylphosphonic acid", + "TiO2-anatase | TiO2-np", + "HCl; Titanium isopropoxide", + "Titanium isopropoxide | TiO2-np", + "IT-4f | BCP", + "Titanium diisopropoxide bis(acetylacetonate); tantalum(V)ethoxide | TiO2 powder; polyethylene glycol >> acetylacetone; triton X-100", + "tin chloride bihydrate", + "PCBM-61 | BCP", + "Titanium tetraisopropoxide; acetylacetone | TiO2-np | Carbon-QDs", + "Titanium diisopropoxide bis(acetylacetonate) | TiO2 paste | ZrO2 paste | carbon paste", + "Titanium diisopropoxide bis(acetylacetonate) >> titanium tetrachloride | TiO2-np", + "CdSO4; thiourea; NH4OH", + "HCl; Titanium isopropoxide | 2-mIm; Zn(NO3)2", + "PCBM | LiF", + "PCBM-60 | BCP", + "SnCl4 | 1\u2010butyl\u20103\u2010methylimidazolium bromide", + "Titanium tetraisopropoxide; acetylacetone | TiO2-np", + "PCBM | PNDI-2T | LiF", + "tetraamminezinc(II) hydroxide", + "HCl; Titanium isopropoxide | TiO2 paste 22NR-T Solaronix", + "Titanium isopropoxide | HCl | Ethanol", + "titanium (diisopropoxide) bis(2,4-pentanedionate) | TiO2-np" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds", + "description": "The non-solvent precursor chemicals used in each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemicals associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several compounds, e.g. A and B, list the associated compounds in alphabetic order and separate them with semicolons, as in (A; B)\n- Note that also dopants/additives should be included\n- When several precursor solutions are made and mixed before the reaction step, it is the properties of the final mixture used in the reaction we here describe.\n- The number and order of layers and reaction steps must line up with the previous columns.\n- For gas phase reactions, state the reaction gases as if they were in solution.\n- For solid-state reactions, state the compounds as if they were in solution.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- If the compounds for a deposition step is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nTitanium diisopropoxide bis(acetylacetonate) | TiO2-np\nC60 | BCP\nTitanium diisopropoxide bis(acetylacetonate) | TiO2-np >> Li-TFSI", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Pegasus; Uppsala University", + "Unknown | Pegasus; Uppsala University >> Pegasus; Uppsala University", + "Sinopharm Chemical Reagent Co., Ltd; Macklin | Macklin | Shanghai MaterWin New Material", + "Fisher Scientific; Greatcell Solar", + "Xi'an p-OLED Corp. | Xi'an p-OLED Corp.", + "Unknown | Unknown", + "Sigma Aldrich | Sigma Aldrich", + "Sigma Aldrich | Dysole >> Sigma Aldrich >> Unknown", + "Solenne B.V. | Sigma-Aldrich", + "Sinopharm", + "Merck | Solaronix", + "ENB Korea >> Sigma Aldrich", + "Nichem Fine Technology | Nichem Fine Technology", + "Sigma Aldrich | Alfa-Aesar >> Junsei Chemicals | Dyesol >> Junsei Chemicals", + "Nichem Fine Technology Co. Ltd.", + "ENB Korea >> Sigma Aldrich >> ENB Korea", + "Nano-c", + "Sigma Aldrich | Dysole", + "Sigma Aldrich | Sigma Aldrich | Sigma Aldrich", + "nano-c; Unknown", + "Sinopharm | America Dye Sources", + "CBMM | Dyesol", + "Acros", + "1-Material Inc", + "Sigma Aldrich", + "Nichem", + "Solenne | Sigma Aldrich", + "Sigma Aldrich | Dysole >> Sigma Aldrich", + "Millipore Sigma | Milllipore Sigma", + "Sinopharm; Sinopharm", + "Han Feng Chemical | P-OLED", + "Unknown | Dyesol", + "Sigma Aldrich; Synthetized", + "Lab made", + "Unknown | Sigma Aldrich", + "Unknown >> Unknown | JGC Catalysts and Chemicals Ltd.", + "Unknown | Dyesole", + "Sigma Aldrich | Sinopharm Chemical Reagent Co., Ltd; Macklin | Macklin | Shanghai MaterWin New Material", + "Sigma Aldrich | Lab-made", + "Xi\u2019an Polymer Light Technology Corp", + "Unknown | Degussa", + "Sigma Aldrich >> Unknown", + "Sigma Aldrich | Unknown >> Sigma Aldrich", + "Sigma Aldrich; Solaronix; Solaronix", + "Alfa Aesar", + "Sigma Aldrich | Unknown >> Sinopharm", + "Xi'an Polymer Light Technology Corp. | Xi'an Polymer Light Technology Corp.", + "Unknown", + "Solaronix | Unknown", + "NanoPac >> synthsized", + "Unknown | Nichem Fine Technology", + "Nano-C | Alfa-Aesar", + "Pegasus; Uppsala University >> Pegasus; Uppsala University", + "Sigma Aldrich; Sigma Aldrich", + "Sigma Aldrich | Dyesol >> Junsei Chemicals", + "Aldrich; Aldrich | Nippon Aerosil; Nacalai Tesque >> Wako Pure Chemical; Wako Pure Chemical", + "Ossila | Unknown", + "Alfa-Aesar", + "1-Material", + "Aldrich | Nippon Aerosil; Nacalai Tesque >> Wako Pure Chemical; Wako Pure Chemical", + "Sigma Aldrich | SureChem", + "Unknown; Sigma Aldrich", + "Lab made | Xi'an Polymer Light Technology Corp. | Xi'an Polymer Light Technology Corp.", + "Aldrich; Solaronix Ti-Nanoxide N/SP", + "NanoPac >> Lab made | NanoPac", + "1-Material | 1-Material", + "Nano-C", + "Sigma Aldrich >> Unknown >> Sigma Aldrich >> Unknown", + "Sigma Aldrich | Greatcell", + "Unknown | Dyesole | Solaronix", + "Unknown | Pegasus; Uppsala University", + "Solarmer Material | 1-Material", + "Sigma Aldrich | Solaronix PST-18NR | Sigma Aldrich | Borun New Material Technology", + "Unknown | 1-Materials", + "Luminescence Technology Corp", + "Luminescence Technology Corp | Xi\u2019An Polymer Light Technology Corp", + "Sigma Aldrich >> ENB Korea", + "Alfa Aesar >> Unknown >> Unknown", + "Sigma Aldrich | Dyesol", + "Unknown | Sigma Aldrich; Degussa", + "ITASCO >> Unknown >> Unknown", + "Alfa-Aesar | Lab made", + "Sigma Aldrich >> Unknown >> Sigma Aldrich >> Unknown | Sigma Aldrich", + "Frontier Carbon Corp. | Tokyo Chemical Industry", + "Sigma Aldrich | Dyesol | Sigma Aldrich >> Unknown >> Sigma Aldrich >> Unknown", + "Unknown | NanoCleantech", + "Sigma Aldrich | Aerosil", + "America Dye Sources" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds_supplier", + "description": "The suppliers of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemical suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For gas phase reactions, state the suppliers for the gases or the targets/evaporation sources that are evaporated/sputtered/etc.\n- For solid state reactions, state the suppliers for the compounds in the same way.\n- For reaction steps involving only pure solvents, state the supplier as \u2018none\u2019 (as that that is entered in a separate filed)\n- For chemicals that are lab made, state that as \u201cLab made\u201d or \u201cLab made (name of lab)\u201d\n- If the supplier for a compound is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nDysole; Sigma Aldrich; Dyenamo; Sigma Aldrich\nSigma Aldrich; Fisher | Acros\nLab made (EPFL) | Sigma Aldrich >> none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Pro analysis", + "Pro analysis; Unknown", + "99%; 99.99%", + "Puris | Unknown >> Puris | Unknown >> Puris", + "0.97", + "98%; 99.8%", + "99.99% >> Unknown", + "Unknown >> Unknown >> Unknown >> Unknown | Unknown", + "Unknown", + "Unknown | Unknown", + "Puris | Unknown", + "Unknown; 97%", + "Pro analysis; Puris | Puris >> Puris", + "Pro analysis | Tecnical >> Pro analysis", + "0.98", + "Unknown >> Unknown | Unknown", + "Puris", + "0.999", + "Technical | Unknown", + "96% | Unknown", + "Unknown >> Unknown >> Unknown >> Unknown", + "Unknown >> Unknown", + "99.5% | 99%", + "99.99% >> Unknown | Unknown", + "Puris | Pro-analysis", + "Unknown | 99%", + "99.9% | Unkown", + "Puris | Unknown >> Puris", + "Pro analysis | Puris >> Puris", + "Unknown | Unknown | Puris >> Unknown >> Puris >> Unknown", + "Unknown | 99.8%" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds_purity", + "description": "The purity of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the compound purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, i.e. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019 (as that is stated in another field)\n- If the purity for a compound is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\n99.999; Puris| Tecnical\nUnknown >> Pro analysis; Pro analysis | none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.05 M", + "0.15 M | 33.33 wt%", + "15 wt%", + "16 mg/ml", + "15 mg/ml | nan", + "0.42 M", + "120 mg/ml; 640 mg/ml", + "25 mg/ml | nan", + "20 mg/ml; nan", + "52 wt% | 208 mg/ml; 14 mg/ml | 20 wt% | 20 wt%", + "0.15 M | 0.20 M", + "20 mg/ml | 30 mg/ml", + "nan | nan >> 80 mM", + "8 mg/ml | nan", + "20 mg/ml | 1 mg/ml", + "15 mg/ml | 1 mg/ml", + "2 mg/ml | 0.6 mg/ml | nan", + "164 mg/ml; 50 mg/ml", + "1 M; 0.5 M", + "14 vol%; 20 vol%", + "3 mg/ml | nan", + "0.2 M", + "nan >> 0.04 M >> nan >> nan | 20 wt%", + "0.15 M | 0.15 M", + "13 wt% | 20 wt%", + "2.564 vol%; 25 wt%; nan; nan", + "10 wt% | 20 wt%", + "5 mg/ml", + "12 wt% | 20 wt%", + "208 mg/ml; 14 mg/ml | 20 wt% | 20 wt%", + "20 mg/ml | nan | nan", + "nan | nan >> 20 mM", + "2.5 wt%; 20 wt%", + "5 mg/ml | nan", + "0.03 M", + "15 mg/ml; 2 mg/ml", + "0.254 M; 0.02 M; 0.1 mg/ml", + "0.15 M; nan", + "2 mg/ml | nan | nan", + "0.16 M", + "33 wt% | 10 mg/ml; 10 mg/ml", + "nan | nan >> 100 mM", + "20 wt%", + "0.2 M; 2 M | 150 mg/ml", + "25 wt%; 28 wt%", + "400 mM >> nan >> nan", + "75 wt% | nan", + "0.15 M | 7.5 mg/ml", + "20 mg/ml | 0.1 wt%", + "11 wt% | 20 wt%", + "20 mM; 150 mg/ml", + "0.2 M | nan", + "200 mM >> nan >> nan", + "2 vol%; 15 vol%", + "15.38 vol%", + "20 mg/ml | 0.2 %", + "nan | 10 mg/ml", + "0.286 vol%; 0.2 wt%", + "0.3 M; 10 mg/ml", + "nan; 0.9 vol%", + "20 mg/ml; 0.5 mg/ml", + "0.3 M", + "nan | 2.0 M", + "1.8 wt% | nan", + "20 mg/ml", + "40 mg/ml | 0.5 mg/ml", + "8.6 vol%; 5.71 vol% >> 12 wt%", + "14 wt% | 20 wt%", + "6 vol% | 125 mg/ml", + "0.2 M | 15 mg/ml", + "6 vol% | 150 mg/ml >> 10 mg/ml", + "0.355 vol%; 6.4 vol%", + "4 wt%", + "46.7 vol% >> nan", + "17 wt% | 20 wt%", + "8 mg/ml", + "2 wt%", + "100 mg/ml; 2.8 mg/ml | 10 mg/ml", + "7.5 vol% | 28 %", + "0.08", + "16 wt% | 20 wt%", + "2 wt% | 1 mg/ml", + "20 mg/ml | nan | 0.5 mg/ml", + "nan | nan >> 0.1 M", + "nan | 150 mg/ml", + "0.3 M >> 40 mM | nan", + "20", + "0.15", + "40 mg/ml | 11.11 vol%", + "20 mM >> 0.11 mg/ml >> 20 mM", + "0.04 M | 20 mg/ml", + "nan | nan | 5 mM | nan", + "15 wt% | 20 wt%", + "100 mM >> nan >> nan", + "2.5 wt%", + "1.25 vol% | nan | nan", + "20 wt% | 20 wt%", + "46.7 vol% >> nan >> 20 mg/ml >> nan | nan", + "nan | 28.6 vol% >> 0.02 M", + "0.3 M >> 40 mM", + "20 mg/ml | 0.2 wt%", + "5.26 vol% >> 4.2 vol%", + "10 vol%", + "nan | 4 wt%", + "6 vol% | 10 wt% | 1 mM", + "40 mM", + "0.0267", + "0.3 M >> 40 mM | 14 wt%", + "2.2 vol% >> 0.22 vol%", + "2.67 wt% | 20 mM", + "10 mg/ml", + "nan | 0.1 g/0.8mL >> 0.1 M", + "nan | 0.04 M", + "0.2 M | 5 mg/ml", + "75 wt% | 25 wt% >> 0.05 M >> nan", + "nan >> nan | 22.2 wt%", + "20 mg/ml | 40 mg/ml", + "0.15 M | nan", + "nan >> 1 M >> 0.4 M", + "nan | 22.22 wt%", + "0.2 M | 10 mg/ml", + "20 mg/ml >> 0.7 mg/ml", + "18 mg/ml", + "nan | 22.2 wt%", + "nan | 1.5 M", + "2 vol%; 15 vol% | 22 mg/ml; 9.9 mg/ml", + "0.125 M >> 0.025 M | 0.1 mg/ml", + "20 mg/ml | 1.5 mg/ml", + "0.15 M | 130 mg/ml >> 0.02 M", + "nan | 0.12 g/ml | 0.2 M >> nan >> 0.1 M >> nan", + "0.15 M", + "2.4 vol%", + "nan | nan >> 40 mM", + "13.3 mg/ml; 3.6 vol%; 0.098 vol%", + "20 mg/ml | 2.5 wt%", + "15 wt% | 0.5 mg/ml", + "20 mg/ml; 0.8 mg/ml", + "14.6 vol%; 1 M; 22.2 wt%", + "nan | 41.6 wt% | nan", + "20 mg/ml | 4.61 mg/ml", + "33 wt% | 10 mg/ml", + "0.3 M | 33 vol% >> 0.04 M | 28.6 wt% >> 0.04 M", + "0.3 M | 28.6 wt% >> 0.04 M", + "18 wt% | 20 wt%", + "0.7 vol%; 8 vol% | 1.8 wt%", + "0.15 M | 15.15 mg/ml >> 0.02 M", + "0.5 M; 0.5 M | nan", + "nan | 0.5 M", + "0.15 M | 0.3 M | nan", + "0.15 M >> 0.3 M | 60 mg/ml", + "10 vol% | nan", + "2.25 vol%", + "nan | 14.3 wt%", + "0.1 M", + "22 wt% | 20 wt%", + "2 mg/ml", + "11.4 wt%", + "nan | nan", + "10 mg/ml | 0.5 mg/ml", + "164 mg/ml; 50 mg/ml | 0.7 mg/ml", + "30 mg/ml | 0.5 mg/ml", + "33 wt%", + "0.04 M", + "15 mg/ml | 2 mg/ml", + "15 wt% | 1 mg/ml", + "10 mg/ml | nan", + "20 mg/ml | 0.6 mg/ml", + "5.3 mg/ml; nan", + "30 mg/ml", + "16 wt% | 6.67 wt% | 0.5 wt%", + "25 wt%28wt%", + "23.6 mg/ml; 22.77 mg/ml; 6 mg/ml", + "0.15 M | 2 :7wt", + "20 mg/ml | 5 mg/ml", + "0.4 wt% | nan", + "20 mg/ml | 0.5 mg/ml", + "30 mg/ml | nan", + "46.7 vol% >> nan >> 20 mg/ml >> nan", + "nan | 22 wt%", + "250 mg/ml", + "nan | 1.0 M", + "nan >> 0.15 M | nan", + "1.43 mg/ml | nan", + "nan | 0.08 wt%", + "1.5 mM; 1.5 mM; 30 %", + "5.3 mg/ml; nan | 0.1 mg/ml", + "20 mg/ml | nan", + "0.15 M >> 0.30 M", + "5 mol%; 10 vol%", + "2.67 wt%", + "nan | 0.25 mg/ml", + "0.15 M | 10 vol%", + "0.254 M; 0.02 M", + "nan | 4 mg/ml", + "10 vol% >> 10 vol%", + "0.15 M >> 0.3 M >> 0.3 M | nan", + "0.4 wt%", + "200 mM | 22 wt%", + "0.2 M | 0.066 wt%", + "0.5 M; 0.5 | nan >> 0.04", + "0.15 M | 0.10 M", + "0.2 wt% >> 8 mg/ml | nan", + "19 wt% | 20 wt%", + "0.15 M | 0.05 M", + "0.15 M; 20 wt%; 0.0002 M", + "0.15 M; 20 wt%", + "2 M; 16.67 wt%", + "20 mg/ml | 20 mg/ml", + "nan; 60 mg/ml", + "6 mg/ml", + "15 mg/ml", + "0.2 M | 7.5 mg/ml", + "7 mg/ml | nan", + "nan; 4 mg/ml", + "100 mg/ml; 2.8 mg/ml", + "3 mol%; 10 vol%", + "10 wt% | 0.8 mg/ml", + "10 vol% >> 10 vol% | 0.1 M", + "3 wt%", + "200 mM", + "10 vol% | 25 wt%", + "10 vol% | 18 wt%", + "1 mol%; 10 vol%", + "6 vol%; 0.67 vol%", + "0.15 M | 0.3 M", + "22 mg/ml", + "21 wt% | 20 wt%", + "nan | 0.7 mh/ml", + "20 mg/ml | 10 mg/ml", + "30 mg/ml | 0.1 wt%", + "300 mM >> nan >> nan", + "nan | 0.12 g/ml", + "0.2 wt% >> 8 mg/ml", + "nan | 0.2 M", + "1 M" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_concentrations", + "description": "The concentration of the non-solvent precursor chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the concentrations associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated concentrations and separate them with semicolons, as in (A; B)\n- The order of the compounds must be the same as in the previous filed.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used. When possible, use one of the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml, wt%, mol%, vol%, ppt, ppm, ppb\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n0.2 M; 0.15 M| 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "1.0 | Unknown", + "54.35", + "0.9 >> 0.1 >> 15.0", + "10.0", + "125.0; 65.0; Unknown", + "Unknown >> Unknown >> Unknown >> Unknown | Unknown", + "Unknown", + "7.0", + "250.0 | Unknown", + "Unknown | Unknown", + "100.0; 100.0", + "8.0", + "Unknown >> Unknown | Unknown", + "10.2", + "20.0 | 30.0", + "250.0", + "0.369; 0.07 | Unknown", + "50.0 | Unknown | Unknown | Unknown", + "50.0 | Unknown | Unknown", + "Unknown | 0.1", + "10.0 | 0.05 >> 0.1", + "2.2; 2.2; 2.8", + "0.15 | 0.3", + "Unknown >> Unknown >> Unknown >> Unknown", + "Unknown >> Unknown", + "0.6; 0.4 >> 0.04", + "30.0 | Unknown", + "1.0", + "1.0 | 1.0" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_volumes", + "description": "The volume of the reaction solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the volumes associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The volumes refer the volumes used, not the volume of the stock solutions. Thus if 0.15 ml of a solution is spin-coated, the volume is 0.15 ml\n- For reaction steps without solvents, state the volume as \u2018nan\u2019\n- When volumes are unknown, state that as \u2018nan\u2019\nExample\n0.1\n0.1 >> 0.05 | 0.05\nnan | 0.15", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "0.0 | Unknown", + "0.0 | 0.0", + "0.0 | 1.0", + "10.0", + "0.5 | Unknown | Unknown", + "Unknown >> Unknown >> Unknown >> Unknown | Unknown", + "Unknown", + "Unknown | Unknown", + "0.5 | Unknown | Unknown | Unknown", + "8.0", + "Unknown >> Unknown | Unknown", + "6.0", + "0.0 | 6.0", + "Unknown >> Unknown >> Unknown | 12.0", + "30.0", + "Unknown >> Unknown >> Unknown >> Unknown", + "Unknown >> Unknown", + "Unknown | Unknown >> 0.66", + "1.0", + "0.5 | 1000.0 >> 1000.0", + "4.0" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_age", + "description": "The age of the solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the age of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- As a general guideline, the age refers to the time from the preparation of the final precursor mixture to the reaction procedure.\n- When the age of a solution is not known, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state this as \u2018nan\u2019\n- For solutions that is stored a long time, an order of magnitude estimate is adequate.\nExample\n2\n0.25 |1000 >> 10000\nnan | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown | 300", + "", + "25", + "25 | 25 >> 70 >> 25", + "70 >> 25 >> 25", + "40; ", + "500 | 25", + "70 | 25 >> 70", + "Unknown | Unknown >> Unknown | Unknown >> 70", + "70", + "40; >> 40; ", + "25 >> 70 >> 25 >> 25 | 25", + "80", + "25 | 25", + "Unknown", + "Unknown | Unknown", + "100", + "25 | 25 >> 25", + "25 | 25 >> 70", + "77", + "25 | Unknown | Unknown", + "70 | Unknown", + "Unknown >> Unknown | Unknown", + "Unknown >> 220 >> Unknown", + "Unknown | Unknown >> 70", + "75", + "Unknown | 200", + "25 | 25 >> 90", + "25 | 80", + "60", + " | 40; ", + "25 | 70; 25", + "150 | Unknown", + "25 >> 70", + "Unknown >> 80", + "60 | Unknown", + "100 | 25", + "Unknown | 105", + "Unknown >> 80; 450 >> 150 >> 600 | Unknown", + "Unknown >> 80; 450", + "25 | Unknown | Unknown | Unknown", + "Unknown | 450", + "450", + " | 40; >> 40; ", + "230 | Unknown", + "25 >> 70 | 25", + "25 >> 70 | 25 | 25", + "Unknown >> 80; 450 >> 150 >> 600", + "200 | Unknown", + "25 >> 70 | Unknown", + "450 | Unknown", + "25 | Unknown" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_temperature", + "description": "The temperature of the reaction solutions.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a reaction solution undergoes a temperature program, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons, e.g. 25; 100\n- When the temperature of a solution is unknown, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state the temperature of the gas or the solid if that make sense. Otherwise state this as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume an undetermined room temperature to be 25\nExample\n25\n100; 50 | 25\nnan | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + " | 60", + "450 >> 70 | 25", + "25", + "", + "25 | 25 >> 70 >> 25", + "300", + "70 >> 25 >> 25", + "60 | 25", + "500 | 25", + "70 | 25 >> 70", + "70", + "25 >> 70 >> 25 >> 25 | 25", + "80", + "25 | 25", + "450 | 25 >> 25", + "Unknown", + "Unknown | Unknown", + "100", + "500 | 25 >> 25", + "25 | 25 >> 70", + "500", + "450 | 95", + "150", + "77", + "70 | Unknown", + "450 | 25", + "450 | 25 | 25", + "Unknown >> 220 >> Unknown", + "25 | 25 | 25 | 25", + "60", + "25 | 25 >> 90", + "70 | 25", + "25 >> 70", + "90", + "Unknown | Unknown >> Unknown | Unknown >> Unknown", + "100 | 25", + " | 90 >> 90", + "300 >> Unknown | Unknown", + "450 | Unknown | Unknown", + "450", + "Unknown | Unknown >> Unknown", + "25 | 25 | 25", + " | 90", + "90 >> 90", + "455 >> Unknown", + "500; 25", + "455 | 25", + "500 | 25 | 25", + "455 | Unknown", + "Unknown | 120", + "15 | 15", + "25 | Unknown" + ] + } + } + ] + }, + "name": "deposition_substrate_temperature", + "description": "The temperature of the substrate.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the substrates (i.e. the last deposited layer) associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The temperature of the substrate refers to the temperature when the deposition of the layer is occurring.\n- If a substrate undergoes a temperature program before the deposition, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- When the temperature of a substrate is not known, state that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume that an undetermined room temperature is 25\nExample\n125; 325; 375; 450 | 25 >> 25\n100\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "80 | Unknown", + "100 >> 500 | 70", + "25", + " | 60", + "125 >> 500 | 500", + "", + "25 | 150 >> 500", + "450 | 510", + "500 >> 500 >> 500 | 500 >> 500 >> 500 >> 500 >> 500 >> 500 >> 500", + "500 | 25", + "80.0 | Unknown", + "180", + "135; 500 | 500", + "400", + "450 | 95; 350", + "Unknown | 125; 325; 375; 450; 500", + "Unknown | Unknown", + "130", + "450 | 150", + "450 | 125; 375; 450 >> 450", + "135; 500", + "120 | 450", + "125; 500 | Unknown", + "Unknown | 100", + "160; 500", + "150 >> 180", + "25 | 80", + "75", + "500 | 500 >> 500", + "420", + "25 | 150", + "125 >> 500 | 125 >> 500", + "100 | 25", + "450 | 100 >> 500", + "500 | 70; 500", + "450; 500 | 20 >> 500 >> 20", + "500 | 150; 500", + "455 | 100 >> 500", + "90 >> 90", + "100; 180", + "400 | 400", + "125 | 500 >> 25; 500", + "501", + "140", + "Unknown | 500", + "130 | 70", + "410", + "450 | 125; 250; 350; 450; 500", + "480 | 500", + "160", + "125 >> 500 | 125 >> 500 | 125 >> 500", + " | 90 >> 90", + "100 >> 500 | 100 >> 500", + "550", + "450 | 100 >> 450", + "450 | 25 | 500", + "500 | 550", + "450 | 125; 500", + "500 | 70 >> 70 | 500 >> 500", + "150 >> 500", + "510 >> 70 >> 510 | 510", + "25 | 325; 375; 450; 500", + "70", + "125 >> 450 | Unknown", + "150 | 500 | 500 | 500", + "550 | 550 >> 550", + "500 | 125; 500", + "500 | 550 >> 500", + "200 | 25", + "500 | 450 >> 450", + "Unknown | 125 >> 500", + "100", + "500 | 550 | Unknown >> Unknown >> Unknown >> 450", + "100 >> 500 | 100 >> 125 >> 325 >> 375 >> 450 >> 500", + "455 >> 100; 500", + "500", + "150 | 500", + "90 | 50", + "500 >> 70 >> 500 | 500", + "165", + "125 | 125; 500 | 25", + "500 | Unknown", + "125; 125", + "100; 150; 185", + "125; 150 >> 150; 190", + "20", + "150 >> 550", + "25 >> 125; 500 | Unknown", + "450 | 450 >> 150", + "120 | 120", + "450 | 120; 500", + "120 >> 500 | 120 >> 500", + "150 | 25", + "Unknown | 180", + "300 >> 500 | 550", + "60 | Unknown", + "120 >> 500", + "25 | 25 | 25", + "250 | 250 | 250", + "150 >> 290 >> 200 | 80", + "125 | 125; 550 >> 25; 500", + "550 | 300", + "450 | 500 | 500", + "120 >> 500 | 500", + "125 | 500 >> 25 >> 500", + "501 | 450", + "25 >> 25 >> 500", + "125 >> 500 >> 500", + "125 >> 450 | 500", + "500 | 70", + "100; 185", + "120 | 500", + "455 | 100; 500", + "25 | 25", + "550 | 150", + "Unknown", + "125 >> 450 | 125 >> 450", + "500 | 125 >> 500", + "500 >> 70 | 100; 500 >> 70 | 500", + "500 | 500 | 25", + "150", + "500 | 450", + "500 | 500 | 450", + "25 | 480", + "500 | 500", + "500 | 25 | 400", + "100 | 100", + "125 | 500", + "500 >> 500 | 500 | 25", + "510 >> 25 >> 25 >> 510 | 510", + "150 | 120", + "200 | 150", + "25 | 125 >> 500", + "90", + "180 >> 400 >> 450", + "500 | 120", + "25; 500", + "25 >> 500 | 100; 500", + "450 | 500 | 190", + "Unknown | 450", + "500 | 110 >> 500", + "450", + "100 | 80", + "80; 500 | 500", + "150 | 150", + "500; 25", + "118 | 500 >> 500", + "480", + "150 >> 290 >> 200", + "125 >> 125 >> 125; 500 | 120; 500", + "300 | 500 | 400 | 100", + "100 | Unknown", + "185", + "150; 500", + "70 >> 180", + "450 | 100", + "25 | 125 >> 500 | 150 >> 500", + "125 | 125; 500", + "25 | 0", + "100; 100", + "165 | 100", + "500 | 120 >> 500", + "300", + "150 | 100", + "120 >> 500 | 150", + "25 >> 25 >> 100", + "450 | 500", + "150 >> 500 | 125 >> 500", + "25 | 500", + "80", + "170", + "200", + "Unknown | 70; 500", + "125 | 100; 550", + "500 | 500 >> 450", + "450 | 500 >> 450", + "450 | 450", + "120", + "90 | Unknown", + "500 >> 500 | Unknown", + "110", + "500 | 50", + "25 | 500 | 500", + "450 >> 450", + "500 | 500 | 500", + "25 | 500 >> 25; 500", + "450 | 450 | Unknown", + "80.0", + "60", + "510 | 540", + "150 | Unknown", + "125 >> 450", + "450 | 500 | 400", + "410 | 400", + " | 90", + "150 | 450 >> 500", + "100; 500", + "450 | 125 >> 500", + "100; 150; 185 | 100", + "450 | 450 >> 500", + "100; 150; 185 | 25", + "450 | 450 | 450" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_temperature", + "description": "The temperatures of the thermal annealing program associated with depositing the layers\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing temperatures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- If no thermal annealing is occurring after the deposition of a layer, state that by stating the room temperature (assumed to 25\u00b0C if not further specified)\n- If the thermal annealing program is not known, state that by \u2018nan\u2019\nExample\n450 | 125; 325; 375; 450 >> 125; 325; 375; 450\n50 | 25\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "5.0 | 30.0", + "15.0 | 10.0", + "90.0 | 90.0 >> 30.0", + "30.0; 30.0 | 30.0", + "Unknown >> Unknown >> 60.0", + "5.0 | 5.0; 60.0", + "60.0; 60.0; 60.0 | Unknown", + "Unknown | Unknown | 40.0", + "60.0 | 60.0", + "30.0 | 10.0; 30.0", + "5.0 | 5.0; 60.0 | Unknown", + "60.0", + "5.0", + "0.0 | 30.0 | 30.0", + "120.0", + "45.0 | 5.0; 5.0; 30.0 >> 30.0", + "180.0", + "Unknown | Unknown", + "45.0", + "120.0 | 30.0 >> 30.0", + "Unknown | 2.0", + "210.0 >> 60.0 >> 60.0", + "5.0 >> 5.0 >> 5.0; 30.0 | 5.0; 30.0", + "20.0 >> 60.0 | 30.0 >> 5.0 >> 5.0 >> 5.0 >> 5.0 >> 15.0 >> 15.0", + "20.0; 10.0", + "10.0 | 180.0", + "Unknown | 5.0; 5.0; 5.0; 5.0", + "30.0 | 30.0 | Unknown", + "10.0 >> 30.0 | 30.0", + "10.0 | 10.0", + "30.0 | 30.0 | 1440.0", + "2.0", + "60.0 | 15.0; 60.0", + "40.0 >> 10.0; 30.0", + "5.0 | Unknown", + "Unknown >> 20.0 | 30.0", + "5.0 >> 30.0", + "30.0 | 30.0; Unknown", + "15.0 | 15.0", + "5.0 | 60.0 >> Unknown >> 60.0", + "90.0 | 5.0 >> 5.0 | 90.0 >> 30.0", + "5.0 >> 30.0 | 5.0 >> 30.0 | 5.0 >> 30.0", + "60.0 | 60.0 | 60.0", + "2.0 | 2.0", + "4.0", + "30.0 | 0.0", + "40.0 | 10.0 >> 30.0", + "60.0 | 10.0", + "53.0 | 35.0", + "30.0 | 30.0 | 60.0", + "2.0 >> 30.0 >> 30.0", + "60.0 | Unknown", + "120.0 | 10.0 >> 30.0", + "5.0 | 0.0", + "10.0", + "Unknown >> 5.0; 30.0 | Unknown", + "15.0 >> 30.0", + "30.0 | 30.0", + "25.0 | 5.0 >> 20.0", + "10.0 >> 10.0 >> 10.0 | 5.0", + "15.0 | 30.0", + "12.0", + "30.0 >> 40.0 >> 30.0 | 30.0", + "25.0 | 25.0", + "5.0 | 5.0; 120.0", + "Unknown | Unknown | Unknown", + "10.0 >> 60.0 | 60.0", + "30.0 >> Unknown >> Unknown >> 30.0 | 30.0", + "5.0 >> 30.0 | Unknown", + "10.0 >> 10.0 >> 10.0", + "Unknown | Unknown; 20.0", + "Unknown; Unknown", + "5.0; 30.0 | Unknown", + "2.0 | 30.0", + "Unknown >> 30.0 | 5.0; 30.0", + "5.0 >> 60.0 | 60.0", + "40.0 | 10.0; 30.0", + "10.0 >> 60.0", + "25.0 | 0.0", + "0.0 | 0.0 | 0.0", + "18.0 | 28.0 >> 28.0", + "30.0 >> 30.0 | 30.0 | Unknown", + "30.0 | 60.0 | Unknown >> Unknown >> Unknown >> 30.0", + "Unknown | 60.0", + "45.0 | 45.0 >> 30.0", + "35.0 | 10.0 >> 30.0", + "30.0 | 10.0", + "60.0; 60.0", + "10.0 >> 120.0", + "6.0 | 30.0", + "5.0; 30.0 >> 5.0; 60.0", + "120.0 | 30.0", + "30.0 >> 60.0", + "Unknown; 500.0", + "0.0 | 0.0", + "30.0 | 15.0", + "53.0", + "Unknown | 5.0; 5.0; 15.0; 15.0", + "Unknown | 30.0", + "5.0 >> 30.0 | 5.0 >> 30.0", + "Unknown", + "10.0 | 30.0", + "20.0 | 20.0", + "30.0 | 60.0 >> 30.0", + "Unknown | 10.0; 30.0", + "30.0 | 20.0; 10.0; 10.0; 10.0; 30.0", + "5.0 | 30.0 >> Unknown; 30.0", + "20.0 | 60.0", + "0.0 | 30.0", + "5.0; 60.0", + "80.0 | Unknown | 110.0", + "10.0; 30.0 | 30.0", + "30.0", + "25.0 | 5.0 >> 30.0 | 5.0 >> 30.0", + "30.0 | 40.0 | 40.0", + "60.0 >> 60.0 | Unknown", + "5.0 | 5.0; 60.0 >> Unknown; 30.0", + "5.0 >> 30.0 | 30.0", + "30.0 | Unknown", + "25.0", + "45.0 | 10.0", + "100.0 | 15.0; 30.0", + "Unknown | Unknown >> 15.0", + "30.0 >> 30.0", + "20.0; 30.0", + "Unknown | Unknown; 30.0", + "30.0 | 20.0", + "10.0 | 10.0 | 10.0", + "10.0 >> 30.0 | 10.0 >> 30.0", + "10.0 | 30.0 >> 30.0", + "30.0 | 30.0 | 30.0", + "60.0 | 20.0", + "30.0 | 5.0", + "30.0 | 10.0 >> 30.0", + "Unknown | 20.0", + "240.0 >> 60.0", + "1440.0", + "Unknown >> Unknown >> 180.0", + "25.0 | 500.0", + "30.0 >> 30.0 >> 30.0 | 50.0", + "20.0 | 10.0 >> 30.0", + "15.0 >> 30.0 | 10.0 >> 30.0", + "30.0 | 60.0", + "60.0; 60.0; 60.0 | 10.0", + "60.0 | 30.0 | 30.0", + "420.0 >> 60.0 >> 60.0", + "0.0 | 10.0 >> 30.0", + "1.0 | 30.0 >> 30.0", + "Unknown | 30.0 >> Unknown; 30.0", + "30.0 >> 30.0 | 30.0; 30.0 >> 30.0 | 30.0", + "30.0 | 30.0 >> 30.0", + "10.0 >> 30.0 | 10.0", + "10.0 | Unknown", + "10.0 | 10.0; 60.0", + "30.0 | 30.0 >> Unknown", + "10.0 | 30.0 | 30.0 | 30.0", + "12.0 | Unknown", + "20.0", + "45.0; Unknown", + "10.0 | 30.0 | 30.0 | 15.0", + "10.0; 30.0", + "60.0; 60.0; 60.0", + "Unknown | 15.0 >> 30.0", + "300.0 >> 60.0 >> 60.0", + "10.0 >> 10.0 >> 10.0 | 10.0 >> 10.0 >> 10.0 >> 10.0 >> 10.0 >> 10.0 >> 10.0", + "0.0; 30.0", + "15.0" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_time", + "description": "The time program associated to the thermal annealing program.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing times associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the associated times at those temperatures and separate them with semicolons.\n- The annealing times must align in terms of layers\u00b8 reaction steps and annealing temperatures in the previous filed.\n- If a time is not known, state that by \u2018nan\u2019\n- If no thermal annealing is occurring after the deposition of a layer, state that by \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 20 and not 10-30.\nExample\n30 | 5; 5; 5; 30 >> 5; 5; 5; 30\n60 | 1000\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "N2", + "Air; Air; Air | N2", + "Ambient | Ambient | Ambient", + "Ambient | N2", + "Air | Air >> Air", + "Air | Air | Vacuum", + "Ambient | Unknown", + "Ambient >> Ambient | Ambient", + "Air; chlorobenzene", + "Unknown", + "Air; Air; Air", + "Air | N2", + "Unknown | Unknown", + "Vacuum >> Vacuum >> Unknown", + "Steam", + "N2 | N2", + "Ambient | Ambient >> Ambient | Ambient >> Ambient", + "Air | Air | Air", + "N2 | N2 | Vacuum", + "Ambient", + "Air | Air", + "Ambient | Ambient | Ambient >> Ambient >> Ambient >> Ambient", + "Unknown | Ambient", + "Ambient | Ambient >> Ambient", + "Air | Air | Air | Air", + "Dry air", + "Vacuum | Vacuum", + "Air", + "Dry air | Dry air", + "Ambient | Ambient", + "Ambient >> Ambient >> Ambient", + "Vacuum", + "Air | Ar", + "Dry air | Vacuum" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_atmosphere", + "description": "The atmosphere during thermal annealing\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each annealing step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the atmosphere is a mixture of different gases, i.e. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas.\n- This is often the same as the atmosphere under which the deposition is occurring, but not always.\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nVacuum | N2\nAir | Ar >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1.0", + "0.25", + "0.1", + "0.16", + "0.3" + ] + } + } + ] + }, + "name": "storage_time_until_next_deposition_step", + "description": "The time between the HTL stack is finalised and the next layer is deposited\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Ar", + "N2", + "Unknown", + "Air" + ] + } + } + ] + }, + "name": "storage_atmosphere", + "description": "The atmosphere in which the sample with the finalised HTL stack is stored until the next deposition step.\nExample\nAir\nN2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "40.0", + "0.9", + "30.0", + "20.0" + ] + } + } + ] + }, + "name": "storage_relative_humidity", + "description": "The relive humidity under which the sample with the finalised HTL stack is stored until next deposition step\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Water", + "Plasma", + "ZnAl-LDH and thermal annealing", + "Ozone", + "UV", + "UV-Ozone", + "CO2", + "H2", + "He plasma", + "Washed with methanol", + "Wash with IPA", + "O2 plasma", + "Reactive ion etching" + ] + } + } + ] + }, + "name": "surface_treatment_before_next_deposition_step", + "description": "Description of any type of surface treatment or other treatment the sample with the finalised ETL-stack undergoes before the next deposition step.\n- If more than one treatment, list the treatments and separate them by a double forward angel bracket (\u2018 >> \u2018)\n- If no special treatment, state that as \u2018none\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nnone\nAr plasma", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Perovskite", + "description": "This section contains information about the properties of the absorber layer. It describes the `chemical formula`, the `dimensionality`, the `bandgap`,\nor the `list of dopants and additives` that are in the perovskite layer.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "single_crystal", + "description": "TRUE if the cell is based on a perovskite single crystal", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "dimension_0D", + "description": "TRUE if the cell is based on a perovskite quantum dots. Perovskite nanoparticle architectures can also be counted here unless they more have the characteristics of a standard polycrystalline cell", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "dimension_2D", + "description": "TRUE if the cell is based on 2D perovskites, i.e. a layered perovskite with a large A-cation", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "dimension_2D3D_mixture", + "description": "TRUE if the cell is based on a mixture of 2D and 3D perovskites. This is sometimes referred to as reduced dimensional perovskites (but not as reduced as to be a pure 2D perovskite)", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "dimension_3D", + "description": "TRUE for standard three-dimensional perovskites with ABC3 structures. TRUE also for the case where the bulk of the perovskite is 3D but where there exist a thin 2D-caping layer", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "dimension_3D_with_2D_capping_layer", + "description": "TRUE if the bulk of the perovskite layer is 3D but there is a top layer with lower dimensionality.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "3.0 | 1.0", + "3.0 | 0.0", + "2.5", + "0.0 | 0.0", + "2.0 | 3.0 | 2.0", + "3.0 | 0.0 | 0.0 | 0.0", + "3.0", + "2.0 | 3.0", + "3.0 | 3.0", + "3.0 | 2.0", + "3.0 | 0.0 | 0.0", + "1.5", + "2.0", + "3.0 | 2.0 | 0.0", + "1.0", + "0.0", + "3.0 | 0.0 | 0.0 | 0.0 | 0.0", + "1.0 | 3.0" + ] + } + } + ] + }, + "name": "dimension_list_of_layers", + "description": "A list of the perovskite dimensionalities\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- In most cases, there will be only one layer\n- For a perovskite that is a mixture of a 2D and a 3D phase, mark this is as2.5\nExample\n3\n3 | 2\n0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "composition_perovskite_ABC3_structure", + "description": "TRUE if the photo-absorber has a perovskite structure\n- The typical perovskite has an ABC3 structure and that is clearly a TRUE\n- This category is inclusive in the sense that also 2D perovskite analogues should be labelled as TRUE", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "composition_perovskite_inspired_structure", + "description": "TRUE if the photo absorber does not have a perovskite structure. In the literature we sometimes see cells based on non-perovskite photo absorbers, but which claims to be \u201cperovskite inspired\u201d regardless if the crystal structure has any resemblance to the perovskite ABC3 structure or not. This category is for enabling those cells to easily be identified and filtered.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "((CH3)3S)", + "(1.3-Pr(NH3)2)", + "(3AMP); FA; MA", + "(3AMP); MA", + "(3AMPY); MA", + "(4AMP); MA", + "(4AMPY); MA", + "(4ApyH)", + "(4FPEA); MA", + "(5-AVA); Cs; MA", + "(5-AVA); FA", + "(5-AVA); MA", + "(5-AVAI); Cs; FA", + "(6-ACA); MA", + "(ALA); BA; MA", + "(ALA); MA", + "(APMim)", + "(AVA) | MA", + "(AVA) | MA | (BI)", + "(AVA); MA", + "(Ace); MA", + "(Ada); FA", + "(Anyl)", + "(Anyl); MA", + "(BDA)", + "(BDA); MA", + "(BEA); Cs; FA; MA", + "(BEA); MA", + "(BIM); MA", + "(BYA); MA", + "(BZA)", + "(BZA); (HAD); MA", + "(BZA); MA", + "(BdA)", + "(Br-PEA); MA", + "(BzDA); Cs; FA; MA", + "(C6H4NH2)", + "(CH3ND3)", + "(CHMA); Cs; MA", + "(CHMA); MA", + "(CIEA); MA", + "(CPEA); MA", + "(Cl-PEA); MA", + "(DAP)", + "(DAT); MA", + "(DMA)", + "(DMA); MA", + "(DPA); MA; PA; PA", + "(EDA); FA; MA", + "(F-PEA); MA", + "(F3EA); BA; MA", + "(F5PEA)", + "(F5PEA); Cs; FA; MA", + "(GABA); MA", + "(H-PEA); MA", + "(HEA); Cs; FA", + "(HdA)", + "(IEA); MA", + "(ImEA)", + "(MTEA); MA", + "(N-EtPy)", + "(NEA); BA; MA", + "(NH4)", + "(NH4); FA; MA", + "(NMA); MA", + "(OdA)", + "(PBA); BA; MA", + "(PBA); MA", + "(PDA); Cs; FA", + "(PDA); MA", + "(PDMA)", + "(PDMA); FA", + "(PDMA); MA", + "(PEA)", + "(PEA) | Cs; FA; MA | (PEA)", + "(PEA) | MA", + "(PEA) | MA | (PEA)", + "(PEA); (F5PEA)", + "(PEA); (F5PEA); Cs; FA; MA", + "(PEA); BA; FA", + "(PEA); BA; MA", + "(PEA); Cs", + "(PEA); Cs; FA", + "(PEA); Cs; FA; MA", + "(PEA); Cs; MA", + "(PEA); FA", + "(PEA); FA; MA", + "(PEA); MA", + "(PEA); MA | MA", + "(PEI)", + "(PEI); MA", + "(PGA); BA; MA", + "(PGA); MA", + "(PMA)", + "(PMA); FA", + "(PMA); MA", + "(PTA); MA", + "(PyEA); MA", + "(PyrEA)", + "(TBA); Cs; FA; MA", + "(TBA); MA", + "(TEA); MA", + "(TFEA); Cs; FA; MA", + "(THM); MA", + "(TMA)", + "(ThFA); MA", + "(ThMA); FA", + "(ThMA); MA", + "(f-PEA)", + "(iPA)", + "(iso-BA); MA", + "(mF1PEA); MA", + "(n-C3H7NH3)", + "(oF1PEA); MA", + "(pF1PEA); MA", + "AN; Cs; MA", + "AN; FA; MA", + "AN; MA", + "Aa; MA", + "Ag", + "Ag; Cs", + "Ag; Cs; Rb", + "BA", + "BA; Cs", + "BA; Cs; FA", + "BA; Cs; FA; MA", + "BA; Cs; MA", + "BA; FA", + "BA; FA; MA", + "BA; FA; MA; PMA", + "BA; GA; MA", + "BA; GU; MA", + "BA; MA", + "BDA; Cs", + "BE; FA", + "BU; FA", + "Ba; K", + "Bi", + "Bi; La", + "Bn", + "Ca; FA; MA", + "Ca; MA", + "Cs", + "Cs | BA; Cs", + "Cs | Cs", + "Cs | FA", + "Cs | MA", + "Cs; (DMA); MA", + "Cs; Ag", + "Cs; EA; FA", + "Cs; FA", + "Cs; FA | (PA)", + "Cs; FA | (PEA)", + "Cs; FA | (PMA)", + "Cs; FA | Cs", + "Cs; FA | Cs; FA", + "Cs; FA; GA", + "Cs; FA; GU", + "Cs; FA; GU; MA", + "Cs; FA; K; MA", + "Cs; FA; MA", + "Cs; FA; MA | (A43)", + "Cs; FA; MA | (CH3)3S", + "Cs; FA; MA | (EPA)", + "Cs; FA; MA | (FEA)", + "Cs; FA; MA | (FPEA)", + "Cs; FA; MA | (PEA)", + "Cs; FA; MA | (PEI)", + "Cs; FA; MA | (mFPEA)", + "Cs; FA; MA | (oFPEA)", + "Cs; FA; MA | (pFPEA)", + "Cs; FA; MA | BA", + "Cs; FA; MA | Cs", + "Cs; FA; MA | HA", + "Cs; FA; MA | NMABr", + "Cs; FA; MA | PA", + "Cs; FA; MA; Rb", + "Cs; FA; PDA", + "Cs; FA; Rb", + "Cs; FA; nan", + "Cs; HA", + "Cs; K", + "Cs; Li", + "Cs; MA", + "Cs; MA; FA | BA", + "Cs; Na", + "Cs; Rb", + "Cu", + "DA; FA", + "DI; FA", + "EA", + "EA; FA", + "EA; MA", + "EA; MA; NEA", + "EA; MA; PEA", + "EDA; FA", + "FA", + "FA | (ODA)", + "FA | (PEA)", + "FA | Cs", + "FA | EDA", + "FA; GU", + "FA; GU; MA", + "FA; HA", + "FA; K; MA", + "FA; MA", + "FA; MA | (A43)", + "FA; MA | (C4H9NH3)", + "FA; MA | (C6H13NH3)", + "FA; MA | (C8H17NH3)", + "FA; MA | (FEA)", + "FA; MA | (HTAB); FA; MA", + "FA; MA | (MIC1)", + "FA; MA | (MIC2)", + "FA; MA | (MIC3)", + "FA; MA | (NH4); FA", + "FA; MA | (PEA)", + "FA; MA | BA", + "FA; MA | BA; FA", + "FA; MA | DA", + "FA; MA | OA", + "FA; MA | PEA", + "FA; MA | TA", + "FA; OA", + "FA; PN", + "FA; PR", + "FA; Rb", + "FA; TN", + "GA; MA", + "GU", + "GU; MA", + "HA", + "HA; MA", + "HDA", + "IA; MA", + "IM", + "IM; MA", + "K", + "K; BA", + "La", + "MA", + "MA | (BEA)", + "MA | (BI)", + "MA | (C4H9N2H6)", + "MA | (EU-pyP)", + "MA | (MIC1)", + "MA | (MIC2)", + "MA | (MIC3)", + "MA | (PEA)", + "MA | (PPA)", + "MA | (PPEA)", + "MA | BA", + "MA | BA; MA", + "MA | CA", + "MA | Cs", + "MA | Cs | Cs", + "MA | Cs | Cs | Cs", + "MA | Cs | Cs | Cs | Cs", + "MA | FA", + "MA | MA", + "MA; PA", + "PA", + "Rb", + "Sr" + ] + } + } + ] + }, + "name": "composition_a_ions", + "description": "List of the A-site ions in the perovskite structure\n- We have experimented with letting users write the perovskite structure and from that extract ions and coefficients. Due to the multitude of formatting variations, that has not worked out very well, wherefor we now define the perovskite ion by ion.\n- List all the A-site ions in alphabetic order and separate them by semicolons\n- For ions which labels are three characters or longer, enclose them in parenthesis. That improves readability and simplifies downstream data treatment.\n- In case of a layered perovskite structure, separate layers by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- Only include ions that go into the perovskite structure. Ions that only are found in secondary phases, or amorphous grain boundaries, or that disappears during synthesis, should instead be added as dopants/additives in the field dedicated to dopants and additives.\no On example is Rb in MAFAPbBrI-perovskites. As far as we know, Rb does not go into the perovskite structure, even if that was believed to be the case in the beginning, but rather form secondary phases. For MAFAPbBrI-perovskites, Rb should thus not be considered as a A-site cation, but as a dopant/additive.\nExample:\nMA\nFA; MA\nCs; FA; MA\n(5-AVA); MA\nCs; FA; MA | (PEA)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "1", + "0.2", + "0.83; 0.17" + ] + } + } + ] + }, + "name": "composition_a_ions_coefficients", + "description": "A list of the perovskite coefficients for the A-site ions\n- The list of coefficients must line up with the list of the A-site ions\n- If a coefficient is unknown, state that with an \u2018x\u2019\n- If there are uncertainties in the coefficient, only state the best estimate, e.g. write 0.4 and not 0.3-0.5.\n- A common notation is \u20181-x\u2019. Write that as x\n- If the coefficients are not known precisely, a good guess is worth more than to state that we have absolutely no idea.\nExamples:\n1\n0.83; 0.17\n0.05; 0.79; 0.16\n1.5; 0.5", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Pb; Sn | Pb; Sn", + "Ni; Pb", + "Al", + "Pb; Sm", + "Cu; Sb", + "Ag; Bi", + "Pb | Pb | Pb", + "Pb | Pb | Pb | Pb | Pb", + "Bi; Te", + "Mn; Pb", + "Pb; Zn", + "Y", + "Au", + "Pb; Sr", + "Fe", + "Sn", + "Cu", + "Bi", + "Hg; Pb", + "Ca; Pb", + "Sn | Sn", + "Cu; Pb; Sn", + "Ge; Pb", + "Pb | Pb", + "Ni", + "Bi; Pb", + "Cu; Pb", + "Sb", + "Mg; Pb", + "Hg", + "Co; Pb", + "Ge; Sn", + "Pb; Tb", + "Pb; Sn", + "Pb", + "Pb; Sb", + "Sb; Sn", + "Pb | Ba; Pb", + "Mn", + "Sn | Pb", + "Fe; Pb", + "Ti", + "In; Pb", + "La; Pb", + "Nb; Ni", + "Pb | Pb | Pb | Pb", + "Ge; Sb", + "Bi; Fe; Cr", + "Bi; Sb", + "Ge", + "Ba; Pb", + "Eu; Pb" + ] + } + } + ] + }, + "name": "composition_b_ions", + "description": "List of the B-site ions in the perovskite structure\n- We have experimented with letting users write the perovskite structure and from that extract ions and coefficients. Due to the multitude of formatting variations, that has not worked out very well, wherefor we now define the perovskite ion by ion.\n- List all the B-site ions in alphabetic order and separate them by semicolons\n- In case of a layered perovskite structure, separate layers by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- Only include ions that go into the perovskite structure. Ions that only are found in secondary phases, or amorphous grain boundaries, or that disappears during synthesis, should instead be added as dopants/additives in the field dedicated to dopants and additives.\nExample:\nPb\nSn\nPb; Sn\nBi\nPb | Pb", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "7.8", + "0.008; 0.992", + "0.625; 0.375", + "9", + "0.6; 0.6", + "0.1; 0.9", + "0.875; 0.125", + "1", + "0.05; 0.85; 0.1", + "2", + "0.85", + "0.6", + "0.85; 0.15", + "0.93", + "1.2; 0.8", + "0.93; 0.07", + "41", + "0.9999; 0.0001", + "2.4; 1.8", + "0.98", + "0.5; 0.5", + "0.45 | 9", + "0.003; 0.997", + "0.97; 0.03", + "0.07; 0.93", + "11", + "1 | 1; 1", + "0.95; 0.1", + "0.995", + "2.6", + "1 | 3", + "0.025; 0.975", + "0.2; 0.8", + "0.016; 0.984", + "0.748; 0.252", + "0; 0.19", + "4.0", + "1 | 1 | 1 | 1", + "0.0118; 0.9882", + "4.8; 3.6", + "0.99", + "0.6; 0.4", + "0.02; 0.98", + "0.031; 0.969", + "0.4; 0.6", + "0.875", + "0.94; 0.06", + "0.99; 0.01", + "0.05", + "0.99999; 0.00001", + "1.4; 0.6", + "0.09; 0.91", + "0.664; 0.336", + "0.54", + "100", + "0.999; 0.001", + "0.075; 0.925", + "7", + "0.25; 0.75", + "20", + "0.96; 0.04", + "8", + "0.15; 0.85", + "0.5; 0.500", + "0.05; 0.95", + "0.063; 0.937", + "0.57", + "1 | 1 | 1", + "1 | 2", + "0.20; 0.80", + "1.0", + "6.1", + "0.05; 0.9; 0.05", + "11.2", + "1 | 1", + "0.01; 0.99", + "4", + "0.05; 0.8; 0.15", + "10", + "0.997; 0.003", + "29", + "3", + "0.916; 0.084", + "0.014; 0.986", + "1.8; 0.2", + "3.14", + "0.8; 0.2", + "0.95; 0.05", + "2.7", + "6", + "0.10; 0.90", + "40", + "0.50; 0.50", + "1; 0.6", + "0.7; 0.3", + "0.08; 0.92", + "0.25", + "0.4; 0.6 | 0.4; 0.6", + "23", + "0.84; 0.84", + "0.005; 0.995", + "0.98; 0.02", + "3; 2.4", + "0.832; 0.168", + "3; 1", + "1.8; 1.2", + "1; 3", + "0.995; 0.005", + "61", + "1.9; 0.1", + "0.88; 0.12", + "0.95", + "x", + "2.2", + "0.7; 0.255", + "2; 1; 1", + "0.06; 0.94", + "0.38; 0.62", + "0.97", + "0.03; 0.97", + "5", + "0.125; 0.875", + "1; 1", + "0.9; 0.1", + "0.66; 0.33", + "80", + "0.9", + "0.375; 0.625", + "0.58; 0.42", + "12.9", + "0.997", + "1.1", + "60", + "0.3; 0.7", + "30", + "0.04; 0.96", + "0.92; 0.08", + "1.6; 0.4", + "9.5", + "0.75; 0.25", + "0.45", + "4 | 1", + "0.0094; 0.9906", + "0.37; 0.6255", + "0.93; 0.03", + "0.65; 0.35", + "1 | 1 | 1 | 1 | 1", + "4.4" + ] + } + } + ] + }, + "name": "composition_b_ions_coefficients", + "description": "A list of the perovskite coefficients for the B-site ions\n- The list of coefficients must line up with the list of the B-site ions\n- If a coefficient is unknown, mark that with an \u2018x\u2019\n- If there are uncertainties in the coefficient, only state the best estimate, e.g. write 0.4 and not 0.3-0.5.\n- A common notation is \u20181-x\u2019. Write that as x\n- If the coefficients are not known precisely, a good guess is worth more than to state that we have absolutely no idea.\nExamples:\n1\n0.83; 0.17\nx; x\n0.5; 0.5 | 1", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Br; I | Br; I", + "", + "(BF4); I", + "O", + "I | Br; I | I", + "S", + "Br | Br; I", + "Cl", + "Br", + "I | Br", + "I | I; Br", + "Br | I", + "Br; I | I", + "Br; F; I", + "Br; I", + "I | I | Br; I | Br; I", + "(PF6); PF6", + "(SCN); I", + "I | I", + "F; I", + "Cl; I", + "I", + "I; (SCN)", + "I | I | I", + "Cl; I | Cl", + "Br; Cl", + "I; SCN", + "Br | Br", + "I | I | Br; I", + "I | I | Br; I | Br; I | Br; I", + "I | I; (PF6)", + "Br; Cl; I", + "Br | Br; Cl", + "I | Br; I" + ] + } + } + ] + }, + "name": "composition_c_ions", + "description": "List of the C-site ions in the perovskite structure\n- We have experimented with letting users write the perovskite structure and from that extract ions and coefficients. Due to the multitude of formatting variations, that has not worked out very well, wherefor we now define the perovskite ion by ion.\n- List all the A-site ions in alphabetic order and separate them by semicolons\n- For ions which labels are three characters or longer, enclose them in parenthesis. That improves readability and simplifies downstream data treatment.\n- In case of a layered perovskite structure, separate layers by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- Only include ions that go into the perovskite structure. Ions that only are found in secondary phases, or amorphous grain boundaries, or that disappears during synthesis, should instead be added as dopants/additives in the field dedicated to dopants and additives.\no One example is chloride in MAPbI3. As far as we know, Cl does not go into the perovskite structure even if that was believed to be the case in the beginning. For MAPbI3 Cl should thus not be considered as a C-site cation, but as a dopant/additive.\nExample:\nI\nBr; I\nBr\nBr; I| I", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "composition_c_ions_coefficients", + "description": "A list of the perovskite coefficients for the C-site ions\n- The list of coefficients must line up with the list of the C-site ions\n- If a coefficient is unknown, mark that with an \u2018x\u2019\n- If there are uncertainties in the coefficient, only state the best estimate, e.g. write 0.4 and not 0.3-0.5.\n- A common notation is \u20181-x\u2019. Write that as x\n- If the coefficients are not known precisely, a good guess is worth more than to state that we have absolutely no idea.\nExamples:\n3\n0.51; 2.49\n0.51; 2.49 | x", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "SnI2", + "FA", + "Cl", + "SnF2; Sn", + "BiBr3", + "SnCl2", + "PbI2; SnI2", + "FAI", + "I2", + "Sn", + "MAI; PEAI; DMF", + "CH3ND3I", + "Stoichiometric | Stoichiometric", + "PbAc2", + "MAI; FAI", + "PbBr2; PbI2", + "MAI; PEAI", + "RbI", + "MA", + "FAI; MABr", + "MABr; PbI2", + "NH4Cl", + "HCl", + "5-AVAI", + "I", + "Pb", + "Stoichiometric", + "PbI2 | nan", + "SrI2", + "CsI", + "BiI3", + "MAI", + "AgI", + "CsBr", + "MABr", + "PbCl2", + "CsI; MACl", + "MACl", + "SbI3", + "PbI2; PbBr2", + "Stoichiometric | nan", + "PbI", + "SnBr2", + "PbBr2", + "PbI2" + ] + } + } + ] + }, + "name": "composition_none_stoichiometry_components_in_excess", + "description": "Components that are in excess in the perovskite synthesis. E.g. to form stoichiometric MAPbI3, PbI2 and MAI are mixed in the proportions 1:1. If one of them are in excess compared to the other, then that component is considered to be in excess. This information can be inferred from data entered on the concentration for all reaction solutions but this gives a convenient shorthand filtering option.\n- If more than one component is in excess, order them in alphabetic order and separate them by semicolons.\n- It there are no components that are in excess, write Stoichiometric\nExamples:\nPbI2\nMAI\nStoichiometric", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "FAMAPbBrI | (MIC3)PbI", + "CsBiPbI", + "BAFAMAPbI", + "FAPbI | (ODA)PbI", + "CsFAPbI | CsPbI", + "(PMA)FAPbI", + "CsRbSnI", + "MAPbI | (BEA)PbI", + "(PEA)FAMAPbI", + "BAPbI", + "CsPbI | CsPbI", + "AgCsBiI", + "MAPbI | MABaPbI", + "MAPbI | (MIC1)PbI", + "CsPbBr | CsPbI", + "(PEA)CsFAPbI", + "EAMAPEAPbI", + "nanBiI", + "GUPb(SCN)I", + "MAMnPbI", + "MAPbISCN", + "(5-AVA)MAPbI", + "IMPbI", + "(mF1PEA)MAPbI", + "MAPb(SCN)I", + "FAGeSbCl", + "(BEA)CsFAMAPbBrI", + "nanPbI", + "CsEAFAPbBrI", + "CsPbBrI | FAPbBrI", + "BAMASnI", + "CsCuPbBr", + "CsPbBr | MAPbI", + "(1.3-Pr(NH3)2)PbI", + "FAMAPbBrI | (FEA)PbI", + "MAPbI | (PPEA)PbI", + "FAPbSnI", + "BACsFAMAPbI", + "CsMgPbBr", + "CsHAPbI", + "(F-PEA)MAPbI", + "(C6H4NH2)CuClI", + "CsPbBr | FAPbBr", + "(DAT)MAPbI", + "(EDA)FAMAPbI", + "(NH4)SbBrI", + "CsPbBrI | BACsPbBrI", + "MAMgPbI", + "CsNaBiI", + "(IEA)MAPbI", + "(PGA)BAMAPbI", + "BACsFAPbSnI", + "FASnI", + "MASnBr", + "MAPbI | FAPbBrI", + "HAPbI", + "CsPbBrI | CsPbI", + "EAMANEAPbI", + "CsPbSrBr", + "CsFAMAPbI", + "(PEA)CsFAMAPbBrI", + "(APMim)Pb(PF6)PF6", + "(5-AVA)CsMAPbI", + "(oF1PEA)MAPbI", + "SrTiO", + "EAMAPbI", + "(PMA)MAPbI", + "FATNSnI", + "CuBiI", + "nanBiO", + "(n-C3H7NH3)PbCl", + "(PBA)BAMAPbI", + "CsFAPbSnI", + "(NH4)SbI", + "CsFAPbBrI", + "HDABiI", + "CsRbPbBr", + "(NH4)SbBr", + "AgCsBiBr", + "MAPbBr", + "(PDA)CsFAPbI", + "CsFAPbBr", + "CsBaPbI", + "BACsPbI", + "MAPbSrI", + "HAMASnI", + "(F5PEA)(PEA)CsFAMAPbBrI", + "(4AMPY)MAPbI", + "MAPbI | (MIC2)PbI", + "(OdA)PbI", + "MAPbI | (C4H9N2H6)PbI", + "MAEuPbI", + "CsPbSnI", + "FAPbI | EDAPbI", + "RbPbI", + "BDACsPbBrI", + "(Anyl)MAPbI", + "EAFASnI", + "(4ApyH)SbI", + "(PEA)BAMAPbI", + "(TMA)SnI", + "CsPbZnBr", + "AgBiI", + "CsPbSnBrI", + "(ImEA)PbI", + "FAPbBrI", + "MAPbI | MAPbI", + "FAMAPbI | (A43)PbI", + "MANiPbI", + "BAKBiTeO", + "MASnI", + "(BDA)PbI", + "FAMAPbBrI | OAPbI", + "MAHgI", + "(F5PEA)CsFAMAPbBrI", + "(4FPEA)MAPbI", + "MAPbI | (EU-pyP)PbI", + "CsMAPbSnBrI", + "CsFAPbBrI | (PEA)PbBrI", + "(PEA)PbI | CsFAMAPbBrI | (PEA)PbI", + "(iso-BA)MAPbI", + "MAPbI | MAPbBrI", + "CsFAPbI | CsFAPbI(PF6)", + "MAPbBrCl", + "MAPbI | BAMAPbI", + "FAMAPbBrI | (C4H9NH3)PbI", + "EDAFASnI", + "CsNiPbBr", + "MAInPbI", + "((CH3)3S)SnClI", + "CsBaPbBrI", + "(C6H4NH2)CuBrI", + "FAPbI | CsPbI", + "MACuPbBrI", + "(Br-PEA)MAPbBrI", + "CsFAMAPbBr", + "FAPbCl", + "MABaPbI", + "(AVA)PbI | MAPbI | (BI)PbI", + "BAGAMAPbI", + "(PEI)MAPbI", + "(PEA)FAMASnI", + "MAPbI | MAPbBr", + "(PDMA)MAPbI", + "FAMASnI", + "CsPb(SCN)I", + "CsFAMAPbBrI | (A43)PbI", + "CsFAPbBrI | (PA)PbBrI", + "EAMAPbBr", + "FASnBrI", + "(PEA)MAPbI", + "(HEA)CsFAPbBrI", + "MACuPbSnBrI", + "IAMAPbI", + "(ThMA)MAPbI", + "CsPbBr | FAPbBrCl", + "MAAuBr", + "BACsFAPbBrI", + "CsFAMAPbBrI | HAPbI", + "CsFARbPbI", + "CaMAPbBrI", + "CsMAPbI", + "FASnI | (PEA)SnI", + "FAPbBrCl", + "MACuBrCl", + "FAHAPbI", + "(PEA)MASnI", + "MACoPbI", + "(3AMP)MAPbI", + "(PBA)MAPbI", + "MAPbSnBr", + "CsFAMAPbBrI | CsPbI", + "FAMAPbI", + "FAMAPbSnI", + "(F5PEA)(PEA)PbI", + "MAPbI | (BI)PbI", + "MAPAPbI", + "AgBi(SCN)I", + "FAPbBr", + "(6-ACA)MAPbI", + "CsMAPbSnClI", + "(PEI)PbI", + "FAMAPbSnBrI", + "MANiClI", + "MAGeBrI", + "MAPbClI", + "CsTiBr", + "CsSnI", + "MAPbBrI", + "(CPEA)MAPbI", + "FAMAGeSnI", + "MAPbI | BAPbI", + "BiLaFeO", + "(PEA)MAPbClI", + "BiFeO", + "FAMAPbBrI", + "(PDMA)PbI", + "CsGeSnI", + "FAMAPbBr", + "FAKMAPbBrI", + "MASbSnI", + "FAMAGePbBrI", + "(5-AVA)FASnI", + "CsFAMAPbI | (FEA)PbI", + "CsFAMAPbBrI | (pFPEA)PbI", + "FAMAPbBrI | DAPbI", + "(4ApyH)BiSbI", + "(DMA)MAPbI", + "CsFAMAPbBrI | (EPA)PbI", + "MASbI", + "IMMAPbI", + "(BDA)MAPbI", + "(F5PEA)PbI", + "BAFAPbI", + "MAGeI", + "LaYS", + "MAPbI | (PPA)PbI", + "CsPbBr | FAPbBrI", + "FAMAPbBrI | PEAPbI", + "nannannan", + "CsBiI", + "(PEA)PbI", + "MACaPbI", + "nanSnI", + "CsFAMAPbBrI | CsPbBrI", + "FAMAPbBrI | BAFAPbI", + "(TEA)MAPbI", + "MAPbZnI", + "CsSbI", + "CsFAGAPbI", + "FAMAPbI | (NH4)FAPbI", + "BACsMAPbI", + "CsFASnI", + "BnSnI", + "HAMAPbI", + "FAPbI | (PEA)PbI", + "FAPbBrClI", + "CsPbBr | CsPbBrI", + "(NMA)MAPbI", + "CsGePbBrI", + "CsPbBrI", + "FAMAPbSnI | (PEA)PbSnI", + "(3AMPY)MAPbI", + "(PGA)MAPbI", + "CsPbBr", + "BAFASnI", + "EAPbI", + "CsFAPDAPbI", + "(N-EtPy)SbBr", + "(PDMA)FAPbI", + "BAFAPbClI", + "MASnI | MAPbI", + "CsFAGAPbBrI", + "CsCaPbBr", + "MAPbI | CsPbBr", + "CsNaPbBr", + "AgCsSbI", + "CsLiPbBr", + "(pF1PEA)MAPbI", + "(NH4)FAMAPbBrI", + "BAMAPbI", + "MAPbI", + "MAPbI | CsPbI | CsPbBrI", + "(PyEA)MAPbI", + "(PEA)BAFASnI", + "(BZA)PbI", + "CsFAPbI | CsFAPbI", + "MACuPbI", + "DIFAPbI", + "CsPbBr | CsPbBr", + "CsLaPbBrI", + "CsFAMAPbI | NMABrPbIBr", + "CsPbZnBrI", + "MASnBrI", + "CsPbBrI | CsPbBrI", + "(ThMA)FAPbI", + "ANCsMAPbI", + "CsFAGUPbI", + "(PEA)FAMASnBrI", + "HASnI", + "CsSnBr", + "(CHMA)MAPbI", + "(TFEA)CsFAMAPbBrI", + "CsFAMAPbBrI | (FPEA)PbI", + "(PEA)FASnI", + "CsFAMAPbBrI", + "CsFAKMAPbBrI", + "MAPb(BF4)I", + "(BZA)(HAD)MAPbI", + "(BIM)MAPbI", + "(ALA)MAPbI", + "CsPbSmBr", + "(PEA)CsPbI", + "MAPbI | (MIC3)PbI", + "GUPbI", + "CsFAPbI", + "FABiPbI", + "(BEA)MAPbI", + "(PEA)CsMAPbI", + "((CH3)3S)SnBrI", + "(TBA)MAPbI", + "(Anyl)PbI", + "nanCuSbI", + "MAAlCl", + "CsBaPbBr", + "CsGeI", + "(GABA)MAPbI", + "(Ada)FAPbI", + "(CH3ND3)PbI", + "BACsFAMAPbBrI", + "MAHgPbI", + "CsMAPbBrI", + "(BdA)PbI", + "CsFAMAPbBrI | (mFPEA)PbI", + "BUFAPbI", + "CsPbBrFI", + "CsRbPbBrI", + "AgCsRbBiBr", + "(CHMA)CsMAPbI", + "(BzDA)CsFAMAPbBrI", + "FAMAPbBrI | BAPbI", + "FAMAPbBrI | (HTAB)FAMAPbBrI", + "ANMAPbI", + "(PEA)MAPbClI | MAPbCl", + "MAPbI | CAPbI", + "(PEA)FAPbI", + "CsPbI", + "(BYA)MAPbI", + "FAMAPbBrI | (MIC1)PbI", + "PAPbI", + "CsFAGUPbBrI", + "(APMim)PbBrI", + "MAPbSnBrI", + "FAMAPbBrI | (C8H17NH3)PbI", + "MASnBrClI", + "(Cl-PEA)MAPbClI", + "nanBiCrFeO", + "(5-AVAI)CsFAPbI", + "(F3EA)BAMAPbI", + "(BZA)MAPbI", + "FAPRPbI", + "(f-PEA)PbI", + "MAPbI | CsPbI | CsPbBrI | CsPbBrI", + "FABiI", + "(DMA)PbI", + "(PEA)MAPbBrI", + "CsMAPb(SCN)I", + "CsFAMASnBrI", + "BAFAPbBrI", + "MAPbSbBrI", + "MAPbI | (PEA)PbI", + "FAMAPbBrI | (MIC2)PbI", + "CsMAPbSnI", + "(H-PEA)MAPbI", + "CsFAMAPbBrI | BAPbBrI", + "CsFAMAPbBrI | BAPbI", + "RbSbI", + "BAGUMAPbI", + "FARbPbI", + "MAPbI | CsPbI | CsPbBrI | CsPbBrI | CsPbBrI", + "AaMAPbI", + "CsFAMAPbBrI | (PEI)PbI", + "CsFAKMAGePbBrI", + "CsFAMAPbBrI | (CH3)3SPbI", + "MASnCl", + "KSbI", + "BaKNbNiO", + "CsFAPbBrI | (PMA)PbBrI", + "(CIEA)MAPbI", + "(PEA)CsPbBrI", + "FAMAPbI | TAPbI", + "CsFAPbI | (PEA)PbI", + "(iPA)PbI", + "(4AMP)MAPbI", + "AgBiBr", + "CsSnBrI", + "CsEuPbBrI", + "AgCsBiSbBr", + "(ThFA)MAPbI", + "FAOASnI", + "(DMA)CsMAPbI", + "MAMnI", + "CsKPbBr", + "ANFAMAPbI", + "CsFAMAPbSnBrI", + "CsFAPbBrClI", + "CsFAMAPbBrI | PAPbI", + "(HdA)PbI", + "CsFAMAPbSnI", + "(AVA)PbI | MAPbI", + "FAPbClI", + "(ALA)BAMAPbI", + "CsAgBiBr", + "GUSnI", + "(TBA)CsFAMAPbBrI", + "CsPbI | FAPbI", + "(Ace)MAPbI", + "FAPbI", + "(PDA)MAPbI", + "CsPbTbBr", + "(PEA)PbI | MAPbI", + "FAMAPbBrI | (C6H13NH3)PbI", + "MAPbSbI", + "GAMAPbI", + "CsFAGUMAPbBrI", + "BEFAPbI", + "CsFAMAPbBrI | (PEA)PbI", + "(3AMP)FAMAPbI", + "(PEA)CsPbBr", + "(AVA)MAPbI", + "(PyrEA)PbI", + "FAGUSnI", + "(Cl-PEA)MAPbI", + "(PTA)MAPbI", + "((CH3)3S)SnI", + "MAFePbI", + "DAFASnI", + "BAMAPbSnI", + "MAPbSnI", + "(PEA)PbI | MAPbI | (PEA)PbI", + "MABiSbI", + "FAGUMAPbI", + "(MTEA)MAPbI", + "CsMASnI", + "CsFAMARbPbI", + "(DPA)MAPAPAPbI", + "FAPNSnI", + "CsFAMARbPbBrI", + "(DAP)PbI", + "FASnBr", + "(NEA)BAMAPbI", + "(PEA)FAMAPbBrI", + "(PMA)CuBr", + "GUMAPbI", + "MABiI", + "CaFAMAPbBrI", + "CsFAMAPbBrI | (oFPEA)PbI", + "MAPbI | CsPbI", + "(THM)MAPbI", + "CsPbSrBrI", + "MASnFI", + "CsFAnanPbI", + "MAPbCl" + ] + } + } + ] + }, + "name": "composition_short_form", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Cs0.2FA0.6MA0.2PbBr0.095I0.905", + "(PEA)2FA0.5MA3.5Pb5I16", + "Cs0.2FA0.8Pb0.75Sn0.25I3", + "(THM)0.05MA0.95PbI3", + "FA0.026MA0.974PbI3", + "CsPbBrI2 | CsxPbBrI2", + "(PEA)0.2BA1.8MA3Pb4I13", + "Cs0.17FA0.83Pb0.995Sn0.005I3", + "(PEA)2MA9Pb10I31", + "Cs0.05FA0.79MA0.16Pb0.58Sn0.42Br0.52I2.48", + "FA0.7MA0.3PbBr0.1I2.9", + "FA0.83MA0.13PbBr0.39I2.61", + "(NH4)6.8FA0.15MA2.125Pb7.8Br0.45I23.97", + "FA0.75K0.1MA0.15PbBr0.55I2.55", + "Cs0.97Na0.03PbBr3", + "Cs0.2FA0.75MA0.05PbBr0.51I2.49", + "Cs0.09FA0.77MA0.14PbBr0.42I2.58", + "MASnI3", + "FASnI3 | (PEA)2SnI4", + "Cs0.10FA0.83MA0.07PbBr0.51I2.49", + "Cs0.07FA0.725MA0.115PbBr0.45I2.55", + "FA0.85MA0.15PbBr0.21I2.79", + "Ag3Bi1.0Br6", + "Cs0.2MA0.8PbI3", + "(PDMA)FA2Pb3I10", + "(PEA)2MA59Pb60I181", + "GUPb(SCN)2.2I0.8", + "Cs0.05FA0.79MA0.16Pb0.5Sn0.5I3", + "MAPbI3 | MAPbBrI2", + "Cs0.9Ag3Bi2.6I9", + "MACu0.05Pb0.9Sn0.05Br0.1I2.9", + "FAPbCl3", + "Cs0.10FA0.75MA0.15PbBr0.45I2.55", + "Cs02FA0.8PbBr0.42I2.58", + "CsPbBr3 | FAPbBr2I", + "Cs0.3FA0.7PbBr0.256I0.744", + "Cs0.07FA0.9MA0.03PbBr0.24I2.76", + "Cs0.1MA0.9Pb0.9Sn0.1Br0.3I2.7", + "MAIn0.25Pb0.75I3", + "MAHg0.1Pb0.9I3", + "Cs0.05MA0.95Pb0.95Sn0.1Br0.15I2.85", + "Cs0.25FA0.75PbBr0.6I2.4", + "Cs0.1FA0.74MA0.1530PbBr0.51I2.49", + "Cs0.125FA0.875PbBr0.375I2.625", + "MAPb(SCN)I2", + "MAPb1.0BrI2", + "MAPbBr0.6I2.4", + "(PGA)0.2BA1.8MA3Pb4I13", + "CsPbBr3 | CsPbBrI2", + "Cs0.1FA0.7MA0.2PbBr0.3I2.7", + "Cs0.10FA0.36MA0.54PbBr0.2I2.8", + "(Ace)0.08MA0.92PbI3", + "(Anyl)2MA3Pb4I12", + "(PBA)0.5BA1.5MA3Pb4I13", + "Cs0.05FA0.85MA0.15PbBr0.45I2.70", + "FA0.67MA0.33PbBr2I", + "FA0.5MA0.5PbBr0.3I2.7", + "Cs0.15FA0.85PbBr0.87I2.13", + "(PEA)2MA19Pb20I61", + "Cs0.05FA0.79MA0.16PbBr0.03I2.97", + "Cs0.1FA0.85Rb0.05PbI3", + "(Ace)0.03MA0.97PbI3", + "Cs0.1FA0.85MA0.05PbBr0.15I2.85", + "FA0.83MA0.17PbBr0.46I2.54", + "Cs0.02FA0.83MA0.17PbBr0.51I2.49", + "FA0.57MA0.43PbBr0.13I2.87", + "MAGeI3", + "HAMAPbI3", + "FA0.15MA0.85PbI3", + "CsSnBr2.5I0.5", + "HASnI3", + "Cs0.05FA0.93GU0.02PbI3", + "MACu0.01Pb0.99Br0.01I2.99", + "CsNi0.03Pb0.97Br3", + "Cs0.05FA0.78MA0.12PbBr0.51I2.49", + "MA3Bi2I10", + "FASnBr3", + "IM0.3MA0.30.7PbI3", + "Cs0.05FA0.76MA0.16PbBr0.48I2.52", + "EA0.15MA0.85PbI3", + "MASnI3 | MAPbI3", + "(BZA)1.85(HAD)0.15MA2Pb3I10", + "Cs0.1FA0.9PbBr0.095I0.905", + "FA0.57MA0.43PbI3", + "Cs0.09FA0.77MA0.14PbBr0.42I2.58 | (FPEA)2PbI4", + "Cs0.05FA0.15MA0.85PbI3", + "CsEu0.07Pb0.93BrI2", + "Cs0.2FA0.8PbBr0.28I2.72", + "MACa0.01Pb0.99I3", + "(THM)0.075MA0.925PbI3", + "Cs0.40MA0.60PbI3", + "FA0.43MA0.57PbBr0.13I2.93", + "(Ada)2FA2Pb3I10", + "Cs0.17FA0.83Pb0.4Sn0.6I3", + "MAPbBr0.01I2.99", + "(BIM)0.1MAPbI3.2", + "Cs0.96K0.04PbBr3", + "Cs0.17FA0.83PbBr0.3I2.7", + "FA0.85MA0.15PbBr3", + "Cs0.05MA0.95PbBr1.5I1.5", + "Cs0.2668FA0.666MA0.0664PbBr0.095I0.905", + "FA0.85MA0.15PbBr0.45I2.55 | BA0.5FA1.5PbI4", + "MAPbBr0.78I2.22", + "Cs0.05MA0.17FA0.76PbBrI2 | BA2PbBr3.2I0.8", + "FA0.95MA0.05PbBr0.15I2.75", + "Cs0.3FA0.7PbI3", + "Cs0.34MA0.66PbI3", + "(PEA)0.03MA0.97PbI3", + "IM0.3MA0.7PbI3", + "nanPbI2", + "(5-AVA)0.05Cs0.05MA0.9PbI3", + "MAPbBr0.56I2.44", + "Cs0.17FA0.83PbBr0.51I2.5", + "FA0.93MA0.03PbBr0.09I2.91", + "MASnBr3", + "FA0.37MA0.63PbI3", + "MAPb0.75Sn0.25Br2.4I0.6", + "MAPb0.38Sn0.62I3", + "(PEA)BAFA3Sn4I13", + "MAPb0.97Sb0.03Br2.94I0.09", + "EA2MA10Pb11I34", + "FA0.12MA0.8PbBr0.12I2.88", + "Cs0.05FA0.285MA0.665PbI3", + "BA2MAPb2I7", + "Cs0.025FA0.825MA0.15PbBr0.45I2.55", + "FA0.8MA0.2Pb1.0I3", + "MA3PbBr0.32I2.68", + "MAPbBr0.27I2.73", + "HAPbI4", + "FA0.15PN0.85SnI3", + "CsEu0.05Pb0.95BrI2", + "AN0.15FA0.5MA0.8PbI3", + "FA0.84MA0.16PbBr0.51I2.49", + "Cs0.2FA0.8PbBr0.12I2.88", + "Cs0.05FA0.81MA0.14PbI3", + "FA0.048MA0.952PbBrI2.91", + "BA2Cs0.6FA3.4Pb3Sn2.4I17", + "MA2CuBr2Cl2", + "Cs0.05FA0.8075MA0.1425PbBr0.45I2.55", + "MAPb0.75Sb0.25I3", + "Cs0.2FA0.66MA0.14Pb0.5Sn0.5Br0.5I2.5", + "Cs0.1FA0.75MA0.15PbBr0.35I2.65", + "FAPbBrI2", + "FA8PR2Pb9I28", + "(DAT)MA2Pb3I10", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | (pFPEA)PbI3", + "(PEA)2PbI4 | Cs0.1FA0.74MA0.13Pb1Br0.39I2.48 | (PEA)2PbI4", + "Cs0.065FA0.79MA0.145PbBr0.49I2.51", + "CsPbBr3", + "Cs0.1FA0.9PbBr0.1I2.9 | (PMA)PbBr0.1I2.9", + "Cs0.05FA0.95MAPbI3", + "Cs0.17FA0.83PbBr2.49I0.51", + "((CH3)3S)2SnClI5", + "FA0.7GU0.3SnI3", + "CsBa0.1Pb0.9BrI2", + "Cs0.05FA0.8265MA0.1235PbBr0.51I2.49", + "BA2MA23Sn4I13", + "FA0.33PbBr1.5I1.5", + "CsPb0.88Zn0.12BrI2", + "FA0.57MA0.43PbBr0.13I2.91", + "FA0.85MA0.15Pb1.0Br0.45I2.55", + "(MTEA)2MA4Pb5I16", + "FA0.8MA0.2PbBr0.6I2.40", + "FA0.17MA0.83PbBrI2", + "IM0.05MA0.95PbI3", + "(4AMP)MA3Pb4I13", + "Cs0.15AgBi3I8.5", + "Cs0.8MA0.2PbI3", + "Cs0.2FA0.8PbBr0.9I2.1", + "FA0.85MA0.15PbBr0.45I2.55 | PEA2PbI4", + "Cs0.4FA0.2MA0.4PbI3", + "MAGeBrI2", + "MAPbBr0.045I2.955", + "FA0.75MA0.25PbBr0.45I2.55", + "MAIn0.10Pb0.90I3", + "Cs0.05FA0.79MA0.16Pb0.5Sn0.5Br0.5I2.5", + "FAPbI3 | (ODA)2PbI4", + "(PEA)2MA8Pb9Br11.2I16.8", + "Cs2FAnanPbI3", + "HA0.4MA0.6SnI3", + "Cs0.05FA0.79MA0.16PbBr0.15I0.85", + "FA0.97MA0.03PbBr0.09I2.91 | (MIC1)2PbI4", + "FAPb0.75Sn0.25I3", + "FA4GeSbCl12", + "Cs0.1FA0.1MA0.8Pb1.0I3", + "Cs0.1MA0.9PbBr1.2I1.8", + "MAPb0.4Sn0.6Br1.2I1.8", + "BA2FA2Pb3I10", + "MAPb0.75Sn0.25Br1.2I1.8", + "MAPbBr0.1I2.9", + "CsPbBr0.45I2.55", + "Cs0.1MA0.9Pb0.7Sn0.255I3", + "FA0.9MA0.1PbBr0.15I2.85", + "Cs0.2FA0.66MA0.14Pb0.25Sn0.75Br0.5I2.5", + "CsMAPbI3", + "MAIn0.05Pb0.95I3", + "Cs0.2FA0.66MA0.14SnBr0.5I2.5", + "Cs0.2FA0.8PbBr0.6I2.4", + "GUPb(SCN)3I", + "Cs0.1FA0.36MA0.54PbBr0.2I2.8", + "FA0.85MA0.15Pb1.0Br0.15I0.85", + "FA0.15MA0.85PbBr0.15I2.85", + "Cs0.05FA0.7885MA0.1615PbBr0.4845I2.4155", + "FA0.66MA0.34PbI3", + "Cs0.05FA0.79MA0.16Pb0.916Sn0.084Br0.52I2.48", + "CsSnBr0.3I2.7", + "GU0.25MA0.75PbI3", + "(TBA)0.03MA0.97PbI3", + "FA0.125MA0.875PbBrI2", + "IM0.25MA0.250.75PbI3", + "FA0.5MA0.5PbBr0.13I2.92", + "MAPb0.3Sn0.7I3", + "BAFA10Pb11I34", + "FA0.83MA0.17PbBr0.52I2.48", + "FA0.3MA0.7PbBr2.1I0.9", + "CsPbBrI2", + "IMPbI3", + "CsPbBr3 | CsPb2Br5", + "Cs0.15FA0.75MA0.1PbI3", + "CsNi0.003Pb0.997Br3", + "MASnBr0.42I2.58", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | (mFPEA)PbI3", + "Cs0.05FA0.80MA0.15PbBr0.43I2.57", + "Cs0.88K0.12PbBr3", + "(CIEA)0.03MA0.97PbI3", + "(PyEA)2MA8Pb9I28", + "CsPbBrxIx", + "FA0.3MA0.7PbBr0.225I2.775", + "FA0.75MA0.75PbI3", + "AgCs2BiBr5.9", + "HA0.1MA0.9PbI3", + "(GABA)0.1MA0.9PbI3", + "FA0.83MA0.17PbBr0.03I2.97", + "Cs0.04FA0.96PbI3", + "(PEA)2MAPb2I4", + "Cs0.1FA0.83MA0.17PbBr0.51I0.249", + "FA0.85MA0.15PbBr0.5I2.5", + "CsAgBiBr6", + "FA0.55MA0.45PbI3", + "FAPbBr2.43Cl0.57", + "(F5PEA)2PbI4", + "FASn1.0I3", + "Cs0.25FA0.75PbBr0.51I2.49", + "MAMnI3", + "FA0.7MA0.3PbBr0.256I0.744", + "Cs0.05FA0.85MA0.1PbBr0.66I2.34", + "FAxMAxPbBrxIx", + "FA0.7MA0.3Pb0.7Sn0.3I3", + "FA0.3MA0.7PbBr0.3I2.7", + "Cs0.005Pb0.995Br3", + "Cs0.05FA0.7885MA0.1615PbBr0.34I2.66", + "AN0.06MA0.94PbI3", + "(f-PEA)2PbI4", + "MAPbBrI", + "BA2Cs0.15FA0.57MA2.28Pb4I13", + "Cs0.17FA0.83PbI3", + "Cs0.4FA0.6PbBr0.256I0.744", + "CsPbBr3I", + "Ca0.2MA0.8PbBr0.6I2.4", + "CsBa0.3Pb0.7BrI2", + "Ag3Bi2I9", + "Cs0.15FA0.85PbBr2.1I0.9", + "IM0.4MA0.40.6PbI3", + "Cs0.1FA0.75MA0.15PbBr0.45I2.55", + "Cs0.2FA0.32MA0.48PbBr0.2I2.8", + "BA2MA3Pb4I13", + "Cs0.14FA0.65MA0.21PbBrI2", + "CsPbBr2.7I0.3", + "FA0.83MA0.17Ge0.03Pb0.97Br0.3I2.7", + "CsPbBr2.8I0.2", + "MAHg0.05Pb0.95I3", + "Cs0.4MA0.6PbI3", + "MAPbBr0.08I2.92", + "Cs0.08FA0.78MA0.14PbBr0.45I2.55", + "MAEu0.1Pb0.9I3", + "Cs0.005Pb0.995Br1.99I1.01", + "Cs0.05FA0.79MA0.16Pb0.25Sn0.75Br0.5I2.5", + "CsPbBr0.75I2.25", + "(PEA)2PbI4 | MAPbI3", + "(HEA)2Cs0.9FA8.1Pb10Br3.3I29.7", + "Cs0.05FA0.7885MA0.16150PbBr0.51I2.49", + "Cs0.2FA0.8PbBr1.5I1.5", + "CsEu0.03Pb0.97BrI2", + "(PEA)0.1MA0.9SnI3", + "(NH4)8.5FA0.15MA2.04Pb9.5Br0.45I29.24", + "Cs0.25FA0.75Pb0.37Sn0.6255I3", + "Cs0.2FA0.8PbBr0.15I2.85", + "Cs0.1MA0.9Pb0.9Sn0.1Br0.2I2.8", + "Cs0.05FA0.79MA0.16PbBr0.52I2.48", + "MAPbBr0.237I2.763", + "CsPbBr3 | CsPbI3", + "FAPbBr1.25Cl0.35I1.45", + "Cs0.03FA0.97PbI3", + "Cs0.06FA0.87MA0.07PbBr0.12I2.88", + "FAPb0.5Sn0.5I3", + "FA0.75MA0.25PbI3", + "Cs0.04FA0.71GU0.1MA0.15PbBr0.5I2.49", + "EA0.5MA0.5PbBr3", + "Cs0.03FA0.77MA0.2PbBr0.46I2.54", + "Cs0.5FA0.75MA0.1PbBr0.51I2.49", + "MAPbBr0.06I2.94", + "FA0.10MA0.9PbI3", + "Cs0.05FA0.78MA0.13PbBr0.45I2.55", + "MAPb0.75Sn0.25Br1.8I1.2", + "CsPb0.97Zn0.03Br3", + "Cs0.05FA83MA17PbBr0.51I2.49", + "Cs0.17FA0.83PbBr0.5I2.5", + "FA0.85MA0.15PbBr0.45I2.55 | BA1.5FA0.5PbI4", + "MAFe0.1Pb0.9I3", + "Cs0.12FA0.88PbBr0.36I2.54", + "FA0.5MA0.5PbBr3", + "FA0.85MA0.15PbBr0.45I2.55 | (FEA)2PbI4", + "Cs0.15(DMA)0.85MA0.15PbI3", + "Ca0.05FA0.8075MA0.1425PbBr0.45I2.55", + "BA2Cs0.15MA2.85Pb4I13", + "Cs0.05FA0.79MA0.16Pb0.75Sn0.25Br0.5I2.5", + "MAPbBr0.09I2.1", + "Cs0.06FA0.58MA0.36PbBr0.12I2.88", + "IM0.1MA0.9PbI3", + "Cs0.05FA0.79MA0.16PbBr0.3I2.7", + "Cs0.17FA0.83Pb0.3Sn0.7I3", + "Cs0.05FA0.85MA0.1PbBr0.45I2.55 | (PEA)2PbI4", + "MABi2I9", + "FA0.26MA0.74PbI3", + "FA0.85MA0.15PbBr0.3I2.7", + "FA0.85MA0.15PbBr0.50I2.50", + "FA0.17MA0.83PbBr0.5I2.5", + "MA3BiI2", + "FA0.83MA0.17PbBr0.39I2.61", + "(NH4)5.1FA0.15MA1.7Pb6.1Br0.45I18.7", + "Cs0.05FA0.7917MA0.1583PbBr0.5I2.5", + "Cs0.01FA0.94Rb0.05PbI3", + "MABiSbI9", + "(NH4)3Sb2Br3I6", + "(PEA)0.15FA0.85SnI3", + "FA3OA2Sn4I13", + "RbPbI3", + "Cs0.1MA0.9PbBr0.1I2.9", + "(PEA)2Cs9Pb10I34", + "Cs0.1FA0.77MA0.13PbBr0.4I2.6", + "CsPbBr3 | FAPbBr3", + "CsSnBrI2", + "Cs0.2FA0.8Pb0.3Sn0.7I3", + "(NH4)11.9FA0.15MA1.7Pb12.9Br0.45I39.1", + "Cs0.05FA0.81MA0.14PbBr0.45I2.55 | CsPbBr1.85I1.15", + "FA0.8MA0.2PbBr0.2I2.8", + "Cs0.09FA0.77MA0.14PbBr0.42I2.58 | (PEA)2PbI4", + "BA2MA3Pb4I9", + "FAPbBr0.44I2.56", + "(PEA)2FA3Pb4I13", + "MAPb(BF4)2.85I0.15", + "(CHMA)2MA39Pb40I121", + "MA3Bi2I11", + "FA0.5MA0.5SnI3", + "Cs0.21Ag3Bi3.14I9", + "(oF1PEA)2MA4Pb4I13", + "HA2MA3Pb4I13", + "CsPbBr3 | FAPbBr1.5Cl1.5", + "CsFAMAPbBrI", + "(PEA)2Cs1.77FA57.23Pb60I181", + "FA0.75MA0.25SnI3", + "Cs0.05FA0.7885MA0.1441PbBr0.3I2.7", + "MAPbBr1.5I1.5", + "Cs0.085FA0.915PbBr0.45I2.55", + "(PEI)2MA6Pb7I22", + "MASnBr1.5Cl0.5I", + "Cs0.05FA0.79MA0.16PbBr0.47I2.53", + "Cs0.15FA0.75MA0.1PbBr0.5I2.5", + "(PEA)x(F5PEA)xCs0.15FA0.64MA0.2PbBr0.6I2.4", + "Cs0.2FA0.8PbBr1.2I1.8", + "CsPb0.99Sr0.01BrI2", + "Cs0.92K0.08PbBr3", + "MAHg0.075Pb0.925I3", + "FA0.9MA0.1PbBr0.03I2.91", + "Cs0.05FA0.79MA0.16PbBr2.51I2.49", + "FA0.95MA0.05PbBr0.1I2.9", + "CsBa0.1Pb0.9I3", + "(BYA)2MA3Pb4I13", + "Cs0.07FA0.93PbI3", + "MA2PA3Pb4I13", + "FAPbCl0.5I2.5", + "Cs0.0664FA0.8668MA0.0664PbBr0.095I0.905", + "(Ace)0.2MA0.8PbI3", + "MAPb0.9Sr0.1I3", + "Cs0.75FA0.25PbI3", + "FA0.83MA0.17PbBr0.17I2.83", + "(PEA)2Cs59Pb60I181", + "BA2MA2Pb3I9", + "(HEA)2Cs1.9FA17.1Pb20Br9.45I53.55", + "FA0.28MA0.72PbI3", + "(iso-BA)0.5MA0.75PbI3.25", + "Cs0.15FA0.85PbBr0.12I2.88", + "FA0.88MA0.12PbBr0.15I2.85", + "Cs0.92Li0.08PbBr3", + "Cs0.175FA0.750MA0.075PbBr0.36I2.64", + "(BZA)1.8(HAD)0.2MA2Pb3I10", + "(3AMP)MA3Pb4I13", + "Cs0.06FA79MA0.15PbBr0.45I2.55", + "FAPb0.625Sn0.375I3", + "(PMA)0.67FA0.33PbI3", + "(TBA)0.01MA0.99PbI3", + "Cs0.15MA0.85PbBr1.2I1.8", + "MAPbBr1.16I1.74", + "FA0.83MA0.17PbBr0.51I2.49", + "FA0.85MA0.15PbBr0.15I0.85", + "(PEA)2Pb2I4", + "MASbSnI9", + "Cs2Pb(SCN)2I", + "FA0.85MA0.15PbBr0.45I0.85", + "Cs0.88Na0.12PbBr3", + "nanBi2O6", + "CsPbBrF0.12I1.88", + "(PEA)2Cs0.45FA2.55Pb4I13", + "Cs0.25FA0.75PbBr0.60I2.40", + "EA0.92FA0.08SnI3", + "(PDA)0.05Cs0.15FA0.8PbI3", + "(APMim)PbBrI3", + "MASbI3", + "(PEA)1.4BA0.6MA3Pb4I13", + "FA0.95MA0.15PbBr0.45I2.5075", + "MAPbBr0.9I2.1", + "Cs0.05FA0.75MA0.15PbBr0.15I2.85", + "FA0.90TN0.10SnI3", + "MAMn0.1Pb0.9I3", + "Cs0.1FA0.9PbBr0.09I2.91", + "MA2Au2Br6", + "FA0.75MA0.25Pb0.75Sn0.25I3", + "FA0.85MA0.15PbBr0.55I2.55", + "Cs0.05FA0.38MA0.57PbBr0.2I2.8", + "MA2PA6Pb7I22", + "Cs0.04FA0.82MA0.14PbBr0.42I2.58", + "Cs0.05FA0.8K0.03MA0.12Ge0.03Pb0.97Br0.3I2.7", + "MAPbBr2.85I0.15", + "Cs0.05FA0.79MA0.16PbBr1.2I2.6", + "FA0.75MA0.25PbBr0.25I2.79", + "CsSnI3", + "(5-AVAI)0.02Cs0.05FA0.93PbI3", + "Cs0.05FA0.79MA0.16PbBr0.41I2.59", + "AN0.5MA0.5PbI3", + "MACo0.2Pb0.8I3", + "(TBA)0.1Cs0.05FA0.71MA0.14PbBr0.51I2.49", + "MAEu0.04Pb0.96I3", + "Cs0.17FA0.83Pb0.6Sn0.4I3", + "Cs0.1FA0.75MA0.15PbBr0.46I2.54", + "MA2SnI6", + "FA0.75MA0.25PbBr0.75I2.25", + "MAPbBr0.19I2.81", + "(5-AVA)0.05MA0.95PbI3", + "((CH3)3S)2SnI6", + "Cs0.06FA0.94PbBr0.03I2.97", + "AN0.15Cs0.5MA0.8PbI3", + "MAPbI3 | CsPbI3", + "FA0.2PN0.8SnI3", + "BA2Cs0.2FA0.6MA3.2Pb5I16", + "Cs0.05FA0.81MA0.14PbBr0.42I2.58", + "Cs0.1FA0.9PbBr0.6I2.4", + "(3AMP)FA0.9MA2.1Pb4I13", + "Cs0.02MA0.98PbBr0.06I2.94", + "Cs0.07FA0.785MA0.145PbBr0.45I2.55", + "Cs0.01Pb0.99Br1.98I1.02", + "FAHA2Pb2I7", + "Cs0.5FA0.5PbI3", + "Cs0.5FA0.85PbI3", + "FA0.2MA0.8Pb1.0I3", + "Cs0.1FA0.1MA0.8PbI3", + "CsPbBr0.21I2.79", + "EA2MA8Pb9I28", + "Cs0.15FA0.71MA0.1PbBr0.39I2.61", + "MAPbI3 | MAPbBr1.2I1.8", + "Cs0.05FA0.82MA0.13PbBr0.13I2.87", + "Cs0.1FA0.76MA0.14PbBr0.51I2.49", + "Bn2SnI4", + "Cs0.14FA0.83MA0.17PbBr0.51I0.249", + "Cs0.05FA0.79MA0.16PbBr0.51I", + "MACa0.02Pb0.98I3", + "FA0.9MA0.1PbBr0.03I2.97", + "CsFAPbBrClI", + "Cs0.15FA0.26MA0.59PbI3", + "MAPb0.92Sb0.08I3", + "(mF1PEA)MA4Pb4I13", + "FA0.7MA0.3PbBr0.10I2.90", + "CsFA0.83MA0.17PbBr0.5I2.5", + "Cs0.04MA0.96PbI3", + "PA2PbI4", + "(PEA)0.1FA0.15MA0.75SnI3", + "(PDA)0.03Cs0.15FA0.82PbI3", + "CsCu0.003Pb0.997Br3", + "AgBiI4", + "FA0.17MA0.83PbBr2.5I0.5", + "Cs0.1FA0.9PbBr0.225I2.775", + "(Ace)0.1MA0.9PbI3", + "Cs0.05FA0.8MA0.15PbBr0.55I2.55", + "Cs0.17FA0.83Pb0.5Sn0.5I3", + "Cs0.07FA0.79MA0.14PbBr0.45I2.55", + "MAPb0.75Sn0.25I", + "(PEA)2FA3Sn4I13", + "Cs0.17FA0.83Pb0.8Sn0.2I3", + "(Cl-PEA)2MA2Pb3ClI10", + "Cs0.05MA095PbI3", + "(PEA)2Cs59Pb60Br120.67I60.33", + "MAPbBr0.7I2.3", + "(ThFA)2MA2Pb2I7", + "(EDA)0.04FA0.29MA0.67Pb1.0I3", + "FA0.97MA0.03PbBr0.09I2.91", + "FA0.7MA0.3PbBr0.9I2.1", + "FA0.83MA0.17PbBr0.17I0.83", + "Cs0.1FA0.75MA0.15PbBr1.5I1.5", + "Cs0.16FA0.8MA0.04PbBr1.5I1.5", + "CsPb0.6Sn0.4I3", + "Cs0.05FA0.76MA0.16PbBr0.49I2.51", + "EA2MA19Pb20I61", + "MAPb0.375Sn0.625I3", + "(F-PEA)2MA2Pb3I10", + "Cs0.05FA0.85MA0.1PbBr0.5I2.5", + "FA0.92MA0.08PbI3", + "FA0.7MA0.3PbBr0.095I0.905", + "AN0.3MA0.7PbI3", + "Cs0.05FA0.81MA0.14PbBr0.45I2.55", + "FA0.6MA0.4PbBr0.4I2.6", + "Cs0.05FA0.79MA0.16PbBr0.30I2.70", + "CsPbBr1.5I1.5", + "(PEA)0.1FA0.9SnI3", + "Cs2NaBiI6", + "FA0.95MA0.05PbBr0.15I2.85 | BA2PbI4", + "MAPbI3 | MAPbBr0.9I2.1", + "MAPbBr2.5I0.5", + "Cs0.12MA0.88PbBr0.36I2.64", + "MA0.98PbI3", + "MAPbBr2.52I0.48", + "Cs0.17FA0.83PbBr0.17I0.83", + "FA0.1MA0.9PbI3", + "MAPbBr1.62I1.38", + "Cs0.1FA0.6MA0.3PbBr0.095I0.905", + "Cs0.05FAxMAxPbBrxIx", + "FA0.83MA0.17PbBr0.51I2.59", + "Cs0.025FA0.7MA0.25Rb0.025PbI3", + "MAPbI3-xClx", + "FA0.84MA0.16PbBr0.48I2.52", + "Cs0.25FA0.75PbBr0.9I2.1", + "IM0.2MA0.8PbI3", + "FA0.2MA0.8PbBr0.45I2.55", + "FA0.2MA0.8PbI3", + "MACu0.1Pb0.9I3", + "Cs0.08FA0.92PbBr3", + "FA0.83MA0.17PbBrI2", + "CsBi2I7", + "FA0.4MA0.6PbBr0.6I2.4", + "FAPbBr2.67Cl0.33", + "CsPb0.9Sn0.1Br2I", + "MAPbBr2.91I0.09", + "Cs0.15FA0.75MA0.1PbBr0.4I2.6", + "(EDA)0.04FA0.28MA0.68Pb1.0I3", + "(CHMA)2MA2Pb3I10", + "MAPbBr0.4I2.6", + "Aa0.05MA0.95PbI3", + "(NH4)3Sb2Br6I3", + "GU0.1MA0.9PbI3", + "HA0.2MA0.8SnI3", + "Cs0.1FA0.9PbBr0.3I2.7", + "MAGeBr0.15I2.75", + "CsPbI3", + "Cs0.04FA0.8MA0.16PbBr0.49I2.51", + "MASnBr2I", + "Cs0.12FA0.83MA0.05PbBr1.2I1.8", + "Cs0.05FA0.88MA0.07PbBr0.24I2.76", + "Cs0.45FA0.55PbI3", + "MACo0.063Pb0.937I3", + "Cs0.05FA0.827MA0.123PbBr0.369I2.631", + "MAPb0.99Sr0.01I3", + "MAPbBr0.09I2.91", + "Cs0.05FA0.75MA0.2PbI3", + "MASb1.2Sn0.8I9", + "(TBA)0.1MA0.9PbI3", + "Cs0.99Rb0.01PbBrI2", + "Cs0.02FA0.98PbI3 | Cs0.57FA0.43PbI3", + "(PDA)MA3Pb4I13", + "MAPbISCN", + "Cs0.17FA0.83PbBr0.30I2.7", + "FAPbI3 | EDA22Pb3I10", + "(CPEA)2MA5Pb6I19", + "MACu0.0118Pb0.9882Br0.2I2.8", + "(DPA)2MA3PAPAPb4I13", + "FA0.85MA0.15PbBr0.27I2.73", + "(C6H4NH2)CuBr2I", + "Cs0.25FA0.75PbBr0.6I2.40", + "BA2MA2Pb3I10", + "(3AMP)FA0.75MA2.25Pb4I13", + "MACo0.016Pb0.984I3", + "MAPbBr0.02I2.98", + "(CIEA)0.05MA0.95PbI3", + "Cs0.07FA0.93PbBr0.06I2.94", + "nanCu3SbI6", + "Cs0.05MA0.95PbBr0.9I2.1", + "Cs0.11FA0.74MA0.15PbBr0.51I2.49", + "Cs0.15FA0.85PbBr0.81I2.19", + "Cs0.05Pb0.95Br1.9I1.1", + "(PBA)2MA3Pb4I13", + "CsGe0.3Pb0.7BrI2", + "MAPbBr1.26I1.74", + "Cs0.05FA0.93GA0.02PbI3", + "MACa0.10Pb0.90I3", + "MAPbI3 | MAPbI3", + "FA0.25MA0.75Pb0.75Sn0.25I3", + "(PEA)0.6BA1.4FA3Sn4I13", + "MAPbBr0.39I2.61", + "Cs0.97Rb0.03PbBr3", + "(4ApyH)SbI4", + "Cs0.17FA0.83PbBr0.81I2.19", + "FA0.87MA0.13PbBr0.51I2.49", + "AgCs2Bi0.75Sb0.25Br6", + "FA0.84MA0.16PbBr0.5I1.5", + "Cs0.1FA0.75MA0.15Pb0.25Sn0.75Br0.5I2.5", + "MAPb0.93Sb0.07I3", + "(PEA)2Cs79Pb80I241", + "FA0.3MA0.67PbI3", + "CsPbBrF1.88I0.12", + "(H-PEA)2MA2Pb3I10", + "Cs0.05FA0.75MA0.2PbBr0.3I2.7", + "(BEA)2MA3Pb4I13", + "FAPbBr1.25Cl0.25I1.5", + "EA0.4MA0.6PbI3", + "Cs0.79FA0.16MA0.1PbBrI2", + "MAPb1.0Br0.6I2.4", + "Cs0.05FA0.78MA0.16PbBr0.5I2.5", + "FA0.8MA0.8PbBr0.06I2.96", + "Ca0.05MA0.95PbBr0.15I2.85", + "MAPbBr0.30I2.70", + "FA0.3MA0.7Pb1.0I3", + "FA0.7MA0.3Pb0.5Sn0.5I3", + "KBABiTeO6", + "CsPb0.97Tb0.03Br3", + "MAPbBr0.2I2.7", + "MA2PA4Pb5I16", + "Cs0.30FA0.70PbI3", + "Cs0.07FA0.81MA0.1146PbBrI2", + "FA0.8MA0.2PbBr0.45I2.55", + "MAPbI3 | (PEA)2PbI4", + "Cs0.05FA0.95PbBr0.15I2.85", + "(PDA)0.04Cs0.15FA0.81PbI3", + "Cs0.05FA0.79MA0.17PbBr0.5I2.5", + "Cs0.3FA0.6MA0.1PbBr0.256I0.744", + "MA3Bi2I9", + "BAGUMA4Pb5I16", + "MAPb1.0Br0.3I2.7", + "Cs0.05FA0.65MA0.3PbBr0.15I2.85", + "CsPb0.98Sr0.02BrI2", + "MAPbBr0.075I2.95", + "(CPEA)2MA2Pb3I10", + "Cs0.15FA0.71MA0.14PbBr0.45I2.55", + "MAPbBr0.03I2.7", + "AN0.4MA0.6PbI3", + "Cs0.05MA0.95PbI3", + "Cs0.07FA0.78MA0.15PbBr0.45I2.55", + "Cs0.05FA0.79MA0.11Rb0.05PbBr0.39I2.61", + "(APMim)PbBr2I3", + "Cs0.05FA0.80MA0.15PbI2.55", + "Cs0.1FA0.9PbI3 | (PEA)2PbI4", + "(CPEA)2MA4Pb5I16", + "Cs0.05FA0.83MA0.17PbI3", + "Cs0.05FA0.81MA0.14PbBr0.57I2.43", + "(TBA)0.3MA0.7PbI3", + "Cs0.1FA0.77MA0.13PbBr0.39I2.48 | (PEA)2PbI4", + "Cs0.05FA0.81MA0.14PbBr0.39I2.61", + "Cs0.07FA0.785MA0.115PbBr0.45I2.55", + "MAPbBr0.75I2.25", + "BA2Cs0.08MA3.92Pb5I16", + "Cs0.05FA0.92MA0.3PbBr0.09I2.91", + "FA0.57MA0.43PbBr0.04I2.96", + "BDACs4Pb5Br4.8I11.2", + "IM0.03MA0.97PbI3", + "(PBA)BAMA3Pb4I13", + "MAPbBr0.15I2.85", + "Cs0.32FA0.58GA0.1PbBr0.81I2.19", + "FA0.6MA0.4Sn0.6I3", + "GU0.17MA0.83PbI3", + "Cs0.04FA0.80MA0.16PbBr0.51I2.49", + "FAxMAPbBrxI", + "BAMA3Pb4I13", + "Cs0.02MA0.98PbI3", + "AgCs2Bi0.5Sb0.5Br6", + "MAPbBr0.033I2.97", + "Cs0.05FA0.83MA0.17PbBr0.45I2.55", + "EA0.5MA0.5PbI3", + "FA0.83MA0.17PbBr2.5I0.5", + "(BZA)1.9(HAD)0.1MA2Pb3I10", + "GUPb(SCN)2.6I0.4", + "MAPbI3 | MABaPbI3", + "FA0.9MA0.1PbBr0.256I0.744", + "FA3Bi2I9", + "Cs0.10FA0.75MA0.15PbBr0.51I2.49", + "Cs0.04FA0.92MA0.04PbI3 | (FEA)2PbI4", + "MAPbI3 | MAPbBr3", + "Cs0.1FA0.81MA0.09PbBr0.17I2.83", + "Cs0.1FA0.75MA0.15PbBrI2", + "CsPb0.5Sn0.5BrI2", + "(EDA)0.01FA0.29MA0.7Pb1.0I3", + "Cs0.1MA0.9PbI3", + "(PEA)0.1FA0.15MA0.75SnBr0.24I2.76", + "Cs0.01FA0.99PbI3", + "CsPb1.0Br1.8I1.2", + "BAFA60Pb61Cl4I180", + "FA0.98MA0.02PbBr0.06I2.94", + "(PEA)2MA39Pb40I121", + "FA0.85MA0.10PbBr0.3I2.7", + "MA0.1Mg0.1Pb0.9I3", + "MAPbBr0.60I2.40", + "Cs0.075FA0.75MA0.175PbBr0.33I2.67", + "Cs0.2FA0.8PbI3", + "Cs0.025FA0.475MA0.5Pb0.5Sn0.5I3", + "MA2CuBr3.5Cl0.5", + "FA0.95MA0.05PbBr0.15I2.85 | DA2PbI4", + "(PDA)MAPb2I7", + "MAPb0.2Sn0.8Br0.4I2.6", + "CsPb1.0Br1.5I1.5", + "FA0.8MA0.2PbBr0.095I0.905", + "MASnF0.4I2.6", + "BU2FA8Pb9I28", + "MASnBr2.64I0.36", + "(4AMP)MA2Pb3I10", + "Cs0.15FA0.85PbBr0.45I2.55", + "BA2MA3Pb4I12", + "Cs0.05FA0.07MA0.25PbI3", + "Cs0.04FA0.96PbBr3", + "Cs2Bi3I9", + "MABa0.01Pb0.99I3", + "Cs0.05FA0.79MA0.16Pb0.748Sn0.252Br0.52I2.48", + "Cs0.2FA0.8PbBr1.05I1.95", + "FA0.1MA0.9Pb1.0I3", + "FA0.78MA0.21PbBr0.21I2.79", + "BA2Cs0.3FA1.7Pb1.8Sn1.2I10", + "MA0.1Mn0.1Pb0.9I3", + "(BEA)0.5MA3Pb3I10", + "FA0.38MA0.62PbI3", + "MAPbBr0.43I2.57", + "FA0.81MA0.19Pb0.57I2.33", + "FAPbI3", + "Cs0.05FA0.79MA0.16PbBr0.6I2.4", + "Cs0.2FA0.72MA0.08PbBr0.03I2.97", + "Cs0.133FA0.733MA0.133PbBr0.095I0.905", + "CsPbI3 | FAPbI3", + "MAPb0.9Sn0.1I3", + "(ThMA)2MA2Pb3I10", + "Cs0.32FA0.58GU0.1PbBr0.81I2.19", + "Cs0.1FA0.75MA0.13PbBr0.45I2.55", + "GU0.50MA0.50PbI3", + "MA0.05Pb0.95I3", + "Cs0.06FA0.94PbI3", + "(HEA)2Cs2.9FA26.1Pb30Br9.3I83.7", + "Cs0.17FA0.83Pb0.9999Sn0.0001I3", + "Cs0.1FA0.135MA0.765PbBr0.45I2.55", + "MAPb0.50Sn0.50Br1.2I1.8", + "FA0.81MA0.15PbBr0.45I2.55", + "nanPb2I8", + "(TBA)0.5Cs0.03FA0.4MA0.08PbBr0.51I2.49", + "Cs0.80K0.20PbBr3", + "MAPbCl0.06I2.94", + "Cs0.05FA0.85MA0.1PbBr0.03I2.97", + "(Anyl)2MA2Pb3I9", + "Cs0.1FA0.54MA0.36PbI3", + "CsBi0.06Pb0.94I3", + "Cs0.67FA0.33PbBr0.75I2.25", + "CsFASnI3", + "Cs0.1FA0.65MA0.25PbI3", + "Cs0.05FA0.77MA0.16PbBr0.48I2.52", + "MAPb0.85Sn0.15I3", + "FAPbBr0.45I2.55", + "(N-EtPy)SbBr6", + "MAPbBr3", + "MAPbBr0.33I2.67", + "MAPb0.25Sn0.75I3", + "Cs0.14FA0.83MA0.03PbBr0.51I2.49", + "Cs0.05FA0.89MA0.06PbBr0.18I2.82", + "FA0.2MA0.8PbBr0.15I2.85", + "Cs0.15FA0.8GA0.05PbBr0.45I2.55", + "(THM)0.1MA0.9PbI3", + "(BZA)1.95(HAD)0.05MA2Pb3I10", + "FAMAPbBr3I", + "Cs0.05MAPbBr0.45I2.55", + "Cs0.05FA0.6MA0.35PbBr0.3I2.7", + "Cs0.20FA0.80PbBr1.2I1.8", + "Cs0.4FA0.6PbBr0.9I2.1", + "FAPbI3 | (PEA)2PbI4", + "Cs0.5Rb0.5SnI3", + "Cs0.1MA0.9SnI3", + "Cs0.05FA0.79MA0.12PbBr0.39I2.61", + "CsCa0.03Pb0.97Br3", + "Cs0.05FA0.79MA0.15PbBr0.45I2.55", + "Cs0.15FA0.85PbI3", + "MASbI2", + "MA0.125Pb0.875I3", + "MACu0.05Pb0.95Br0.05I2.95", + "(DAP)PbI4", + "Cs0.05FA0.7885MA0.1615PbBr0.51I2.49", + "AN0.09MA0.91PbI3", + "Cs0.07FA0.81MA0.12PbBr0.38I2.62", + "MASb1.6Sn0.4I9", + "(NMA)2MA39Pb40I121", + "MAPbI3 | (EU-pyP)2PbI4", + "Cs0.15FA0.85PbBr0.3I2.7", + "FASnBr0.24I2.76", + "FA0.5MA0.5PbI3", + "FAMAPbBrI", + "MAGeBr0.3I2.9", + "Cs0.091FA0.758MA0.152PbI3", + "Cs0.17FA0.83PbBr1.8I1.2", + "BDACs2Pb3Br3I7", + "FA0.85GU0.15SnI3", + "MAPb0.95Sn0.05Br0.1I2.9", + "Cs0.2FA0.2MA0.6PbI3", + "Cs0.05FA0.95SnI3", + "MAPb0.8Sr0.2I3", + "Ag2BiI5", + "Cs0.05FA0.85MA0.10PbBr0.45I2.55", + "Cs0.05FA0.81MA0.14PbBr0.4I2.6", + "Cs0.07FA0.7MA0.23PbBr0.69I2.31", + "FA0.65MA0.35PbI3", + "(TMA)SnI3", + "(PEI)2MA2Pb2I10", + "(AVA)2PbI4 | MA1Pb1I3 | (BI)2PbI4", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | BAPbI4", + "CsPbBr3 | FAPbBr1.5I1.5", + "MAPbI3 | (BI)2PbI2", + "GU0.14MA0.86PbI3", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | CsPbI3", + "GU0.125MA0.875PbI3", + "Cs0.05FA0.79MA0.16PbBr1.5I1.5", + "CsSn0.05I2.95", + "MAPbBr0.25I2.75", + "Cs0.2FA0.8PbBr0.3I2.7", + "Cs0.3FA0.7Pb0.7Sn0.3I3", + "Cs0.25FA0.75Pb0.6Sn0.4I3", + "Cs0.04FA0.82MA0.14PbBr0.45I2.55", + "Cs0.0664FA0.666MA0.2668PbBr0.256I0.744", + "Cs0.05FA0.79MA0.16PbBr0.75I2.25", + "FA0.1MA0.9PbI3 | TAPbI3", + "Cs0.05FA0.79MA0.16PbBr0.45I2.55", + "Cs0.05FA0.87MA0.0782PbBrI2", + "MAPbI3 | (C4H9N2H6)PbI4", + "Cs0.6MA0.4PbI3", + "BA2MA4Pb5I16", + "((CH3)3S)2SnBr2I4", + "Cs0.05FA0.05MA0.9PbBr0.05I2.95", + "MAPbBr0.2I2.8", + "MAPb0.5Sn0.5Br0.6I2.4", + "(Ace)0.15MA0.85PbI3", + "CsPbBr", + "EA2MA2Pb3I10", + "Cs0.05FA0.788MA0.162PbBr0.5I2.5", + "DI2FA8Pb9I28", + "MAPbI3 | CsPbBr3", + "Ca0.1MA0.9PbBr0.3I2.7", + "(PEA)1.8BA0.2MA3Pb4I13", + "Cs0.09FA0.58MA0.33PbBr0.65I2.35", + "CsPbBrF1.78I0.22", + "FA0.9MA0.1PbI3", + "CsSnBr0.5I2.5", + "FAPbBr0.15I2.85", + "Cs0.30MA0.70PbI3", + "(NH4)10.2FA0.15MA1.7Pb11.2Br0.45I34", + "FA0.96MA0.04PbBr0.12I2.88", + "Cs0.05FA0.79MA0.16Pb0.54I2.46", + "CsLa0.02Pb0.98BrI2", + "MAPbBr0.04I2.96", + "MAPb0.4Sn0.6Br0.9I2.1", + "IM0.025MA0.0250.975PbI3", + "AN0.2MA0.8PbI3", + "Cs0.02FA0.98PbI3", + "FA0.6MA0.4PbBr1.2I1.8", + "(DMA)0.05MA0.95PbI3", + "BA2MA2Sn3I10", + "Cs0.94Na0.06PbBr3", + "FA0.75MA0.25Ge0.2Sn0.8I3", + "MAPb0.75Sn0.25I3", + "(PEA)2Cs3Pb4I13", + "FA0.125MA0.875PbI3", + "(CHMA)2MA3Pb4I13", + "FA0.6MA0.4Pb0.4Sn0.6Br0.48I2.52", + "Cs0.05FA0.49MA0.16PbBr0.51I2.49", + "Cs0.05FA0.83MA0.12PbBr0.36I2.64", + "Ag2Bi3I11", + "(PEA)FASnI3", + "Cs0.05FA0.79MA0.16PbI3", + "Cs0.15FA0.75MA0.1PbBr0.1I2.9", + "Cs0.15FA0.71MA0.14PbBr0.75I2.25", + "MAGeBr0.3I2.7", + "Cs0.05FA0.81MA0.14PbBr0.45", + "MAPb0.5Sb0.5I3", + "(PEA)2MA5Pb4Cl2I10 | MA3PbCl2", + "FA0.38MA0.57PbI3", + "Cs0.025FA0.81MA0.15PbBr0.45I2.5", + "BA2Cs4MA35Pb40I121", + "Cs0.05FA0.79MA0.16PbBr0.39I2.61", + "AgCs1.7Rb0.3BiBr6", + "Cs0.09MA0.91PbI3", + "(NH4)1.7FA0.15MA1.7Pb2.7Br0.45I8.5", + "GU0.05MA0.95PbI3", + "Cs0.13FA0.87PbBrI2", + "MAPbI3", + "Cs0.05FA0.8MA0.15PbBr0.75I1.25", + "MAPbBr2.25I0.75", + "(ThMA)2FA4Pb5I16", + "Cs0.21FA0.56MA0.23PbBr0.06I2.94", + "(BDA)MA3Pb4I13", + "Cs0.15FA0.8Rb0.05PbI3", + "MABa0.1Pb0.9I3", + "(PEA)xCs0.15FA0.64MA0.2PbBr0.6I2.4", + "Cs0.05MA0.95Pb0.95Sn0.05Cl0.1I2.9", + "Cs0.08FA0.81MA0.12PbBr0.35I2.65", + "Cs0.3FA0.6MA0.1PbBr0.095I0.905", + "GU0.2MA0.8PbI3", + "FA0.5MA0.5PbI4", + "FA0.67MA0.33PbBr0.5I2.5", + "Cs0.05FA0.7885MA0.1615PbBr0.1I0.9", + "FA0.9MA0.1PbBr0.3I2.7", + "(NH4)6.8FA0.15MA2.04Pb7.8Br0.45I24.14", + "FA0.65K0.2MA0.15PbBr0.55I2.55", + "FA0.625MA0.935PbI", + "(HEA)2Cs1.9FA17.1Pb20Br6.3I56.7", + "FA0.975MA0.025PbI3", + "Cs0.02Pb0.98Br1.96I1.04", + "FA0.95MA0.05PbBr0.15I2.85 | OA2PbI4", + "FA0.95MA0.05PbBr0.15I2.85", + "CsLa0.03Pb0.97BrI2", + "FA0.75MA0.15PbBr0.45I", + "Cs0.05FA0.79MA0.160Pb1.0Br0.3I2.7", + "(PEA)2MAPbI4", + "Cs0.25FA0.75PbBrI2", + "Cs0.94Rb0.06PbBr3", + "Cs0.05FA0.15MA0.8PbI3", + "(NH4)3.4FA0.15MA2.04Pb4.4Br0.45I13.94", + "CsPb0.997Zn0.003Br3", + "CsBi3I10", + "Cs0.15FA0.75MA0.1PbBr0.3I2.7", + "CsPb0.3Sn0.7I3", + "Cs0.15FA0.85SnI3", + "Cs0.06FA0.79MA0.15PbBr0.45I2.55", + "CsCu0.01Pb0.99Br3", + "FA0.17MA0.83PbBr1.5I1.5", + "Cs0.15FA0.85PbBr0.25I2.75", + "CsPb0.75Sn0.25Br2I", + "MAPbCl3", + "FA0.14MA0.86PbBr0.42I2.58", + "MAHgI3", + "Cs0.23MA0.77PbI3", + "GUPb(SCN)1.8I1.2", + "(DMA)0.075MA0.925PbI3", + "(PEA)2Cs39Pb40Br40.33I80.67", + "(TFEA)2Cs0.225FA7.425MA1.35Pb10Br4.65I26.35", + "FA0.9GU0.1SnI3", + "MA3Bi2I13", + "Cs3Bi2I9", + "BA2PbI4", + "FA0.7MA0.3PbI3", + "Cs0.1FA0.9PbBr0.9I2.1", + "FASnBrI2", + "FAPb0.375Sn0.625I3", + "Cs0.2FA0.8PbBr0.32I2.68", + "Cs0.2FA0.6MA0.2PbBr0.256I0.744", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | PA2PbI4", + "MAPb0.98Zn0.02I3", + "(n-C3H7NH3)PbCl3", + "(PTA)2MA3Pb4I13", + "Cs0.2FA0.8PbBr0.256I0.744", + "Cs0.1MA0.9Pb0.25Sn0.75I3", + "((CH3)3S)2SnBrI5", + "MAPbI3 | FAPbBrI2", + "FA0.83MA0.17PbBr0.51", + "FA0.1MA0.9PbBr0.3I2.9", + "BA2CsPb2I7", + "MAPbI3 | (BEA)PbI4", + "Cs0.10MA0.90PbI3", + "CsPb0.97Sr0.03Br3", + "FA0.67MA0.33PbBr0.33I2.67", + "Cs0.05FA0.83MA0.12PbBr0.5I2.5", + "CsBi0.04Pb0.96I3", + "(TBA)0.3Cs0.04FA0.55MA0.11PbBr0.51I2.49", + "MAPbI3 | (MIC1)2PbI4", + "Ag3BiI3(SCN)3", + "FAPbBr0.6I2.4", + "Cs0.003Pb0.997Br3", + "CsNi0.005Pb0.995Br3", + "Cs0.05FA0.788GU0.032MA0.129PbBr0.51I2.49", + "Cs0.07FA0.73MA0.20PbBr0.47I2.53", + "FA0.02MA0.98PbI3", + "FA0.975MA0.025PbBr0.075I2.925", + "Cs0.17FA0.83Pb0.98Sn0.02I3", + "MAPb0.95Sn0.05I3", + "Cs0.10FA0.81MA0.09PbBr0.03I2.97", + "(NH4)6.8FA0.15MA1.7Pb7.8Br0.45I23.8", + "FAPbBr0.25I2.75", + "MAPb0.2Sn0.8I3", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | (oFPEA)PbI3", + "MAPb1.0Br0.66I2.33", + "BA2FA3Sn4I13", + "MAPbBr0.11I2.89", + "Cs0.10MA0.90Pb(SCN)0.15I2.85", + "(PEA)2Cs99Pb100I301", + "MAPbBr0.51I2.49", + "FA0.85MA0.15PbBr0.45I2.45", + "FA0.88MA0.12PbI3", + "Cs0.05FA0.79MA0.16Pb1.0Br0.51I2.49", + "MAPbI3 | (MIC3)2PbI4", + "FAPbBr0.095I0.905", + "FAPb0.4Sn0.6I3", + "MAPb0.8Sn0.2I3", + "MAPb0.75Sn0.25Br0.9I2.1", + "Ag2CsSb2I3", + "Cs0.17FA0.83PbBr1.5I1.5", + "Cs0.08MA0.92PbBr0.24I2.76", + "Cs0.05FA0.70MA0.25PbI3", + "MAPb0.4Sn0.6I3", + "MAPb0.97Zn0.03I3", + "MACu0.05Pb0.95Br0.1I2.9", + "FA0.85MA0.15Pb0.45I2.55 | (NH4)8FA2.4Pb9I28.4", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | (PEI)2PbI4", + "Cs0.02FA0.82MA0.16PbBr0.51I0.249", + "Cs0.88FA0.12PbI3 | Cs0.88FA0.12PbIx(PF6)x", + "FA0.97MA0.03PbBr2.91I0.09", + "FA0.976MA0.024PbBr0.075I2.925", + "CsPbBr0.6I2.4", + "FA0.94MA0.6PbBr0.06I2.94", + "(PEA)0.5MA0.5PbI3", + "FA0.67MA0.33PbI3", + "Cs0.17FA0.83PbBr0.45I2.55", + "FA0.94MA0.06PbBr0.06I", + "FA0.9MA0.1PbBr0.1I2.9", + "Cs0.05FA0.81GU0.025MA0.11PbBr0.39I2.61", + "(PEA)2Cs59Pb60Br181", + "FA0.85MA0.15PbBr0.03I2.97", + "HDABiI5", + "CsPb0.93I3", + "FA0.33PbBr3", + "MAPbBr0.075I2.925", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | (PEA)PbI3", + "CsCu0.03Pb0.97Br3", + "(HEA)2Cs1.9FA17.1Pb20Br0I63", + "FA0.6MA0.4Pb0.4Sn0.6Br0.18I2.82", + "(PyrEA)PbI4", + "BA2MA3Pb4.0I13", + "FA0.1MA0.9Pb0.9Sn0.1I3", + "(TBA)0.2Cs0.04FA0.63MA0.13PbBr0.51I2.49", + "BA2Cs1.5MA2.85Pb4I13", + "(NH4)3.4FA0.15MA1.7Pb4.4Br0.45I13.6", + "(PEA)0.4MA0.6PbI3", + "FA0.58MA0.42PbI3", + "Cs0.05FA0.7MA0.25PbI3", + "Cs0.05FA0.85MA0.15PbBr0.75I2.25", + "FA0.6MA0.4PbSn0.6I0.4", + "CsGe0.5Sn0.5I3", + "CsPbBrF0.22I1.78", + "GAMA4Pb4I13", + "BA2MA10Pb11I34", + "EA3MA2NEAPb4I13", + "MA2PbI4", + "Cs0.15FA0.85PbBr0.15I2.85", + "MASb1.8Sn0.2I9", + "FA0.75MA0.25Ge0.05Sn0.95I3", + "CsPb0.25Sn0.75Br2I", + "Cs0.2FA0.66MA0.14PbBr0.5I2.5", + "Cs0.0664FA0.666MA0.2668PbBr0.095I0.905", + "FA0.83MA0.17PbI3", + "MAPb1.0Br0.45I2.55", + "Cs0.05FA0.80MA0.15PbI3", + "Cs0.1MA0.90PbBr0.3I2.70", + "FA0.85MA0.15PbI5", + "Cs0.06FA0.78MA0.16PbI3", + "(PEA)0.1MA0.9PbI3", + "Cs0.84K0.16PbBr3", + "Cs0.17FA0.83Pb0.99999Sn0.00001I3", + "(BDA)MAPb2I7", + "FA0.2MA0.8PbBr0.3I2.9", + "BDACs3Pb4Br3.9I9.1", + "Cs0.1FA0.747MA0.153PbBr0.17I0.83", + "FAPbBr1.5I1.5", + "MA0.03Mg0.03Pb0.97I3", + "(1.3-Pr(NH3)2)0.5Pb1.0I3", + "FA0.83MA0.17PbBr0.6I2.4", + "Cs0.20MA0.80PbI3", + "FA0.1MA0.9PbBrI2.8", + "MAPb0.75Sn0.25Br0.6I2.4", + "Cs0.15MA0.85PbI3", + "(NH4)6.8FA0.15MA1.275Pb7.8Br0.45I23.375", + "CsPbBr0.3I2.7", + "FA0.84MA0.16PbBr0.50I2.50", + "Cs0.07FA0.775MA0.145PbBr0.45I2.55", + "FA0.7MA0.3PbBr0.3I2.9", + "(pF1PEA)2MA4Pb4I13", + "(ALA)2MA3Pb4I13", + "FA0.9MA0.1PbBr0.095I0.905", + "CsHA2Pb2I7", + "Cs0.175FA0.75MA0.075PbBr0.33I2.67", + "MA2PA8Pb9I28", + "(IEA)2MA2Pb2I7", + "FAMAPbI3", + "FA0.3MA0.7PbBr0.45I2.55", + "MAPb0.97Sn0.03Br0.06I2.94", + "MAPb0.6Sn0.4Br0.4I2.6", + "MAPb0.4Sn0.6Br2.1I0.9", + "Cs0.25FA0.75PbBr0.3I2.7", + "Cs0.25FA0.75PbI3 | CsPbI3", + "Cs0.1FA0.9PbBr3", + "(TEA)2MA3Pb4I14", + "Cs0.06FA0.77MA0.17PbBr0.17I0.83", + "Cs0.05FA0.79MA0.16Pb0.84Sn0.84Br0.52I2.48", + "FA0.85MA0.15PbBr0.15I2.85", + "Cs0.08FA0.92SnI3", + "Cs0.05FA0.5MA0.45Pb0.5Sn0.5I3", + "CsPbBr0.2I2.8", + "HA2MAPb2I7", + "CsPbBr1.5I1.5 | FAPbBr1.5I1.5", + "Cs0.05FA0.788GU0.129MA0.032PbBr0.51I2.49", + "Cs0.15MA0.85PbBr0.45I2.55", + "(Anyl)2PbI3", + "MAPb0.93Sb0.03I3", + "MAPb0.25Sb0.75I3", + "Cs0.5FA0.5PbBr0.51I2.49", + "MA0.75Sn0.25I3", + "Cs0.07FA0.81MA0.12PbBr0.39I2.61", + "(Cl-PEA)2MA3Pb4I13", + "MAPbBr0.06I2.24", + "Cs0.05FA0.83MA0.12PbBr0.49I2.51", + "Cs0.05FA0.8MA0.15PbBr0.15I0.85", + "MAPb0.75Sn0.25Br0.3I2.7", + "Cs0.45FA0.55PbBr0.15I2.85", + "MAHg0.2Pb0.8I3", + "CsBa0.4Pb0.6BrI2", + "Cs0.05MA0.95PbBr1.2I1.8", + "Cs0.05FA0.28MA0.67PbI3", + "FA0.8MA0.15PbBr0.45I2.55", + "Ag4Bi7I25", + "FA0.82MA0.18PbBr0.53I2.47", + "FA0.95GU0.05SnI3", + "Cs0.17FA0.83MAPbBr2.59I0.51", + "FA0.8MA0.2PbBr0.6I2.4", + "FA0.81MA0.19PbBr0.5I2.5", + "AgCs1.9Rb0.1BiBr6", + "FA0.5MA0.5PbBr0.45I2.55", + "FA0.5MA0.5Pb0.5Sn0.5I3", + "AgCs2BiBr5.5", + "CsPbBr0.15I2.85", + "Cs0.1MAPbBr0.45I2.55", + "FA0.4MA0.6PbBr0.1I2.9", + "MAPb0.96Sb0.04I3", + "FA0.85MA0.15Pb0.6Sn0.4Br0.45I2.55", + "FABi3I10", + "FA0.285GU0.05MA0.665PbI3", + "Cs0.96Li0.04PbBr3", + "CsPb0.995Zn0.005Br3", + "Cs0.1FA0.2MA0.7PbI3", + "MASnCl3", + "MAPb0.9Sb0.1I3", + "FA0.25MA0.75PbI", + "FA0.5MA0.5PbBr0.25I2.75", + "MAPbBr1.2I1.8", + "(GABA)0.5MA0.5PbI3", + "MAPb(BF4)2.80I0.2", + "EA0.3MA0.7PbI3", + "Cs0.05FA0.80MA0.15PbBr0.51I2.49", + "Cs0.07FA0.78MA0.15PbBr0.51I2.49", + "Cs0.225FA0.75MA0.025PbBr0.33I2.67", + "FA0.3MA0.7PbI3", + "MAPbBr0.6Cl2.4", + "HA2PbI4", + "Cs0.05FA0.8MA0.15PbBr0.5I2.5", + "FA0.5MA0.5PbBr1.5I1.5", + "Cs0.05FA0.8MA0.15PbI3", + "Cs0.05FA0.19MA0.76PbI3", + "Cs0.24FA0.76PbI3", + "FA0.83MA0.17PbBr2I", + "Cs0.05FA0.788GU0.065MA0.097PbBr0.51I2.49", + "Cs0.1FA0.75MA0.15PbBr0.5I2.5", + "((CH3)3S)2SnCl2I4", + "Cs0.06FA0.67MA0.27PbBr0.3I2.7", + "Cs0.1FA0.7MA0.2Pb0.5Sn0.5I3", + "(5-AVA)2FA4Sn5I16", + "FA0.81MA0.15PbBr0.45I2.51", + "FA0.6MA0.4Pb0.6Sn0.6I3", + "MAPbBr2.1I0.9", + "Cs0.05FA0.875MA0.075PbBr0.225I2.775", + "FA0.75MA0.25PbBr0.25I2.75", + "MAPb(BF4)2.90I0.1", + "Cs0.02FA0.37MA0.61PbBr0.04I2.96", + "Cs0.06FA0.78MA0.16PbBr0.54I2.46", + "GUMA3Pb3I10", + "FAPb0.2Sn0.8I3", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | (CH3)3SPbI3", + "MACu0.05Pb0.8Sn0.15Br0.1I2.9", + "Cs0.2FA0.8PbBr0.095I0.905", + "Cs0.05FA0.79MA0.16Pb0.832Sn0.168Br0.52I2.48", + "Cs0.15FA0.85PbBr0.9I2.1", + "Cs0.04FA0.81MA0.14PbBr0.43I2.57", + "CsGe0.1Pb0.9BrI2", + "Cs0.05FA0.81MA0.14PbBr0.43I2.57", + "FA0.5MA0.5PbBr2I", + "FABi0.05Pb0.95I3", + "FAPbBr0.05I2.95", + "Cs0.05MA0.95PbBr0.3I2.7", + "Cs0.05FA0.7885MA0.1615PbI3", + "Cs0.75MA0.25PbI3", + "MAPbBr0.36I2.64", + "Cs0.15FA0.76MA0.09PbBr0.03I2.97", + "Cs0.12FA0.5MA0.38PbBr0.96I2.04", + "FA0.83MA0.17PbBr0.0I2.51", + "Cs0.3FA0.2MA0.5PbI3", + "(GABA)0.05MA0.95PbI3", + "MABiI2", + "Cs0.17MA0.83PbI3", + "MASnBr1.2I1.8", + "MAPbIx", + "MAPb1.0ClI2", + "BA2MA34Pb5I15", + "Cs0.05MA0.95Pb0.95Sn0.05Br0.1I2.9", + "Cs0.05FA0.85MA0.15PbBr0.45I2.55", + "(3AMP)MA2Pb3I10", + "CsGe0.2Pb0.8BrI2", + "(NEA)0.2BA1.8MA3Pb4I13", + "Cs0.05FA0.86MA0.09PbBr0.3I2.7", + "CsCu0.005Pb0.995Br3", + "MAPbBr0.12I2.88", + "FA0.93MA0.07PbBr0.21I2.79", + "(NMA)2MA59Pb60I181", + "(PEA)2MA5Pb4Cl2I10", + "FA0.4MA0.6PbBr0.2I2.8", + "(PBA)1.5BA0.5MA3Pb4I13", + "MAPb1.0Br1.5I1.5", + "AgBiI7", + "FA0.75MA0.25Ge0.1Sn0.9I3", + "CsPb0.97Sm0.03Br3", + "Cs0.05FA0.83MA0.17PbBr0.51I2.49", + "FA0.83MA0.17PbBr0.22I2.78", + "FA0.75MA0.25PbBr0.51I2.49", + "FA0.33PbI3", + "FA0.85MA0.15PbBr0.6I2.4", + "Cs0.05FA0.83MA0.17PbBr0.36I2.64", + "FAPbBr3", + "FA0.3MA0.7PbBr0.15I2.85", + "FA0.33MA0.66Pb0.66Sn0.33I3", + "BAFA60Pb61Br4I180", + "MABiI3", + "AgCs2BiBr5.4", + "FA0.95MA0.05PbBr0.15I2.85 | (HTAB)0.03FA0.95MA0.05PbBr0.15I2.85", + "Cs0.05FA0.75MA0.11PbBr0.39I2.61", + "Cs0.1MA0.9PbBrI2", + "(PGA)2MA3Pb4I13", + "Cs0.3FA0.7PbBr3", + "MAPbBr1.74I1.26", + "Cs0.05FA0.7885MA0.1615PbBr0.3I2.7", + "Cs0.05FA0.788GU0.162PbBr0.51I2.49", + "MAPbBr1.77I1.23", + "AgCs2BiBr5.8", + "Cs0.05FA0.83MA0.17PbBr0.17I0.83", + "Cs0.1MA0.9Pb0.5Sn0.5I3", + "Cs0.3Ag3Bi2.2I9", + "CsPbBr0.31I2.69", + "Cs0.15FA0.72MA0.13PbBr0.45I2.55", + "MAPbBr1.7I1.3", + "FAPbBr0.3I2.7", + "FA0.33PbBrI2", + "Cs0.1FA0.27MA0.63PbI3", + "Cs0.15FA0.75MA0.1PbBr0.7I2.3", + "CsPb0.5Sn0.5Br2I", + "Cs0.98Li0.02PbBr3", + "MAPbBr1.8I1.2", + "MAPb0.95Zn0.05I3", + "GUPbI3", + "Cs0.1FA0.79MA0.16PbBr0.51I2.49", + "Cs0.05FA0.8075MA0.1425PbBr0.51I2.49", + "FA0.8TN0.2SnI3", + "FA0.45MA0.55PbI3", + "Cs0.05FA0.79MA0.16PbBr0.54I2.46", + "FA0.83MA0.17PbBr3", + "Cs0.1FA0.765MA0.135PbBr0.45I2.55", + "Cs0.08FA0.76MA0.16PbBr0.51I2.49", + "BA2PbI3", + "IM0.2MA0.20.8PbI3", + "Cs0.1FA0.75MA0.15PbBr0.55I2.55", + "MAPb1.0Br0.15I2.85", + "nanBiI3", + "MACu0.014Pb0.986I3", + "CsBa0.03Pb0.97Br3", + "(3AMP)FA0.6MA2.4Pb4I13", + "MAGeBr0.6I2.4", + "MAPb0.95Sb0.05I3", + "Cs0.04FA0.80MA0.16PbBr0.50I2.50", + "MAAlCl4", + "AgCs2BiBr5.7", + "GU0.075MA0.925PbI3", + "Cs0.02FA0.84MA0.14PbBr0.05I2.95", + "(5-AVA)0.1MA0.9PbI3", + "Cs0.2FA0.6MA0.2PbBr0.33I2.67", + "FA0.5MA0.5PbBr0.5I2.5", + "Cs0.1MA0.9Pb0.75Sn0.25I3", + "Cs0.05FA0.81MA0.14Pb0.95Br0.43I2.42", + "AgCs2BiBr6", + "(PEA)2MA29Pb30I91", + "MAPb0.7Sn0.3I3", + "FA0.07MA0.93PbI3", + "Cs0.05FA0.80MA0.15PbBr0.25I2.75", + "MAPb1.0I3", + "MAPb0.6Sn0.4I3", + "Cs0.15FA0.85PbBr0.6I2.4", + "Cs0.1FA0.9PbBr0.1I2.9 | (PEA)PbBr0.1I2.9", + "EA2MA4Pb5I16", + "MA0.01Pb0.99I3", + "IM0.05MA0.050.95PbI3", + "FA0.67MA0.33PbBr1.5I1.5", + "Cs0.05FA0.81MA14PbBr2.55I0.45", + "FA0.83MA0.17PbBr0.5I2.5", + "Cs0.1FA0.7MA0.2PbBr0.2I2.8", + "FAPbCl0.45I2.55", + "FA0.29MA0.71PbBr0.3I2.7", + "FAPbBr", + "BA2MA3Pb3SnI13", + "(PDA)MA2Pb3I10", + "(PEA)2Cs39Pb40I121", + "FA0.6MA0.4PbI3", + "Cs0.16FA0.8MA0.04PbBr1.83I1.17", + "SrTiO3", + "FA0.66MA0.33PbBr0.45I2.55", + "(GABA)0.025MA0.975PbI3", + "Cs0.06FA0.8MA0.14PbBr0.45I2.55", + "FA0.15MA0.85PbBr2.55I0.45", + "FA0.85MA0.15PbBr0.451I2.55", + "(BZA)2MA2Pb3I10", + "MAPbI3 | Cs1Pb1I3 | Cs1Pb1Br0.3I2.7 | Cs1Pb1Br0.7I2.3 | CsPbBrI2", + "(PEA)2Cs9Pb10Br10.33I20.67", + "FAPbBr0.1I2.9", + "Cs0.2FA0.24MA0.56PbI3", + "CsPbBrI2 | CsPbBrI2", + "MAPb0.5Sn0.5I3", + "(3AMPY)MA3Pb4I13", + "Cs0.05FA0.5MA0.5PbBr1.5I1.5", + "Cs0.5FA0.5PbI3 | CsPbI3", + "MAPbI3 | FAPbBr1.5I1.5", + "(THM)0.025MA0.975PbI3", + "Cs0.17FA0.75MA0.08PbBr0.39I2.61", + "(6-ACA)0.038MA0.962PbI3", + "(PEA)2PbI4", + "FA0.83MA0.17PbBr0.47I2.53", + "Cs0.15Ag3Bi3I9", + "MAPbBr1.6I1.4", + "MAPb0.97Sr0.03I3", + "(BDA)MA2Pb3I10", + "FA0.6MA0.4Pb0.4Sn0.6Br0.12I2.88", + "Cs0.05FA0.83MA0.12PbBr0.51I2.49", + "(PEI)2PbI4", + "Cs0.17FA0.83Pb0.999Sn0.001I3", + "Cs0.08FA0.09PbBr3", + "Cs0.05FA0.7885MA0.1615PbBr0.4845I2.5155", + "Cs0.05FA0.85MA0.5PbBr0.25I2.75", + "MAPbI3 | CA2PbI4", + "Ag4Bi5I19", + "MAPb0.8Sn0.2Br0.4I2.6", + "FA0.92MA0.08PbBr0.24I2.76 | (C8H17NH3)2PbI4", + "MAPb0.75Sn0.25Br1.5I1.5", + "FA0.4MA0.6PbBr0.3I2.7", + "CsSnBr2.7I0.3", + "MACo0.008Pb0.992I3", + "(OdA)PbI4", + "Cs0.1FA0.9PbBr0.135I2.865", + "(PEA)2MA4Pb5I16", + "CsPb0.94Zn0.06BrI2", + "FA0.05PN0.95SnI3", + "FA0.97MA0.03PbBr0.09I2.91 | (MIC3)2PbI4", + "CsPb0.97Sr0.03BrI2", + "MAPbBrI2", + "(CPEA)2MA3Pb4I13", + "Cs0.02FA0.15PDA0.82PbI3", + "(NH4)6.8FA0.15MA0.85Pb7.8Br0.45I22.95", + "MA4PbI6", + "Cs0.05FA0.8075MA0.1425PbBr0.3I2.7", + "(PEA)0.4BA1.6MA3Pb4I13", + "MAEu0.06Pb0.94I3", + "(NH4)6.8FA0.15MA2.21Pb7.8Br0.45I24.31", + "MAPb0.4Sn0.6Br1.5I1.5", + "BA0.15FA0.85SnI3", + "FA0.95MA0.05PbBr01.51I2.85", + "Cs0.05FA0.85MA0.1PbBr0.1I2.9", + "MAPbBr2I", + "Cs0.06FA0.79MA0.15PbBr0.51I2.49", + "Cs0.08FA0.92PbI3", + "Cs0.75FA0.25PbI3 | CsPbI3", + "FA0.83MA0.17PbBr0.49I2.51", + "MAPbBr0.5I2.5", + "Cs0.1665FA0.667MA0.1665PbBr0.33I2.67", + "(EDA)0.005FA0.3MA0.695Pb1.0I3", + "GU0.025MA0.975PbI3", + "Cs0.08FA0.78MA0.14PbBr0.42I2.38", + "(CHMA)2MAPb2I7", + "(NH4)5.1FA0.15MA2.04Pb6.1Br0.45I19.04", + "Cs0.1FA0.6MA0.3PbBr0.256I0.744", + "FA0.85MA0.15Pb0.45I2.55", + "FA0.75MA0.25PbBr0.25I2.77", + "Cs0.05FA0.81MA0.15PbBr0.45I2.55", + "Cs0.15FA0.85Pb0.375Sn0.625I3", + "(NH4)8.5FA0.15MA1.7Pb9.5Br0.45I28.9", + "Cs0.2FA0.8PbBr0.16I2.84", + "Cs0.05FA0.89MA0.6PbBr0.06I2.94", + "(BZA)2PbI4", + "(PEA)2CsPb2I7", + "Cs0.05FA0.28MA0.67PbBr0.54I2.46", + "(PEA)2Cs7Pb8I25", + "MAPb0.75Sn0.25Br2.1I0.9", + "(NH4)3Sb2I9", + "EA2MA6Pb7I22", + "CsSnBr0.6I2.4", + "MAPb0.995Sb0.005I3", + "EA2MA5Pb6I19", + "MA3PbCl2", + "Cs0.88Rb0.12PbBr3", + "Cs0.133FA0.733MA0.133PbBr0.256I0.744", + "FA0.67MA0.33PbBr3", + "MAPbBr1.41I1.59", + "MAPb0.7Sn0.255I3", + "Cs0.1FA0.7MA0.2PbBr0.5I2.5", + "(PEA)2Cs9Pb10I31", + "(PEA)MAPbI3", + "Cs0.05FA0.75MA0.2PbBr0.51I2.49", + "FA0.6MA0.4Pb0.4Sn0.6I3 | (PEA)2Pb0.4Sn0.6I4", + "(PDMA)FA2Pb23I7", + "(Br-PEA)2MA2Pb3BrI10", + "CsBi9I28", + "Cs0.05FA0.788MA0.162PbBr0.51I2.49", + "BA2FA0.6MA2.4Pb4I13", + "FA0.83MA0.17PbBr0.3I2.7", + "Cs0.2MA0.8Pb0.5Sn0.5I3", + "(DMA)PbI3", + "AN0.015MA0.985PbI3", + "Cs0.91Na0.09PbBr3", + "BA2MA2Pb4I13", + "(Anyl)2MAPb2I6", + "FA0.75MA0.25PbBr0.24I2.76", + "FA0.83MA0.17PbBr0.37I2.63", + "Cs0.05FA0.79MA0.16PbBr0.48I2.52", + "Cs0.07FA0.93PbBr0.15I2.85", + "Cs0.05FA0.84MA0.11PbBr0.1I2.9", + "Cs0.01MA0.99PbBr0.03I2.97", + "FAPbBr0.5I2.5", + "MAPbBr0.45I2.55", + "Cs0.17FA0.83Pb0.7Sn0.3I3", + "Cs0.1FA0.75MA0.13PbBr0.45I2.55 | (A43)2PbI4", + "Cs0.8FA0.69MA0.23PbBr0.9I2.1", + "MAPb(Br0.7I0.3)xCl3-x", + "MAPb0.75Sn0.25Br2.7I0.3", + "Cs0.1FA0.76MA0.14PbBr0.51I2.49 | (EPA)2PbI4", + "CsSnBr1.5I1.5", + "Cs0.17FA0.83Pb0.99Sn0.01I3", + "Cs0.05FA0.788MA0.162PbBr0.3I2.7", + "MAPbBr0.84I2.16", + "Cs0.05FA0.46MA0.49PbBr0.12I2.88", + "GU0.15MA0.85PbI3", + "(CH3ND3)PbI3", + "(F3EA)0.12BA1.88MA3Pb4I13", + "(PEA)2MA5Pb6I19", + "MAPb0.99Sb0.01I3", + "Cs0.14FA0.86PbI3", + "MAPbBr0.48I2.52", + "(CHMA)2Cs4MA35Pb40I121", + "MAPb1.0Br3", + "FA0.11MA0.89PbI3", + "CsPbBr3 | FAPbBr2Cl", + "MAPbI3 | Cs1Pb1I3 | CsPbBr0.3I2.7", + "FA0.35MA0.65PbBr0.13I2.94", + "FA0.8MA0.2PbBr0.2I0.8", + "CsPbI3 | CsPbI3", + "MAPbI3 | BAPbI4", + "MASb1.9Sn0.1I9", + "Cs0.05FA0.57MA0.38PbI3", + "MAPbBr0.18I2.82", + "MA3PbI3", + "Cs0.02FA0.79MA0.16PbBr0.551I2.49", + "FA0.9MA0.1PbBr0.2I2.7", + "CsPbBrF1.72I0.28", + "(PDA)MAPbI4", + "Cs0.1FA0.75MA0.15Pb0.75Sn0.25Br0.5I2.5", + "FAMAPbBr0.45I2.55", + "MAPbBr0.21I2.79", + "K3Sb2I9", + "CsPbBr0.09I2.91", + "FA0.75MA0.25PbBr0.25I2.80", + "AgBi2I7", + "Cs0.05FA0.9Rb0.05PbI3", + "FA0.84MA0.16PbBr0.4I2.6", + "Cs0.07FA0.89GU0.02PbI3", + "(HEA)2Cs1.9FA17.1Pb20Br3.15I59.85", + "Cs0.05FA0.79MA0.16PbBr0.65I2.35", + "FA0.85MA0.85PbI3", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49 | HAPbI4", + "Cs0.17FA0.83PbBr0.6I2.4", + "FAPb0.7Sn0.3I3", + "(BDA)PbI4", + "Cs0.05FA0.76MA0.16PbBr1.5I1.5", + "Cs0.15FA0.75MA0.1PbBr0.2I2.8", + "FA0.85TN0.15SnI3", + "MAPb0.625Sn0.375I3", + "MAPb0.99Zn0.01I3", + "LaYS3", + "FA0.8K0.05MA0.15PbBr0.55I2.55", + "(5-AVA)0.03MA0.97PbI3", + "MAPbBr0.225I2.775", + "Cs0.85Rb0.15PbBr3", + "FA0.5MA0.5PbBrI2", + "(CIEA)0.1MA0.9PbI3", + "(ThMA)MA4Pb5I16", + "FABiPbI3", + "Cs0.2FA0.8Pb0.25Sn0.75I3", + "FAPb0.875Sn0.125I3", + "FA0.46MA0.64PbBr0.24I0.76", + "(TFEA)2Cs0.475FA15.675MA2.85Pb20Br9.15I51.85", + "(TBA)0.15Cs0.04FA0.67MA0.14PbBr0.51I2.49", + "(PEA)2Cs79Pb80Ix", + "FA0.97MA0.03PbBr0.09I2.91 | (MIC2)2PbI4", + "Cs0.09FA0.83MA0.08PbBr0.15I2.85", + "FA0.87MA0.13PbI3", + "MAIn0.20Pb0.80I3", + "nanSnI6", + "CsEu0.09Pb0.91BrI2", + "(PMA)2MAPbI3", + "Ag4Bi9I31", + "Cs0.13FA0.72MA0.16PbBr0.51I2.49", + "MAPb0.4Sn0.6Br1.8I1.2", + "FA0.83MA0.17PbBr0.02I2.98", + "MACa0.03Pb0.97I3", + "Cs0.05FA0.85MA0.1PbBr3.0", + "FA0.15MA0.85PbBr0.45I2.55", + "MAPbBr1.14I1.86", + "Cs0.05FA0.79MA0.16PbBr0.5I2.5", + "MAMg0.09Pb0.91I3", + "MAHg0.15Pb0.85I3", + "(APMim)Pb(PF6)PF63", + "FAPb0.125Sn0.875I3", + "CsLa0.01Pb0.99BrI2", + "CsPb1.0Br3", + "(CHMA)2MAPbI4", + "CsPb0.98I3", + "FA0.79MA0.16PbBr0.51I2.49", + "MAPbBr2.97I0.03", + "MAPbBr0.3I2.7", + "Cs0.05FA0.8MA0.15PbBr0.4I2.6", + "(PMA)2MA3Pb4I13", + "GUMA4Pb4I13", + "Cs0.03FA0.37MA0.6PbBr0.025I2.975", + "FA0.83MA0.17PbBr1.2I1.8", + "Cs0.2FA0.8PbBr0.2I2.8", + "MAPbBr0.87I2.13", + "FAPb0.9Sn0.1I3", + "MAGeBr0.45I2.55", + "FA0.75Sn0.25I3", + "FAPb0.5Sn0.5I", + "CsSnBr2I", + "MAPbBr0.14I2.86", + "Cs0.1FA0.75MA0.15PbBr0.51I2.49", + "Cs0.05FA0.85MA0.10PbBr0.39I2.61", + "Cs0.15FA0.71MA0.14PbBr0.9I2.1", + "FA0.4MA0.6PbI3", + "(PEA)0.8MA0.5PbI3.2", + "MASnBr1.8Cl0.2I", + "MABi3I10", + "MAPbBr0.083I2.92", + "FA0.67MA0.33PbBrI2", + "Cs0.05FA0.54MA0.41PbBr0.06I2.94", + "Cs0.17FA0.83PbBrI2", + "Cs0.05FA0.8MA0.15PbBr0.47I2.53", + "FA0.87MA0.13PbBr0.13I2.83", + "(AVA)2PbI4 | MAPbI3", + "Cs0.05FA0.76GU0.075MA0.11PbBr0.39I2.61", + "Cs0.1FA0.7MA0.2PbI3", + "FA0.8MA0.2PbBr0.256I0.744", + "CsPb0.95I3", + "Cs0.1FA0.81MA0.09PbBr0.1I2.9", + "Cs2SnI6", + "FA0.85MA0.15PbBr0.46I2.54", + "FA0.75MA0.25Sn1.0I3", + "Cs0.1FA0.9SnI3", + "GU0.75MA0.25PbI3", + "(3AMP)FA0.45MA2.55Pb4I13", + "EA2MA3PEAPb4I13", + "(DMA)0.025MA0.975PbI3", + "Cs0.05FA0.76MA0.19PbBr0.6I2.4", + "(BDA)MAPbI4", + "Cs0.04FA0.8MA0.16PbBr0.45I2.55", + "Cs0.1FA0.75MA0.15Pb0.5Sn0.5Br0.5I2.5", + "FA0.5MA0.5PbI", + "(TBA)0.5Cs0.05FA0.75MA0.15PbBr0.51I2.49", + "Cs0.05FA0.79MA0.16PbBr0.49I2.51", + "FA0.59MA0.41PbI3", + "BAFA40Pb41I124", + "MASb2I9", + "Cs0.02FA0.98SnI3", + "Cs0.05FA0.68MA0.26Pb0.75Sn0.25Br0.4I2.6", + "FA0.79MA0.21PbI3", + "FA0.10PN0.90SnI3", + "FA0.2MA0.8PbBr2.4I0.6", + "CsPb0.1Sn0.9I3", + "MACu0.03Pb0.97Br0.03I2.97", + "Cs0.08FA0.78MA0.14PbBr0.42I2.58", + "Cs0.15FA0.71MA0.14PbBr0.6I2.4", + "Cs0.06FA0.78MA0.16PbBr0.18I2.82", + "FAPbBr2.25Cl0.75", + "MAPb0.95I3", + "BE2FA9Pb9I28", + "MAPb0.4Sn0.6Br0.4I2.6", + "FA0.83MA0.17PbBr1.5I1.5", + "Cs0.04FA0.8MA0.16PbBr0.15I0.85", + "(PEA)0.67MA0.33PbI3", + "Ag0.152Bi3I9.5", + "HA0.1MA0.9SnI3", + "FA0.25MA0.75SnI3", + "(Ace)0.02MA0.98PbI3", + "FA0.0MA0.13PbBr0.13I2.87", + "FA0.5MA0.5PbBr2.5I0.5", + "FA0.072MA0.928PbBrI2.86", + "Cs0.05FA0.79MA0.16PbBrI2", + "Cs0.03Pb0.97Br3", + "BA0.5MA0.75PbI3.25", + "FA0.4MA0.6PbBr0.025I2.975", + "Cs0.05FA0.55MA0.4PbBr2.88I0.12", + "FA0.7Rb0.3PbI3", + "FA0.88MA0.12PbBr0.36I2.64", + "FA0.4MA0.6PbI4", + "FAPbBr2.1Cl0.9", + "MA3Sb1.4Sn0.6I9", + "Cs0.0125FA0.4875MA0.5Pb0.5Sn0.5I3", + "(PDMA)MA5Pb6I19", + "BA2MAPb2I6", + "MA0.01Mg0.01Pb0.99I3", + "Cs0.1FA0.9PbBr0.1I2.9", + "Cs0.05FA0.8MA0.15PbBr0.15I2.85", + "CuBiI4", + "CsPb0.9I3", + "GUMA3Pb3I12", + "Cs0.05FA0.79MA0.16SnBr0.5I2.5", + "MAPb0.97Sb0.03I3", + "(CHMA)2MA4Pb5I16", + "BA2MA39Pb40I121", + "(PDA)0.01Cs0.15FA0.84PbI3", + "MAPb(BF4)2.95I0.05", + "MA3PA2Pb4I13", + "Cs0.05MA0.95PbBr0.6I2.4", + "Cs0.01Pb0.99Br3", + "EA2PbI4", + "MAPb0.97I3", + "MAPbBr0.07I2.97", + "(F3EA)0.04BA1.96MA3Pb4I13", + "Cs0.19FA0.81PbBr0.54I2.46", + "FA0.6MA0.4Pb0.4Sn0.6I3", + "MANi0.1Pb0.9I3", + "CsMg0.03Pb0.97Br3", + "BA2MA3Sn4I13", + "Cs0.05MA0.79PbBr0.3I2.7", + "Cs0.17FA083PbBr0.6I0.24", + "MAPbI3 | (PPA)PbI4", + "CsPb1.0Br1.2I1.8", + "Cs0.05FA0.83MA0.12PbBr0.45I2.55", + "FA0.83MA0.17PbBr0.33I2.67", + "MAPb0.4Sn0.6Br0.6I2.4", + "FA0.71MA0.29PbBr0.42I2.58", + "CsEu0.01Pb0.99BrI2", + "BA0.52GA0.15MA0.67PbI3.33", + "Cs0.3MA0.7PbI3", + "DA2FA3Sn4I13", + "FA0.024MA0.976PbBrI2.955", + "MABa0.03Pb0.97I3", + "BA2Cs0.1FA2.36MA0.48Pb3Br1.7I0.83", + "Cs0.05FA0.94MA0.01PbBr0.03I2.97", + "(F3EA)0.2BA1.8MA3Pb4I13", + "Cs0.1FA0.9PbI3", + "BA2Cs0.08FA1.36MA2.56Pb5I16", + "FA0.62MA0.38PbBr0.13I2.90", + "MA2PA10Pb11I34", + "Cs0.2FA0.8SnI3", + "MAPb0.4Sn0.6Br2.4I0.6", + "FA0.8MA0.2PbI3", + "(4ApyH)Bi0.2Sb0.8I4", + "Cs0.05FA0.75MA0.1PbBr0.3I2.9", + "FA0.75MA0.25PbBr0.25I2.76", + "Rb3Sb2I9", + "FA0.86MA0.15PbBr0.45I2.55", + "FA0.8MA0.2Pb0.5Sn0.5I3", + "(iPA)3PbI5", + "Cs0.12FA0.88PbBr0.36I2.64", + "FA0.3MA0.7PbBr0.6I2.4", + "CsPbBr3 | MAPbI3", + "MAPb0.4Sn0.6BrI3", + "CsFAPbBrI", + "BA2FA2.4MA0.6PMAPbI13", + "FAPbBr2I", + "MAEu0.08Pb0.92I3", + "FA0.87MA0.13PbBr0.51I2.61", + "FA0.4MA0.6Pb1.0I3", + "FAPb1.0I3", + "FA0.92MA0.08PbBr0.24I2.76 | (C4H9NH3)2PbI4", + "FA0.73MA0.23PbBr0.13I2.89", + "FA0.6MA0.4PbBr0.256I0.744", + "FA0.8GU0.2SnI3", + "Cs0.005FA0.81MA0.14PbBr0.45I2.55", + "Ag0.15Bi4I11.5", + "(HEA)2Cs3.9FA35.1Pb40Br12.3I110.7", + "CsFAPbBr0.2I2.8", + "(C6H4NH2)CuCl2I", + "CsPbBr3 | CsPbBr3", + "Cs0.08FA0.76MA15PbBr0.51I2.49", + "Cs0.05FA0.8MA0.15PbBr0.42I2.58", + "CsPb0.99Zn0.01Br3", + "MAEu0.02Pb0.98I3", + "(DMA)2PbI4", + "Cs0.04FA0.80MA0.16PbBr0.5I2.5", + "CsBi0.05Pb0.95I3", + "Cs0.05FA0.75GU0.075MA0.10PbBr0.39I2.61", + "MA2PA4Pb3I10", + "FA0.17MA0.83PbBr3", + "Cs2TiBr6", + "FA0.85MA0.85PbBr0.45I2.55", + "(F5PEA)xCs0.15FA0.64MA0.2PbBr0.6I2.4", + "CsPbBrI2 | BA2CsPb2BrI6", + "Cs0.5MA0.5PbI3", + "Cs0.05FA0.79GU0.05MA0.11PbBr0.39I2.61", + "GUSnI3", + "FA0.3MA0.7PbBr0.3I2.9", + "Cs0.25FA0.75PbI3", + "Cs0.1FA0.85MA0.15PbBr0.45I2.55", + "MAPbBr0.81I2.19", + "EA2MA9Pb10I31", + "Cs0.13FA0.87PbBr0.39I2.61", + "Ba0.1K0.9Nb0.95Ni0.05O3", + "(AVA)0.05MA0.95PbI3", + "(DMA)0.1MA0.9PbI3", + "MA3Sb2I9", + "FAPb0.6Sn0.4I3", + "BA2FAPb2I7", + "FA0.17MA0.83PbBr2I", + "FA0.83MA0.17PbBr0.4I2.6", + "BDACsPb2Br2.1I4.9", + "FA0.5MA0.5PbBr0.12I2.88", + "(PMA)2CuBr4", + "FA0.3MA0.7PbBr0.48I2.52", + "MAPb0.25Sn0.75Br1.2I1.8", + "MAPb0.99I3", + "(PEA)2MA2Pb3I10", + "Cs0.8Rb0.2SnI3", + "MAPb0.65Sn0.35I3", + "FAPbBr3I", + "(PEA)0.8BA1.2MA3Pb4I13", + "FA0.85MA0.15PbBr0.45I2.55 | BAFAPbI4", + "(4AMPY)MA3Pb4I13", + "CsNi0.01Pb0.99Br3", + "(HdA)PbI4", + "FA0.5MA0.5Pb0.75Sn0.25I3", + "FA0.6MA0.4PbBr0.3I2.9", + "MAPb1.0Cl3", + "(PEA)2Cs59Pb60Br60.33I120.67", + "FA0.54MA0.46PbI3", + "Cs0.05FA0.855MA0.095PbBr0.285I2.565", + "(BDA)MA4Pb5I16", + "CsPbBr1.9I1.1", + "(PEA)2PbI4 | MA1Pb1I3 | (PEA)2PbI4", + "Cs0.11MA0.89PbI3", + "Cs0.06FA0.94PbBr3", + "MA2Pb(SCN)2I2", + "AgCs2BiBr5.6", + "MAPbI3 | BA2MA2Pb3I310", + "Cs0.06MA0.94PbI3", + "BiFeO3", + "Cs0.09FA0.91PbBr0.12I2.88", + "Cs0.05FA0.84MA0.11PbBr0.2I2.8", + "FA0.87MA0.13PbBr0.39I2.61", + "Cs0.1FA0.9PbBr0.1I2.9 | (PA)PbBr0.1I2.9", + "MAIn0.15Pb0.85I3", + "Cs0.05FA0.788GU0.097MA0.065PbBr0.51I2.49", + "FA0.6MA0.4Pb0.4Sn0.6Br0.3I2.7", + "FA0.05MA0.95PbI3", + "CsPbBr3 | CsPbBr2I", + "Cs0.35FA0.65PbI3", + "Cs0.05FA0.79MA0.16PbBr0.51I2.51", + "FA0.2MA0.8PbBr0.6I2.4", + "Cs0.06FA0.78MA0.16PbBr0.51I2.49", + "Cs0.02FA0.95MA0.03PbBr0.09I2.91", + "Cs0.15FA0.65MA0.20PbBr0.6I2.4", + "CsPbBr2I | CsPbI3", + "FA0.81MA0.19PbBr0.54I2.46", + "Cs0.1FA0.76MA0.14PbBr0.45I2.55", + "CsxFAxPbI3", + "Cs0.17FA0.83Pb0.9Sn0.1I3", + "MAPb0.75Sn0.25Br3", + "(ImEA)PbI4", + "Cs0.01FA0.76MA0.14PbBr0.45I2.55", + "FA0.8MA0.2PbBr0.22I", + "Cs0.06FA0.79MA0.15PbBr1.8I1.2", + "Cs0.05FA0.5MA0.45PbBr0.04I2.96", + "IM0.005MA99.5PbI3", + "EA0.2MA0.8PbI3", + "Cs0.05FA0.76MA0.19PbBr0.57I2.32", + "CsPbBrF0.28I1.72", + "Cs0.10FA0.75MA0.15PbBr0.50I2.50", + "Cs0.05FA0.7885MA0.1625PbBr0.45I2.55", + "(Anyl)2MA34Pb5I15", + "Cs0.5FA0.4MA0.1PbBr0.51I2.49", + "(BdA)PbI4", + "FASnI3", + "IM0.5MA0.50.5PbI3", + "Cs0.05FA0.81MA0.14PbBr0.51I2.49", + "(PEA)2FA0.85MA0.15Pb2Br1.05I5.95", + "FAPbBr0.35I2.65", + "Cs0.1FA0.75MA0.15SnBr0.5I2.5", + "Cs0.15FA0.255MA0.595PbI3", + "Cs3Sb2I9", + "MACo0.1Pb0.9I3", + "MASnBr0.6I2.4", + "FA0.33PbBr2.5I0.5", + "Cs0.80MA0.20PbI3", + "CsBa0.2Pb0.8BrI2", + "Cs0.16FA0.8MA0.04PbBr1.71I1.29", + "Cs0.3FA0.7PbBr0.095I0.905", + "FA0.75GU0.25SnI3", + "MAPb0.93I3", + "MASnBrI2", + "PAPbI3", + "MACu0.0094Pb0.9906I3", + "BA2Cs1.2FA7.65Pb4.8Sn3.6I28", + "Cs0.05FA0.76MA0.19PbI3", + "FAPbBrxIx", + "(GABA)0.2MA0.8PbI3", + "Cs0.05FA0.81MA0.11PbBr0.45I2.55", + "(Ace)0.05MA0.95PbI3", + "FAPbBr2Cl", + "MAPbBr0.3I2.9", + "Cs0.1FA0.78MA0.13PbI3", + "GU2PbI4", + "(ALA)0.2BA1.8MA3Pb4I13", + "Ag3BiI6", + "Cs0.05FA0.83MA0.12PbBr0.39I2.61", + "FAPbBr2.5I0.5", + "BA2Cs0.15FA0.85Pb1.2Sn0.8I7", + "Cs0.05FA0.95PbI3", + "(EDA)0.015FA0.29MA0.695Pb1.0I3", + "(PEA)1.6BA0.4MA3Pb4I13", + "nannannan", + "(PEA)2FA8Sn9I28", + "CsPb0.9Zn0.1Br2I", + "Cs0.05FA0.79MA0.16Pb1.1Br0.51I2.49", + "FAPb3Br6I", + "MAPbBr0.8I2.2", + "FA0.125MA0.875PbI", + "Cs0.1FA0.83MA0.17PbBr0.51I2.49", + "MAPb0.95Sr0.05I3", + "MAPbBr0.015I2.985", + "FA0.3MA0.7PbBr0.54I2.46", + "FA0.84MA0.16PbBr0.45I2.55", + "Cs0.2FA0.664MA0.336PbBr1.05I1.95", + "MAPbI3 | (PPEA)PbI4", + "MAPb0.9Zn0.1I3", + "Cs0.4FA0.6PbBr0.095I0.905", + "CsGeI3", + "FA0.85MA0.15PbBr0.55I2.45", + "FA0.83MA0.17PbBr0.50I2.50", + "MACo0.4Pb0.6I3", + "Ag0.153Bi3I10.5", + "MAPbI3 | Cs1Pb1I3 | Cs1Pb1Br0.3I2.7 | CsPbBr0.7I2.3", + "Cs0.05FA0.45MA0.5Pb0.5Sn0.5I3", + "Cs0.08FA0.8MA0.12PbBr0.36I2.64", + "CsPbBrI", + "Cs0.05FA0.85MA0.1PbBr0.45I2.45", + "Cs0.15FA0.51MA0.34PbI3", + "Cs0.1FA0.9PbBr0.51I2.49", + "FA0.4MA0.6PbBr1.8I1.2", + "IM0.01MA0.99PbI3", + "(PDMA)PbI4", + "MACu0.05Pb0.85Sn0.1Br0.1I2.9", + "FA0.6MA0.4PbBr0.1I2.9", + "MA3Bi2I12", + "FA0.85PbBr0.08I2.92", + "FA0.5MA0.5PbSnI3", + "MAPb0.5Sn0.500I3", + "(PEA)1.4BA0.6FA3Sn4I13", + "FA0.25MA0.75PbBr0.12I2.88", + "EA0.1MA0.9PbI3", + "BAPbI4", + "Cs0.94Li0.06PbBr3", + "Cs0.05FA0.79MA0.16PbBr0.51I2.49", + "MAPbBr0.05I2.95", + "Cs0.17FA0.83PbBr0.8I2.2", + "Cs0.07FA0.77MA0.16PbBr0.50I2.50", + "MAPb0.9Sn0.1Br0.2I2.8", + "MANiCl2I", + "Cs0.2668FA0.666MA0.0664PbBr0.256I0.744", + "Cs0.17FA0.83PbBr0.75I2.25", + "Cs0.70FA0.30PbI3", + "Cs0.05FA0.79MA0.16PbBr1.2I1.8", + "Cs0.0664FA0.8668MA0.0664PbBr0.256I0.744", + "FA0.5MA0.5PbBr0.13I2.87", + "FA0.85MA0.15PbBr0.51I2.49", + "Cs0.2FA0.8PbBr0.36I2.64", + "(PEA)0.33MA0.67PbI3", + "Cs0.1FA0.74MA0.13PbBr0.39I2.48", + "Cs0.05FA0.7885MA0.1615PbBr1.2I1.8", + "Cs0.05FA0.38MA0.57PbI3", + "Cs0.03MA0.97PbBr0.09I2.91", + "CsPbBr2I", + "FA0.1MA0.9PbBr2.7I0.3", + "MAPb0.85Sb0.15I3", + "Cs0.05FA0.80MA0.15PbBr0.45I2.55", + "(PEA)2MA3Pb4I13", + "MACo0.031Pb0.969I3", + "Cs0.03FA0.91Rb0.05PbI3", + "FA0.85MA0.15PbBr0.45I2.55", + "FA0.3MA0.7PbBr0.9I2.1", + "MASnBr1.5I1.5", + "FA0.75MA0.25PbBr0.25I2.78", + "MAPbBr2.13I0.87", + "Cs0.05FA0.93MA0.11PbBr0.40I2.6", + "Cs0.17FA0.83PbBr0.51I2.49", + "Cs0.24FA0.76PbBrI", + "CsBi0.01Pb0.99I3", + "MAHg0.3Pb0.7I3", + "(PEA)0.05MA0.95PbBr1.2I1.8", + "FA0.6MA0.4Pb0.4Sn0.6Br0.24I2.76", + "FA0.6MA0.4Pb1.0I3", + "FA0.75MA0.25PbBr0.5I2.5", + "Cs0.05FA0.79MA016PbBr0.5I2.5", + "BA2FAMA2.64Pb5I16", + "Cs0.2FA0.66MA0.14Pb0.75Sn0.25Br0.5I2.5", + "Cs0.15FA0.25MA0.6PbI3", + "BA2MA6Pb7I22", + "Cs0.05FA0.79MA0.16PbBr0.31I2.7", + "Cs0.88FA0.12PbI3", + "Cs0.17FA0.83PbBr1.2I1.8", + "Cs0.05FA0.79MA0.16PbBr0.50I2.5", + "FA0.85MA0.15PbBr0.45I2.55 | BA2FAPbI4", + "Cs0.1FA0.77MA0.13PbBr0.39I2.48", + "(HEA)2Cs1.9FA17.1Pb20Br12.6I57.54", + "(4FPEA)2MA4Pb5I16", + "Cs0.05FA0.80MA0.15PbBr0.33I2.67", + "CsPbBr2.9I0.1", + "BAMA2Pb2I7", + "FA0.33MA0.67PbI3", + "MAHg0.025Pb0.975I3", + "Cs0.1FAxMAxPbBrxIx", + "Cs0.03FA0.945MA0.025PbBr0.075I2.925", + "MAPbBr2.16I0.84", + "BAFA60Pb61I184", + "FA0.67MA0.33PbBr2.5I0.5", + "(PEA)0.12BA0.9MA3Pb4I13", + "Cs0.05FA0.7885MA0.1615PbBr0.4845I2.51555", + "MAPbBr0.226I2.774", + "FA0.48MA0.52PbI3", + "FASnBr0.75I2.25", + "MAPb(BF4)0.05I2.95", + "(THM)0.2MA0.8PbI3", + "CsPb0.95Sr0.05BrI2", + "(BEA)0.5Cs0.15FA2.36MA0.48Pb3Br1.7I0.83", + "Cs0.125FA0.75MA0.125PbBr0.33I2.67", + "BA2MA3PbI4", + "Cs0.17FA0.83Pb0.95Sn0.05I3", + "Cs0.3FA0.7PbBr0.15I2.85", + "FA0.33PbBr2I", + "MAPb0Sn0.19I3", + "IM0.6MA0.60.4PbI3", + "FA0.76MA0.15PbBr0.48I2.42", + "Cs0.05FA0.85MA0.1PbBr0.3I2.7", + "Cs0.04FA0.92MA0.04PbI3", + "Cs0.1FA0.9PbBr0.256I0.744", + "Cs0.02FA0.98PbBr3", + "FAPb0.25Sn0.75I3", + "MAPb0.98Sb0.02I3", + "FA0.92MA0.08PbBr0.24I2.76 | (C6H13NH3)2PbI4", + "MACa0.1Pb0.9I3", + "(CIEA)0.01MA0.99PbI3", + "MAPbBrxIx", + "MAPbBr0.9I", + "MAPb0.125Sn0.875I3", + "Cs0.05FAPbI3", + "FA0.25MA0.75PbI3", + "Cs0.05FA0.16MA0.79PbBr0.51I2.49", + "Cs0.17FA0.83PbBr0.15I2.85", + "FA0.66MA0.34PbBr0.42I2.58", + "Cs0.05FA0.795MA0.16PbBr0.51I2.5", + "Cs0.05FA0.79MA0.16PbBr0.16I0.84", + "FA0.44MA0.56PbBr0.33I2.67", + "HA0.3MA0.7SnI3", + "AgCs1.8Rb0.2BiBr6", + "Cs0.02FA0.38MA0.6PbBr0.025I2.975", + "Cs0.3MA0.7Pb0.5Sn0.5I3", + "MAPbBr0.066I2.93", + "MAPb0.875Sn0.125I3", + "Cs0.06FA0.84MA0.10PbBr0.41I2.59", + "Cs0.17FA0.83PbBr0.4I2.6", + "FA0.8MA0.2PbBr0.13I2.88", + "nanBi2FeCrO6", + "Cs0.05FA0.79MA0.16Pb0.664Sn0.336Br0.52I2.48", + "Cs0.05FA0.747K0.05MA0.153PbBr0.51I2.49", + "(NH4)3Sb2Br9", + "(PDA)0.02Cs0.15FA0.83PbI3", + "CsSnBr3", + "CsBiI4", + "FA0.2MA0.8PbBr0.3I2.7", + "(TBA)0.05MA0.95PbI3", + "MAPbBr0.03I2.97", + "CsBi0.025Pb0.975I3", + "Cs0.91Rb0.09PbBr3", + "Cs0.4FA0.6PbBr1.05I1.95", + "MAPb0.999Sb0.001I3", + "Cs0.08FA0.69MA0.23PbBr0.63I2.37", + "Bi0.95La0.05FeO3", + "(PEA)0.25(F5PEA)0.75PbI4", + "Cs0.2FA0.65MA0.15PbBr0.55I2.55", + "FA0.57MA0.43PbBr0.39I2.61", + "Cs0.05FA0.79MA0.17PbBr0.51I2.49", + "MAPbI3 | BA2PbI4", + "BA2FA60Pb61Br4I180", + "(PDA)2MA3Pb4I13", + "CsFAPbI3", + "CsFAPbBr3I", + "Cs0.08FA0.55MA0.37PbI3", + "Cs0.05FA0.8MA0.15PbBr0.45I2.55", + "Cs0.05FA0.7885MA0.1615PbBrI2", + "Cs0.08MA0.92PbI3", + "(BzDA)Cs0.45FA7.2MA1.35Pb10Br2.17I28.83", + "FA0.95TN0.05SnI3", + "FA0.17MA0.83PbI3", + "(PEA)0.05MA0.95PbI3", + "Cs0.05FA0.82MA0.13PbBr0.45I2.55", + "EDA0.01FA0.99SnI3", + "Cs0.05FA0.90MA0.05PbBr0.15I2.85", + "Cs0.1FA0.76MA0.14PbBr0.55I2.55", + "Cs0.2FA0.75MA0.05PbBr0.33I2.67", + "(PEI)2MA4Pb5I16", + "Cs0.05FA0.8265MA0.1235PbBr0.39I2.61", + "Cs0.06FA0.83MA0.17PbBr0.51I0.249", + "AN0.03MA0.97PbI3", + "BA2MA8Pb9I28", + "Cs0.05FA0.79MA0.16PbI3 | NMABrPbIBr", + "Cs0.17FA0.83PbBr1.2I2.8", + "CsPb2Br5", + "MAPbBr1.25I75", + "Cs0.1FA0.9PbBr0.315I2.685", + "HA2MA2Pb3I10", + "IM0.15MA0.150.85PbI3", + "Cs0.14FA0.86PbBr0.27I2.29", + "FA0.85MA0.15PbI3", + "Cs0.05FA0.09MA0.05PbBr0.15I2.85", + "BA0.67MA0.67PbI3.33", + "FA0.87MA0.13PbBr0.5I2.5", + "FA0.33PbBr0.5I2.5", + "MAPb3I3", + "MA0.05Mg0.05Pb0.95I3", + "(NH4)1.7FA0.15MA2.04Pb2.7Br0.45I8.84", + "CsxMAxPbxBrxIx", + "FAPbBr0.256I0.744", + "FASnBr0.5I2.5", + "Cs0.1FA0.75MA0.24PbBr0.51I2.49", + "MABa0.05Pb0.95I3", + "MAPbI3 | (MIC2)2PbI4", + "Cs0.17FA0.87PbBr0.36I2.64", + "Cs0.2FA0.8PbBr0.75I2.25", + "(PEA)2Cs4MA35Pb40I121", + "Cs0.03FA0.81MA0.16PbBr0.50I2.50", + "Cs0.1FA0.747MA0.153PbBr0.51I2.49", + "AN0.1MA0.9PbI3", + "MA0.5PA0.5PbI3", + "Cs0.05FA0.83MA0.17PbBr0.39I2.61", + "FA0.6MA0.4PbBr0.095I0.905", + "(TFEA)2Cs0.725FA23.925MA4.35Pb29Br13.65I77.35", + "FA0.12MA0.88PbBr0.25I2.75", + "(PEA)2MA4Pb4I13", + "Cs2AgBiBr6", + "CsPb1.0BrI2", + "Cs0.60MA0.40PbI3", + "(PDMA)FA3Pb4I13", + "(EDA)0.02FA0.29MA0.69Pb1.0I3", + "BA2Cs0.45FA2.55Pb2.4Sn1.8I14", + "Cs0.1FA0.9MAPbI3", + "(PEA)0.4FA0.6PbI3", + "(TFEA)2Cs0.975FA32.175MA5.85Pb40Br18.15I102.85", + "Cs0.01FA0.39MA0.6PbBr0.025I2.975", + "IA0.05MA0.95PbI3", + "Cs0.15EA0.75FA0.1PbBr0.3I2.7", + "Cs0.05FA0.75MA0.15Rb0.05PbI3", + "FA0.25MA0.75PbBr0.25I2.75", + "Cs0.017FA0.83MA0.15PbBr0.51I2.49", + "FA0.1MA0.9PbI3 | (A43)2PbI4", + "Cs0.11FA0.89PbBr0.18I2.82", + "Cs0.05FA0.79MA0.15PbBr0.51I2.49", + "Cs0.25FA0.75Pb0.5Sn0.5I3", + "CsPb0.85I3", + "BA0.1Cs0.15FA0.75PbBr0.3I2.7", + "FA0.92MA0.08PbBr0.24I2.76", + "CsFAPbBr0.3I2.7", + "IM0.1MA0.10.9PbI3", + "MAPb1.0Br0.33I2.66", + "Cs0.2FA0.8Pb0.5Sn0.5I3", + "MACa0.05Pb0.95I3", + "FAPbI3 | CsPbI3", + "Cs0.05FA0.7885MA0.1615PbBr0.45I2.55" + ] + } + } + ] + }, + "name": "composition_long_form", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Literature", + "Solution composition | XRD", + "TEM", + "XPS", + "Solution composition", + "Solution composition | Solution composition", + "EDX", + "Experimental verification", + "XRD" + ] + } + } + ] + }, + "name": "composition_assumption", + "description": "The knowledge base from which the perovskite composition is inferred. Is the assumed perovskite composition based on the composition of the precursor solutions and the assumption that the final perovskite will have the same composition (i.e. Solution composition), or is it based on literature claims (i.e. Literature) or has it been experimentally verified with some technique, e.g. XRD, EDX, XRF, etc.?", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "composition_inorganic", + "description": "TRUE if the perovskite does not contain any organic ions.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "composition_leadfree", + "description": "TRUE if the perovskite is completely lead free.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "4-Aminophenyl Boronic acrid; Cl", + "FABr", + "BMImI; LiI; L-iTFSI", + "Cl; Phosphatidylcholine", + "PLMF", + "Cl | ZnCl2", + "DACl", + "CH3CONH2", + "rGO-g-Ptet", + "(PEY)2PbI4", + "oxo-G/DA", + "MEH-PPV; TBP", + "PbI2-bipyridine", + "1,10-diiododecane; Cl", + "AA; Cl", + "NiI2", + "Benzenamine hydrochloride", + "BrPh-Thr; bis-PCBM", + "HCOOH", + "OctAm", + "CsPbI3", + "CH2CHCH2 (CC2)-ionic liquid", + "Polyethylenimines (PEIs), MW 600", + "EP-PDI", + "EtOH; MA", + "EDACl2", + "Cl; PTAI", + "bis-DMEC60", + "DMF", + "CuBr", + "Cl; PEO", + "Tb", + "ILPF6", + "KIPIG-500", + "Cl; K; Sn", + "1\u2010methyl\u20103\u2010(1H,1H,2H,2H\u2010tridecafluorooctyl)\u2010imidazolium iodide", + "SCN; SnF2", + "Cl; PbS-np", + "NbF5", + "PbF2", + "PEI", + "n-butyl amine", + "Cl; MDACl2", + "NaI", + "PF-0", + "Cl; DPE", + "methylammonium hypophosphite; L-\u03b1-phosphatidylcholine; PEABr", + "PVDF", + "SrI2", + "Starch", + "P(VDF-TrFE)", + "C8Br; Cl", + "GU(SCN)", + "PCBB-OEG", + "C4H10INO2; Cl", + "ITIC", + "NH4I", + "Carbazole-C4", + "Polystyrene", + "CsAc", + "BMIm", + "SCN", + "FACl; SnF2", + "BaAc2", + "PMM", + "1\u2010butyl\u20103\u2010methylimidazolium bromide", + "RbBr", + "PVAm.HI", + "C16H36BrN", + "PPC", + "organicD\u2010pi\u2010A", + "p-phenylenediamine", + "Pyrrole", + "TPA", + "Cl; CNT-NH2", + "Cl; CuI", + "Cl; CuPc(tBU)4", + "HPbI3 | Cl", + "Undoped | Undoped", + "1,4-dibromobutane; Cl", + "CuBr2; RbI", + "PABA\u2219HI", + "PPAI", + "In; Br", + "Cl; Spiro", + "Rubrene", + "PbAc2; H2O", + "PCBM-60", + "Ni", + "Ag", + "CuBr2; CsI", + "EDA; SnF2", + "ASCl; Cl", + "Cl; SrCl2", + "Mg", + "1,8- Diazabicyclo[5.4.0]undec-7-ene", + "Melanin", + "HoNH3Cl", + "MACl, NMP | Undoped", + "AsI3 | NH4Cl", + "Cs", + "Isatin-Cl", + "KSCN", + "TPE-DPP4", + "Phenylammonium; HI", + "DCL97", + "MoS2", + "PPS", + "P25", + "MABr; MACl", + "1\u2010butyl\u20103\u2010methylimidazolium iodide", + "Caprolactam", + "Cl; Urea", + "BAOAc", + "AgI", + "TEP", + "Cl; EAI", + "CSA", + "HPA; Pb(AcO)2", + "InCl3", + "DMA", + "C60", + "HI; HBr", + "Cl; PNVF\u2013NVE", + "Phosphonic acid", + "BAI", + "Aminobenzonitrile", + "C3N5", + "MAPbBr3-QDs", + "Cl; Cu(Tiurea)I", + "Cl; Hypophosphorous acid", + "MPTS; Cl", + "Imidazole", + "Cl; I2", + "C60; PMMA", + "(adamantan\u20101\u2010yl)methanammonium; HI", + "Hl", + "UiO", + "ABA", + "Cl; PCBM", + "PEG-[60]fullerenes", + "p-Si-np", + "5-AVAI; CuSCN", + "Cl; Formamidineacetate", + "HMTA", + "Cl; NH4Cl; CuBr2", + "Acetate; HPA", + "Pb(OAC)2", + "Urea", + "Cl; Thiourea", + "MgI", + "FeOOH-QDs", + "ZnI", + "C3H7NH3I; Cl", + "FAAc", + "TBA", + "L-alfa-phosphatidylcholine", + "NaOAc", + "Co(Ac)2", + "CPTS; Cl", + "(SnF2(DMSO))2", + "PEA2PbI4", + "RbI", + "Polyethylenimines (PEIs), MW 70000", + "PTAA", + "2\u2010(6\u2010bromo\u20101,3\u2010dioxo\u20101H \u2010benzo[de ]isoquinolin\u20102(3H )\u2010yl)ethan\u20101\u2010ammonium iodide", + "Hexamethylphosphoramide", + "CsPbBr3-np", + "Cl; PEG-NH2", + "DRCN5T", + "Carbonnanowalls", + "HaHc", + "Diethylamine hydrochloride", + "PEO", + "Mn", + "Hexylamine hydrochlorid", + "C6Br; Cl", + "NMP", + "poly(ethyleneimine); Carbon-nt", + "b-PEI; Cl", + "Ti", + "Sr", + "PbCl2; KCl", + "MACl", + "1,4-diiodobutane; Cl", + "BYK333", + "BP-QDs", + "C6H14INO2; Cl", + "exMMT", + "Spiro", + "Lead acetate", + "CEA", + "Cl; Au-CZTS", + "PbI2", + "Methylpyrrolidone", + "H2P2O6", + "C-PCBOD", + "IEICO-4F", + "GaAA3", + "beta-cyclodextrin", + "n-butyl amine; Cl", + "P123", + "tetra-tert-butyl-metal free phthalocyanine", + "PEG; Cl", + "HMImCl", + "Pb(DDTC)2", + "EDAl2; SnF2", + "Anilinium Iodide", + "MA(SCN)", + "PS; PMMA", + "5-AVAI; PCBM-60", + "E-g-C3N4-np", + "D-alanine", + "Acetate", + "YD2-o-C8", + "4-ABPACl", + "PDMAI", + "PVA", + "FIm", + "3-Aminophenyl Boronic acrid; Cl", + "Polyethyleneglycol; Polyvinylpyrrolidone", + "EtOH; H20; Pb(SCN)2", + "Polyurethane", + "1-butyl-4-amino-1,2,4-triazoliumiodine", + "CuSCN", + "DPSI", + "Glycine", + "GUBr", + "p-CH3OC6H4; p-t-BuC6H4", + "MA", + "Nd", + "Cl; TPPI", + "MACl, NMP", + "GAI", + "Er", + "ZnPc", + "Pb(CH3CH2COO)2", + "Tetracyanoquinodimethane", + "PPA", + "KIPIG-600", + "PTS | Cl", + "Piperazin; SnF2", + "CH2I2", + "Cl; Liquid crystals", + "MOF", + "CuBr2; NaI", + "YbAc3", + "NiCl2", + "Butylammonium iodide", + "Cl; INIC2", + "TTABr", + "HI; PEAI", + "Melaminium iodine", + "Lysine", + "Yttrium", + "MAPbI3-QDs", + "DMBI-2-Th", + "1,3:2,4-di-O-dimethylbenzylidene-d-sorbitol", + "Ag@SiO2-nw", + "Poly(styrene-co-butadiene)", + "E2CA", + "Cl; MAH2PO2", + "KIPIG-550", + "Benzoic acid hydroiodide", + "Cl; DRCN5T", + "Guanidinium", + "5-AVAI; Formamide", + "Guanidinium-SCN", + "SA-2", + "1-ethyl-4-amino-1,2,4-triazoliumiodine", + "SnCl2", + "1,6-diaminohexane dihydrochloride", + "DOI", + "CaI2", + "Cl; DIO", + "CNDs@K", + "Cl; CsF", + "PCBPEG-4k", + "CdI2", + "CsPbBr3", + "TPPCl", + "Cl; DMF", + "APSA", + "1\u2010butyl\u20103\u2010methylimidazolium chloride", + "Cl; PEI", + "pyr-fullerene", + "tetrabutylammonium chloride", + "DMBI-2-Th-I", + "Sm(acac)3", + "CH3I; Cl", + "Rb", + "PAI", + "SrCl2 | MACl", + "ZnO-np", + "NiO", + "MACl; poly[9,9-bis(3\u2032-(N,N-dimethylamino)-\npropyl)-2,7-fluorene)-alt-2,7-(9,9-dioctylfluorene)]) (PFN-P1) in chlorobenzene; PFN-P2 (in ethanol", + "OTG1", + "DF-C60; SnF2", + "PF-1", + "Undoped | Mn", + "BiI3", + "Li", + "MABr", + "PbCl2", + "MACSN", + "TBAI3", + "HATNA", + "IBr", + "MXene", + "AuAg@SiO-np", + "Cl; H2O", + "P(EO/EP)", + "Protic ionic liquid", + "Cl; HI", + "Cl; InCl3", + "5-AVAI; HBF4", + "Formamide; PEA", + "Li-TFSI; TBP", + "AVAI", + "Cl; Cu:NiO-np; Graphite", + "MOF-525", + "Rb; Thiourea", + "Li-TFSI; LiF; TBP", + "DMAI", + "NMA", + "SQ63", + "Cl", + "NH4Ac", + "1,8-octanedithiol", + "Hydrazinium chloride; SnF2", + "Butylamineiodide", + "FAI", + "tetra-tert-butyl\u2011silicon phthalocyanine bis(trihexylsilyloxide)", + "S-Carbon-nt", + "HPbI3", + "NaF", + "BCP", + "DETAI3", + "H2O; Pb(SCN)2", + "Cl; TBAB", + "C6H5C2H4NH3", + "Diphenylidonium hexafluoroarsenate; PCBOD", + "NO3", + "Eu", + "Butanediaminedihydroiodide", + "PEACl", + "PbAc", + "FU11", + "Phenylethylammonium iodide", + "rGO-g-PDDT", + "Ag-nw", + "Graphdiyne", + "Chitosan", + "H2O; KI", + "C4F8I2", + "1-ethylpyridinium chloride", + "SWCNTs", + "CNT", + "DMEC60", + "J71", + "MACl; PbBr2", + "2Ph-ox", + "NEP", + "LiBr", + "4-fluorophenylethylammine", + "1-octyl-4-amino-1,2,4-triazoliumiodine", + "PCBM-70", + "PMPS", + "DMI", + "Diiodomethane", + "PEOXA", + "InCl2", + "Yb", + "PDAI", + "CuI2", + "MAAc", + "SrCl2", + "Side-chain liquid crystalline polymer (SCLCP)", + "SnF2; TMA", + "Cl; I3", + "A43", + "K; Rb", + "Al; Cl", + "OTG2", + "methylammonium hypophosphite (MHP); L-\u03b1-phosphatidylcholine (LP); 1,3-diaminopropane (DAP)", + "BEA", + "TiO2-np", + "Acetic acid; HCl; n-propylamin; Pb(Ac)2", + "C4Br; Cl", + "C60-PYP", + "Ethane\u00ad1,2\u00addiammonium", + "Pb(NO3)2", + "ASA", + "CB", + "Li-TFSI", + "BiFeO3-np", + "Carbon-np; Urea", + "PE10", + "GA", + "BTA; SnF2", + "methylammonium hypophosphite; L-\u03b1-phosphatidylcholine; PEACl", + "TMA", + "SnF2", + "CuCl; PbCl2", + "Poly(amicacid)", + "Cl; RbBr", + "PbC2O4", + "Thiourea", + "LiI", + "Graphdiyne-QDs", + "terephthalonitile", + "As; NH4; Cl", + "FACl", + "NH4Cl; DMSO", + "Cl | nan", + "Acetonitrile", + "2-(1H-pyrazol-1-yl)pyridine", + "GITC", + "TDZT", + "HCl", + "N-methyl-2-(3,5-bis(perfluorooctyl)phenyl)-3,4-fulleropyrrolidine", + "MAPbBr3", + "SmI2; SnF2", + "HI; Mercapto-tetrazolium", + "TiI2", + "GuaI", + "Cl; PEG", + "Carbon-nt-g-P3HT", + "Cl; Fe(acac)3", + "NaYF4:Yb:Er-np", + "5-AVAI; Cl", + "CsBr", + "Hydrophosphoric acid; rGO; PbAc2", + "N-Carbon-QDs", + "MAH2PO2", + "PTMA-H; Rb", + "F127", + "Black Phophorous", + "GeI2", + "PCBM-60; PbF4", + "GuCl", + "L-\u03b1- phosphatidylcholine", + "CsPbBrCl2-QDs", + "Ag-NPs", + "2-pyridylthiourea", + "EtOH", + "1-Donecyl Mercaptan", + "Au@Ag@SiO2-np", + "PFPA", + "PbS-QDs-AI-ligand", + "DIO", + "H2PO3", + "Cl; ZnO-np", + "Polyimide", + "EDAI2 | SnF2", + "NaCl", + "CsPbr3", + "I3", + "EDA", + "CH3SH", + "Cl; IPFB", + "Ti3C2Tx", + "Methylammonium formate", + "MACl; PFN-P2 (in ethanol", + "Cl; NH4Cl", + "Cl; NH4Br", + "HPbI3; PTABr", + "tetra-tert-butyl\u2011germanium naphthalocyanine bis(trihexylsilyloxide)", + "PE", + "NH4SCN", + "Phenylethyl-ammonium iodide", + "Acetamidine hydrochloride", + "Polythiocyanogen", + "Cl; Guanidinium", + "3,4-dihydroxybenzhydrazide; MACl", + "KCl", + "Sm", + "CH2CCH (CC3)-ionic liquid", + "GASCN", + "TBAI; Cl", + "Cl; HCOOH", + "Octoxynol", + "PEA5", + "Cl; Formamide; Guadinium", + "n-BAI; Rb", + "5F-PCDM-60", + "CuI; PbCl2", + "Au@TiO2 NPs", + "TOPO", + "Cl; Cu(thiourea)Cl", + "PbF4", + "M13 bacteriophage", + "OAc", + "PVC", + "EAPP", + "CH2O2; SnF2", + "SbCl3", + "n-Si-np", + "Trimesic acid", + "CsCl", + "Acetate; SrI2", + "N-cyclohexyl-2-pyrrolidone", + "DPP-DTT", + "Hydrazine", + "KHQSA", + "Butylated hydroxytoluene", + "RbI; KI", + "Acetate; HAc", + "Ethyl cellulose; Cl", + "Cl; TBAC", + "C2H6INO2; Cl", + "FeI2", + "4-MSA", + "t-BAI", + "Cu", + "1,2,4-triazole", + "Zn", + "KBr", + "3F-PCBM-60", + "Cl; Eu(acac)3", + "Cl; Cu(thiourea)I", + "TDZDT", + "Acetate; Cl", + "Polyvinylalkolhol", + "Agarose", + "Cl; KI", + "PMA", + "3BBAI; Cl", + "Thenolytrifluoroacetone", + "Cl; PCBM-60", + "Cl; PCBM-60; PEG", + "HBr", + "MLAI", + "5-AVAI", + "PVDF-HFP", + "Cl; HI; KOH", + "D3", + "Cl; KBr", + "Cl; PNVF-NVEE Microgels", + "PVA; SnF2", + "Undoped", + "C6F5I", + "PTAI", + "Cl; EA\u06f0HCl", + "Rb; SrI2", + "g-C3N4", + "Carbon", + "DEACl", + "MAI", + "EACl", + "C3A; PEA", + "THTO", + "Acetate; H2O; Hypophosphorous acid", + "Adipic acid; Cl", + "3-aminopropyl (3-oxobutanoic acid) functionalized silica nanoparticles; Cl", + "OA; ODE; OLA", + "D1", + "CHP", + "SA-1", + "Ethylene\u2010diammonium; SnF2", + "1,8-dibromooctane; Cl", + "GN-GQDs", + "BMImI; LiI", + "ZnI2", + "h-TAc", + "F4-TCNQ", + "A10C60", + "Ca", + "Ag; Cl; rGO", + "Cl; HBr", + "PEABr", + "MQW", + "Cl; NO3", + "Mn; Cl", + "PDMS", + "H2O; KCl", + "Cl; MAAc", + "BMIMBF4", + "C60(QM)2", + "PMMA; PbCl2", + "H3PO2; Acetate", + "PANI", + "Acetic acid", + "Al2O3-np", + "PC", + "Ce", + "PEG", + "Caffeine", + "SQ45", + "3-phenyl-2-propen-1-amine iodide", + "HBr; Hi", + "SQ81", + "MnCl2", + "Monoammonium zinc porphyrin", + "1,8-diiodooctane", + "BMImI", + "Cl; DMSO", + "Cl; DL-tartaricacid", + "CDTA; SnF2", + "ThMAI", + "I", + "TPPi", + "Imidazolium", + "FEAI", + "1-hexyl-3-methylimidazoliumchloride; HMImCl", + "EuCl3", + "Octylammonium iodide", + "CHCl", + "Dithizone", + "4-vinylbenzylammonium", + "H2O; TEOS", + "Cl; Formic acid", + "iPAI", + "1,3-diaminopropane", + "p-phtalic acid", + "Cl; NH3SO3", + "Lu", + "H2O; Ti3C2Tx", + "Cl; TBPI", + "Cl; NiO-np", + "Rhodanina", + "CH3COCHCOCH3", + "MAOAc", + "Cl; SDS", + "Cu:NiO-np", + "SP-3D-COF 2", + "CU(SCN)", + "Cl; ITIC", + "Cl; PEDOT:PSS", + "PbAc2; PbCl2", + "PAA", + "Carbon-np", + "alfa-cyclodextrin", + "Eu-pyP", + "MWCNTs", + "TSC", + "Cl; Diiodooctan", + "CsBr; Cl", + "BHT", + "Unknown", + "SbBr", + "Cl; HCl", + "PbS-QDs-MAI-ligand", + "N2H5Cl", + "Si-nc", + "Octylammonium", + "1-hexyl-3-methylimidazoliumchloride", + "PMMA; Rb", + "CH3NH2", + "4-(1H-imidazol-3-ium-3-yl) butane-1-sulfonate", + "ligands", + "N-methylimidazole", + "DIFA", + "Formamide", + "Styrene", + "YbCl3", + "K", + "MeO-PEAI", + "BrPh-ThR", + "OA; OLA", + "SnF2; Uric Acid", + "SnCl", + "Cl; TBP", + "tetra-ammonium zinc porphyrin", + "Ho", + "Graphene", + "Carbon-nt-g-PDDT", + "PFPAI", + "Graphitic carbin nitride (g-C3N4)", + "Cl; PAA", + "TEOS", + "Cl; KCl", + "Carbon-nt", + "F-PEAI", + "J61", + "Ethyl cellulose", + "Ethyleneglycol", + "Citric acid; Cl", + "Cl; Pb(SCN)2; SnF2", + "D2", + "pyP", + "In", + "dimethyl itaconate", + "GdF3", + "BAI; PEG", + "Formic acid", + "Cl; PCDTBT", + "Nb", + "GABr; Pb(SCN)2", + "APPA", + "H2O", + "Ag@SiO2", + "NH4Br", + "gamma-cyclodextrin", + "Ba", + "PEAI", + "J51", + "N2200", + "DNA", + "TiO2-nw", + "A@SiO2-np-nw; Cl", + "Graphene-nanofibers", + "Methylamine", + "G-NH2", + "BaCl2; Cl", + "GASCN; MACl", + "SnF2; TFEACl", + "Polyacrylonitrile", + "Acetic acid; Cl", + "La", + "LFA", + "[BMMIm]Cl", + "PCBPEG-20k", + "B-alanine", + "NH2CONH2", + "P(VDF-TrFE-CTFE)", + "Polyvinylbutyral", + "Graphene oxide", + "EAI", + "C70", + "C4H8I2", + "Cesium phenethyl xanthate", + "NH4Ac2", + "Benzylamine hydroiodide", + "LiCl", + "FPEAI", + "GuaSCN; SnF2", + "PbS-np", + "Hydroquinone", + "CuI", + "enI2; SnF2", + "Cl; PbS", + "PMMA", + "H2O; KBr", + "HC(NH2)2I\u2013NaI", + "PbC2N2S2", + "g-CN", + "1,8-octanedithiol; Cl", + "Cellulose-CDHC", + "HMPA", + "rGO-g-P3HT", + "Cellulose-HEC", + "Gd", + "NaSCN", + "NH4Cl; NH4SCN", + "PA", + "TACl", + "I2; Thiourea", + "CsPbBr3-nw", + "Benzene\u20101,4\u2010diboronic acid; Cl", + "methylammonium hypophosphite; L-\u03b1-phosphatidylcholine", + "MABF4", + "Co", + "BA; HI; HBr", + "Cl; PVP", + "IPA HCl", + "CaCl2", + "F-N2200", + "CuCl2", + "Ag; Cl", + "TCA", + "TBP", + "CuBr2; KI", + "Cl; CuSCN", + "Benzoquinone", + "KI", + "Al2O3-np; Cl", + "Isobutylamine hydroiodide", + "Graphene-QDs", + "MAPbCl3", + "2,9,16,23-tetra-tert-butyl-29H,31H-phthalocyanine", + "Formamide; Guadinium", + "Bi", + "Cl; Y", + "NiO-np", + "GuI", + "1,8-diiodooctane; Cl", + "SP-3D-COF 1", + "Cl; Cu", + "rGO", + "HBr; HI", + "HA", + "OAm", + "Cl; Graphene", + "Nano-carbon", + "HAc", + "PEA20", + "ACN", + "Hypophosphorous acid", + "Cl; TPPCl", + "IPFB; PbCl2", + "CsPbBr-np", + "MgAc", + "PEA0", + "In2-6", + "FPEAI; Mn", + "Cl; Y(acac)3", + "Cl; NH4I", + "ZnCl2", + "CsI", + "TiO2", + "Polyethylenimines (PEIs), MW 10000", + "Diiodooctane", + "PbS-QDs", + "Phenylethyl ammonium iodide", + "3-(5-Mercapto-1H-tetrazol-1-yl)benzenaminium iodide; HI", + "CdS; Cd(SCN2H4)2Cl2", + "PbAc tri-hydrate; H3PO2", + "MA3Bi2Br9", + "BmPyPhB", + "Ag-rGO; Cl", + "CdS", + "Cl; DMA", + "Methimazole", + "2-Phenylethylamine Hydroiodide", + "Ba; Cl", + "BAI; GAI", + "Az", + "Cl; C-PCBSD", + "Diethylammoniumchloride; PCBM-60", + "hypophosphorous acid", + "CH2CN (CN)-ionic liquid", + "ITIC-Th", + "PbCl2; Phenol", + "False", + "Br", + "Cl; NAP 1-(3-aminopropylpyrrolidine)", + "Cd", + "Carbon-QDs", + "PTMA; Rb", + "Cl; DTA", + "g-CNI", + "Sn", + "PCBM-nw", + "5-AVAI; Acetamide", + "Cl; CZTS", + "MnCl2; ZnCl2", + "Cl; MA", + "Cl; SCN", + "ITIC; PCBM-60", + "NH4OAc", + "NH4Cl; SnF2", + "Au-np", + "TMS", + "PVP", + "Cl; MoOx-np", + "NaAc", + "Benzoicacid", + "FAOAc", + "Tea Polyphenol", + "Cl; Sr", + "Carbon-nt; PDDT", + "DOI; PbCl2", + "Nickel phtalocyanine", + "OAI", + "5-AVAI; Urea", + "n-butylammoniumbromide", + "en; SnF2", + "PbCl2; Phosphatidylcholine", + "NH4Cl", + "CQD", + "Pb(OAc)2", + "Levulinic acid", + "EC", + "PbSCN2", + "KI; I2", + "In2-4", + "NH4BF4", + "EDEA", + "Hydrophosphoric acid; PbAc2", + "Graphdyine", + "TOAB", + "OTAB", + "Pb(SCN)2; SnF2", + "Diethylammoniumchloride", + "Tetraethylorthosilicate", + "trihydrazine dihydriodide (THDH)", + "DA2PbI4", + "Cl; DL-lacticacid", + "l-alfa-phosphatidylcholine; Methylammoniumhypophosphite; NH4Cl", + "HI | Undoped", + "Graphdiyne QDs", + "Lead acetate trihydrate", + "PEAI; SnF2", + "BE2PbI4", + "Cl; FAH", + "ABS", + "PbCl2; TBP", + "PS", + "CsI; OIH", + "J50", + "NH4F", + "acac; Cl", + "3DHG", + "BA", + "PEA; SnF2", + "Pb(Ac)2", + "OTG3", + "NH4H2PO2", + "PEA", + "Eu(Ac)3", + "Acetate; H2O", + "1-allyl-3-methylimidazolium chloride", + "H3PO2", + "EE", + "NO3-C3N4", + "Cl; MWCNTs", + "BCP; Cl", + "Zr(AC)4", + "Terephthalic acid", + "SnS-QDs", + "1-benzyl-3-methylimidazolium chloride", + "Sb", + "Cl; TPPBr", + "di-iodomethane", + "NH4", + "ZnAc2", + "Ethylenediammonium", + "Cl; DL-malicacid", + "Thiosemicarbazide", + "Guanidinium; HI", + "ETI", + "Phosphonic acid; Aluminium acetylacetonate", + "1,3:2,4-di-O-methylbenzylidene-d-sorbitol", + "CH3CH2COO", + "SbI3", + "SnBr2", + "xDMAI", + "Cl; SrAl2O4:Eu2+:Dy3+", + "CuBr; PbCl2", + "MACL", + "Cl; SnF2", + "PTN-Br; SnF2", + "SnI2", + "bis-PCBM", + "HI", + "BMII", + "HPA", + "In2-2", + "Poly(diallyldimethylammoniumchloride)", + "Cl; K", + "I2", + "ME", + "Pyrazine; SnF2", + "DPPS", + "Ascorbic acid", + "PbAc2", + "CuBr2", + "IDTBR", + "PbCl2; PbAc2", + "Cl; ICBA", + "Carbon-nt; P3HT", + "P(VDF-TrFE-CFE)", + "BaI2", + "ALAI; Cl", + "TMTA", + "Formamidinium chloride; formamidinium hypophosphite; Phenylethylammonium chloride", + "DMSO", + "NaYF4:Tb:Er-np", + "Cl; NH4Cl; CuBr", + "PTB7", + "SnF2; PMMA", + "Pb(SCN)2", + "l-alfa-phosphatidylcholine; Methylammoniumhypophosphite", + "DAGCl", + "1-chloronaphthalene; Cl", + "Acetate; HCl", + "CdCl2", + "Cl; V2Ox", + "Cl; IEICO-4F", + "1-chloronaphthalene", + "C70; Cl", + "a-Ge; Cl; H-np", + "methylammonium hypophosphite; L-\u03b1-phosphatidylcholine; PEAI", + "C4H9NH3I; Cl", + "C-PANI", + "MAI; FACl", + "PU", + "TFBA" + ] + } + } + ] + }, + "name": "additives_compounds", + "description": "List of the dopants and additives that are in the perovskite\n- If the perovskite is layered (e.g. 3D perovskite with a 2D caping layer), separate the layers by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If several dopants/additives, e.g. A and B, are present in one layer, list the dopants/additives in alphabetic order and separate them with semicolonsas in (A; B)\n- If no dopants/additives, state that as \u201cUndoped\u201d\n- If the doping situation is unknown, stat that as\u2018Unknown\u2019\n- Include any non-solvent that does not go into the perovskite structure. This includes compounds that are found in secondary phases, or amorphous grain boundaries, or that disappears during synthesis.\no One example is Rb in MAFAPbBrI-perovskites. As far as we know, Rb does not go into the perovskite structure, even if that was believed to be the case in the beginning, but rather form secondary phases. For MAFAPbBrI-perovskites, Rb should thus not be considered as a A-site cation, but as a dopant/additive.\no One other example is chloride in MAPbI3. As far as we know, Cl does not go into the perovskite structure even if that was believed to be the case in the beginning. For MAPbI3 Cl should thus not be considered as a C-site cation, but as a dopant/additive.\nExample\nCl\nUndoped\n5-AVAI\nSnF2\nAg; Cl; rGO\nRb", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.25 wt%", + "0.125", + "0.225", + "24 mg/ml", + "0.025; nan", + "0.35", + "2 %; 0.1 %", + "0.66; 0.0875", + "2", + "0.0775", + "0.005", + "0.0207", + "0.05 %", + "0.1 M; 10 wt%", + "5 vol%", + "0.1 mol", + "0.005 M", + "0.057", + "0.003; nan", + "6 mol%; 10 mol%", + "0.22", + "0.6 mg/ml; nan", + "nan; 1", + "3.7 wt%", + "0.36", + "0.099", + "nan; 8 mol%", + "0.6 vol%", + "0.03 M", + "5.6 vol%; nan", + "2.6", + " PEG", + "2.5 wt%; 0.5 wt%", + "0.1666666666666667", + "0.03125", + "0.035; 1.5 vol%", + "0.002 mg/ml", + "8 %; 4 %33%", + "0.0003 mmol/ml", + "0.3 vol%", + "3.3 %; nan", + "2.5 vol%", + "0.2 mol%; 10 mol%", + "0.18", + "0.0001 mol%", + "0.01 mol%", + "0.515 M", + "0.07", + "20 \u00b5mol/ml", + "2.5 wt%; 1.5 wt%", + "0.9 wt%", + "0.006", + "0.5 mg/perovskite_mmol", + "30 mmolL-1", + "0.000525", + "2.5 wt%; 0.25 wt%", + "0.321; 0.009", + "0.05", + "2.4", + "0.00167", + "nan; 5 %", + "0.4 wt.%", + "0.05 wt%", + "6.4", + "1.05", + "0.04; 0.17", + "0.0125", + "0.3 mg/perovskite_mmol", + "2.5 wt%; 0.35 wt%", + "8", + "0.084", + "10 vol%", + "0.05 %; nan", + "0.0001 mmol/ml", + "0.035; 3 mg/ml", + "0.0007", + "0.03; 0.02", + "0.0625 \u202c", + "1.0", + "0.14", + "10 wt%", + "0.16; 0.5", + "60 mol%", + "nan | 20 mg/ml", + "0.00068", + "nan | 13 mg/ml", + "nan; 4 mol%", + "0.02", + "1.2 mg/ml; 20 mg/ml", + "nan | 27 mg/ml", + "0.0003", + "0.333; 0.009", + "3.9 vol%", + "0.4; 0.01", + "0.7", + "0.9 mg/ml; 15 mg/ml", + "6 mol%; 20 mol%", + "0.05; nan", + "0.66; 1", + "0.04; 0.0015", + "nan; 0.66 %", + "0.034; 0.034", + "3 mg/ml; nan", + "15; 10", + "50 mg/ml; 1 mg/ml", + "0.3 mg/ml", + "6.8 e-05", + "0.03 mM; 0.09 mM", + "0.048", + "1.2 M", + "0.312; 0.018", + "3 mg/ml", + "0.0005 mmol/ml", + "0.005 wt%", + "4.5", + "0.1 vol%", + "nan; 0.0125", + "60 mol% | 6 mg/ml", + "nan; 0.0166 %", + "0.336", + "150 mol%", + "12 wt%", + "10 %; 7.5 %", + "nan | 5 mg/ml", + "4 mg/ml; nan", + "3 %; nan", + "0.9 mM", + "30 mM", + "0.03 vol%", + "12.8", + "10 ppm", + "0.089 mg/ml", + "0.5 wt%", + "10 g/ml", + "0.06 mg/ml", + "0.13 wt%", + "0.028; nan", + "2.5 %; 10 %", + "nan; 1.0", + "0.1; 0.15", + "15 %; 7.5 %", + "8.0", + "nan; 1 wt%", + "23 mol%", + "0.006; 0.05", + "6 mg/ml", + "nan; 1 mg/ml", + "15 mg/ml", + "0.262 M", + "0.02 M", + "nan; 20 %", + "0.09", + "0.45", + "0.016", + "1 ppm", + "7 mol%", + "0.333", + "5 mg/ml; nan", + "0.0085", + "0.5 wt.%", + "0.09375", + "0.15 wt%; 0.05 wt%; 0.42 mol%", + "5 mol%; 20 mg/ml", + "2.0 wt%", + "50 mol%", + "5 wt%", + "50", + "5 %; nan", + "2 wt.%", + "4 mg/ml; 4 mg/ml; 4 mg/ml", + "2.3", + "0.05 M", + "0.03", + "0.0034", + "16 vol%", + "15 wt%", + "0.01 ug/ml", + "2.5 wt%; 0.3 wt%", + "nan; 0.02", + "0.10 wt%", + "nan | 0.05 mol%", + "6 mM", + "50 vol%", + "8 mol%", + "0.66; 0.08", + "0.1 mol%", + "1.3", + "0.035; 30 mg/ml", + "1.2 wt%", + "0.5; 0.5", + "12 mM", + "0.00075", + "3.5 m%", + "12 mg/ml", + "0.0175", + "4 \u00b5mol/ml", + "5- AVAI", + "12.5 wt%", + "0.042", + "18 mM", + "5 %; 0.1 %", + "0.6 mg/ml", + "3.3 vol%", + "0.6 wt%", + "0.097 mol%", + "0.5 %; nan", + "0.66; 0.075", + "0.0026344676180021956", + "nan; 10 mg/ml", + "0.05 vol%", + "4 mg/ml", + "nan; 9 mM", + "0.5 M", + "0.0004", + "nan; 114 mM", + "0.05; 0.15", + "1.5 %; 6 %", + "0.3 M", + "20 mg/ml", + "0.04; 0.003", + "100 ppm", + "7 mg/ml", + "nan; 1 %", + "nan; 0.1 mg/ml", + "nan | 0.1 mol%", + "2.5 wt%; 0.2 wt%", + "6 \u00b5mol/ml", + "7.5 mol%", + "0.018; nan", + "0.5 vol%", + "0.08", + "2 wt%", + "0.04 %", + "0.025", + "10 mmg/perovskite_mmol", + "nan; 0.033 %", + "nan; 0.2 mg/ml", + "0.014 mol%", + "0.3", + "12.5", + "0.59 uM", + "0.12", + "0.0285 vol% | nan", + "0.0076", + "0.015 M", + "0.06", + "10 %; 20 %", + "nan; 0.015", + "1 e-05", + "6 wt%", + "0.10; 0.01", + "75 vol%", + "10 mg/ml", + "0.4 mg/ml", + "nan; 0.15 %", + "0.25 mM", + "5.69 vol%", + "3.5 vol%", + "0.75; nan", + "0.66; 1; 0.0075", + "nan; 2 mg/ml", + "nan; 0.33 %", + "nan; 0.00166 %", + "0.0125; 0.05", + "1.35", + "8 %; nan", + "1000 ppm", + "16.67 %; nan", + "2.5 wt%; 0.1 wt%", + "0.08 mg/ml", + "0.125; 20 mg/ml", + "nan; 0.0075", + "2.5", + "90 mol%", + "nan; 2 wt%", + "1.5 mol%", + "2 mg/mlantisolvent", + "25 mg/ml", + "0.0011", + "0.15; 0.15", + "0.0015", + "20 vol%", + "nan; 4 %", + "15 mol%; 10 mol%", + "0.075; nan", + "6", + "1.25; nan", + "nan; 2", + "0.35; 0.019", + "0.02; 0.03", + "0.4 mM", + "50 mg/ml; nan", + "8 vol%", + "5 %; 7.5 %", + "0.3 mol", + "0.006; nan", + "0.25", + "nan; 18 mM", + "2.5 mg/ml", + "0.09; nan; nan", + "1 wt%; nan", + "2 vol%", + "0.01 | 0.1", + "nan; 1.5", + "nan | 0.2 mol%", + "0.017", + "0.01 vol%", + "7.5", + "0.009", + "13.7 mg/ml", + "0.027", + "0.25; 0.04", + "0.15; 0.15; 0.004", + "6.67", + "30 wt%", + "nan; 0.005", + "1.0 wt%", + "1 %; 0.1 %", + "0.48 mg/ml; nan", + "5 mol%", + "0.067 mol%", + "nan; 36 mM", + "0.9", + "nan; 0.5", + "0.011", + "0.035", + "0.4 wt%", + "0.004", + "0.33; 0.33", + "6 %; nan", + "0.04; 0.0001875", + "nan; 0.025", + "nan; 0.05", + "100 mol%", + "nan; 5 mol%", + "0.75; 0.25", + "20 uL", + "0.0375", + "1.67 mol%", + "0.14 M", + "3 wt%", + "0.01; 0.05", + "4 %; nan", + "0.0028", + "0.15; 0.075", + "0.07 wt%", + "1; nan", + "nan | 0.5 mol%", + "0.35; 0.057", + "0.0002", + "nan; 2 %", + "0.8 M", + "3.5 mol%; 10 mol%", + "25 vol%", + "0.04; 0.000375", + "10 \u00b5mol/ml", + "0.15; 0.025", + "0.5 mg/m", + "0.8", + "25", + "9", + "16 mg/ml", + "6 e-05", + "0.5; nan", + "2 mol%; 2 mol%", + "1", + "0.33; 0.003", + "0.064", + "0.6 wt.%", + "5.0", + "0.1; 0.02", + "nan; 3 %", + "0.6", + "0.66; 0.0625", + "0.84 vol%; nan", + "1.25 mg/ml", + "76 mg/ml", + "15 \u00b5mol/ml", + "0.20; 0.15", + "nan | 2.5 mol%", + "nan; 0.54 %", + "0.1 mg/perovskite_mmol", + "12 mg/ml; 12 mg/ml; 12 mg/ml", + "0.2", + "0.24 mg/ml; nan", + "nan; 1.66 %", + "5 mg/ml", + "1 mol%", + "2 mg/ml; nan", + "100 vol%", + "1.5", + "0.33", + "0.00035", + "0.167", + "0.284", + "2.0", + "nan; 9", + "1 mg/ml; nan", + "nan; 1.5 mg/ml", + "0.00067", + "1 e-06", + "5 mol%; 10 mol%", + "nan; 10 mol%", + "0.003", + "0.66; 0.016", + "0.66", + "nan; 72 mM", + "3.5 mol%", + "0.05 | nan", + "0.018", + "12 mg/ml; 12 mg/ml", + "0.0010537870472008782", + "0.4", + "0.0112", + "0.012", + "0.1 mg/ml", + "0.5; 0.16", + "0.26", + "4 wt%", + "0.02 mg/ml", + "nan; 0.54 %; 0.11 %", + "0.034; 0.05", + "2.8 mol%", + "8 mg/ml", + "100", + "0.075", + "0.077", + "0.0615; 0.0185", + "0.764 M", + "nan; 1.5 %", + "8 \u00b5mol/ml", + "0.6 mol%", + "0.25; 0.75", + "0.15", + "0.032", + "2.5 wt%", + "nan; 7 %", + "0.3 mM", + "0.5 mg/mlantisolvent", + "0.014; nan", + "40 mol%", + "nan; 0.25 %", + "0.125 mol%", + "3.6 vol%", + "42.9", + "0.05; 0.1", + "0.5", + "0.46", + "20; 10", + "5.268935236004391 e-05", + "4 mol%", + "nan; 0.03", + "0.0008", + "0.00026344676180021956", + "0.00027", + "3 mol%; 10 mol%", + "0.66; 0.1", + "nan; 0.125 %", + "nan; 3 wt%", + "nan; 0.5 mg/ml", + "0.0075", + "0.3 wt%", + "0.04", + "3", + "3.0", + "3.2", + "2.5 wt%; 0.4 wt%", + "nan; 0.01", + "0.39999999999999997", + "0.3 mg/ml; 5 mg/ml", + "1.009 M", + "3 vol%", + "0.034 mol%", + "0.16666666666666666", + "0.023", + "0.6 M", + "0.333; 0.003", + "0.25 mg/ml", + "0.07 mol%", + "0.03 wt%", + "0.003; 0.05", + "50 mM", + "5; 10", + "nan; 2.5 %", + "0.126", + "2 mg/ml", + "9.6", + "nan; 0.2", + "0.001", + "0.063", + "2.0 mg/ml", + "0.15; 0.05", + "30 mg/ml", + "30 mol%", + "0.21", + "0.05 mg/ml", + "0.05; nan; nan", + "0.5 mol%", + "0.031", + "0.2 mg/ml", + "0.0035", + "0.75.0.01", + "0.01 M", + "0.75 M", + "0.8 mg/ml", + "1 mol%; 10 mol%", + "nan; 4 wt%", + "0.11", + "0.1 mM", + "29 wt%", + "16.67", + "0.66; 0.05", + "nan; 0.75", + "40 wt%", + "0.5 mmol", + "0.01; nan", + "1.4 %5%", + "0.04; 0.00075", + "4.2 vol%", + "1 wt%", + "6.0", + "0.008", + "2 %; nan", + "0.23", + "nan; 0.048 %", + "nan; 0.1 %", + "0.66; 0.04", + "nan; 0.3 mg/ml", + "nan; 4 mg/ml", + "1.5 mg/ml", + "50 mg/ml", + "15 mol%", + "0.67", + "12.5 mM", + "2 wt%; nan", + "5 g/ml", + "2.5 wt%; 3 wt%", + "0.0005", + "1 mM", + "33.3", + "750 vol%", + "nan | 0.0003", + "0.0056", + "1 M", + "15.0", + "6.6 mol%", + "1.00 wt%", + "1 %; nan", + "0.66; 0.01", + "0.000285 mol%", + "25 mol%", + "0.1; 0.005", + "nan; 3 mol%", + "0.17500000000000002", + "0.002", + "0.15000000000000002", + "1.4 vol%; nan", + "2 \u00b5mol/ml", + "2.5 mol%", + "0.10; 0.15", + "0.9 M", + "0.034", + "3 mol%", + "0.1; 0.075", + "33 ul.57wt%", + "1 mg/ml", + "4 vol%", + "0.0005268935236004391", + "0.17", + "0.068", + "75", + "nan; 0.5 %", + "2.21 wt%", + "1.3 %; nan", + "2 e-05", + "0.15 wt%; 0.05 wt%", + "1.4 %; 6 %", + "0.1; 0.1", + "10; 10", + "0.01", + "0.25; nan", + "6 mol%", + "0.028; 0.0003", + "20 wt%", + "0.014", + "0.1", + "5 mol%; 10 mg/ml", + "0.079", + "nan; 4", + "1.5 wt%; 1.0 wt%; 0.15 wt%; nan", + "8 wt%", + "0.28", + "0.13", + "0.033", + "0.8 vol%", + "1.2 wt.%", + "9 mg/ml", + "0.1; nan", + "0.075 wt%", + "8 %; 33 %", + "3 mM", + "10 mol%", + "nan; 2 %; 6 %", + "nan; 10 %", + "0.1; 0.01", + "10.0", + "0.125; 40 mg/ml", + "0.024", + "2.5 wt%; 0.15 wt%", + "0.5 mg/ml", + "2 mol%", + "20", + "0.14 mg/ml", + "0.75 mol%", + "0.00010537870472008782", + "0.1; 0.03", + "0.015", + "1.2 mg/ml", + "0.57", + "7.5 g/ml", + "0.01 wt%", + "9 mol%", + "0.19", + "nan; 0.4 mg/ml", + "0.071", + "350", + "0.35; 0.038", + "200 mol%", + "2.5 mol%; 10 mol%", + "0.14 mol%", + "0.15 wt%; 0.05 wt%; 0.83 mol%", + "4", + "0.1; 0.04", + "0.0068", + "10", + "0.25 mol%", + "0.045", + "20 mol%", + "150 vol%", + "0.15 M", + "0.66; 0.16", + "0.2 wt%", + "0.1; 0.05", + "nan; 5", + "2 %; 2 %", + "1 vol%", + "2.8 vol%; nan", + "0.66; 0.008", + "0.6 mg/ml; 10 mg/ml", + "2.5 g/ml", + "nan; 2.0", + "0.2 mol", + "0.01; 0.04", + "0.375", + "0.001; 0.05", + "12", + "0.055", + "nan | 1 mol%", + "0.1 M", + "0.03; nan", + "1 mg/perovskite_mmol", + "0.03; 0.003", + "0.8 wt.%", + "0.029", + "0.142", + "nan; 0.4", + "0.04 M", + "0.07500000000000001", + "nan; 7", + "0.000175", + "1.6", + "0.0001", + "0.1 wt%", + "0.02; nan", + "7.8 mg/ml", + "10 mol%; 10 mol%", + "1.75 mM", + "1 %; 10 %", + "5", + "0.333; 0.018", + "0.005; nan", + "1.5 wt%", + "0.15 wt%; 0.05 wt%; 1.67 mol%", + "0.15; 0.1", + "0.021", + "0.1 w%", + "60", + "0.005 vol%", + "nan; 0.3", + "0.12 mg/ml; nan", + "0.04; 0.01", + "nan; 0.1", + "0.4; 0.7", + "1.61 e-05", + "3 %; 3 %", + "70 mol%", + "0.02 wt%", + "7.5 W%", + "0.75", + "0.009; nan", + "0.04 mg/ml", + "0.0025", + "2.4 mol%", + "33 mol%", + "1.8 mg/ml", + "0.77" + ] + } + } + ] + }, + "name": "additives_concentrations", + "description": "The concentration of the dopants/additives.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If more than one dopant/additive in the layer, e.g. A and B, separate the concentration for each dopant/additive with semicolons, as in (A; B)\n- For each dopant/additive in the layer, state the concentration.\n- The order of the dopants/additives must be the same as in the previous filed.\n- For layers with no dopants/additives, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used.\n- The preferred way to state the concentration of a dopant/additive is to refer to the amount in the final product, i.e. the material in the layer. When possible, use on the preferred units\no wt%, mol%, vol%, ppt, ppm, ppb\n- When the concentration of the dopant/additive in the final product is unknown, but where the concentration of the dopant/additive in the solution is known, state that concentration instead. When possible, use on the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n5 vol%; nan | 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | 0.3 M", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "90.0", + "446.0", + "325.0", + "50.0", + "220.0", + "520.0", + "137.0", + "180.0", + "45.0", + "167.0", + "668.0", + "387.0", + "191.0", + "540.0", + "353.0", + "515.0", + "233.0", + "601.0", + "354.9", + "560.0", + "461.0", + "1020.0", + "391.0", + "297.0", + "6000.0", + "385.0", + "1800.0", + "107.0", + "212.0", + "95.0", + "0.05", + "760.0", + "551.0", + "274.0", + "70.0", + "447.0", + "573.0", + "500.0", + "306.0", + "275.0", + "1300.0", + "524.0", + "2000.0", + "788.0", + "665.6", + "54.0", + "507.0", + "484.0", + "266.1", + "291.0", + "260.0", + "175.0", + "630.0", + "1410.0", + "267.0", + "283.0", + "455.0", + "240.0", + "615.0", + "303.0", + "150.0 | 200.0", + "3600.0", + "330.0", + "810.0", + "89.8", + "775.0", + "334.0", + "408.0", + "420.0", + "26.0", + "5500000.0", + "85.0", + "321.0", + "1015.0", + "463.0", + "505.0", + "150.0 | 500.0", + "895.0", + "354.0", + "620.0", + "709.0", + "278.0", + "56.0", + "269.4", + "650.0", + "500.0 | nan", + "126.0", + "52.0", + "20.0", + "295.0", + "165.0", + "135.7", + "265.0", + "1400.0", + "287.0", + "372.0", + "685.0", + "1100.0", + "359.0", + "150.0 | 300.0", + "602.3", + "314.0", + "238.0", + "250.0", + "229.0", + "375.0", + "142.0", + "2130.0", + "65.0", + "399.0", + "317.0", + "875.0", + "150.0", + "435.0", + "464.0", + "379.7", + "769.0", + "273.0", + "12000.0", + "610.0", + "363.0", + "965.0", + "880.0", + "247.0", + "244.0", + "50000.0", + "302.2", + "35.0", + "750.0", + "468.0", + "135.0", + "600.0 | 20.0", + "730.0", + "339.0", + "870.0", + "258.0", + "324.0", + "309.4", + "183.0", + "481.0", + "660.0", + "457.0", + "407.0", + "342.0", + "336.0", + "285.0", + "401.0", + "25.0", + "294.0", + "983.0", + "3100.0", + "172.5", + "405.0", + "40.0", + "67.0", + "230.0", + "522.0", + "75.0", + "334.2", + "272.0", + "288.0", + "577.0", + "331.0", + "150.0 | 400.0", + "480.0", + "298.0", + "190.0", + "604.0", + "365.0", + "301.0", + "223.0", + "380.0", + "700.0", + "93.0", + "575.0", + "155.0", + "529.0", + "780.0", + "217.0", + "314.8", + "599.8", + "280.0", + "60.0", + "125.0", + "465.0", + "3370.0", + "40000.0", + "440.0", + "900.0", + "122.0", + "400.0", + "950.0", + "572.0", + "538.0", + "510.0", + "296.0", + "840.0", + "315.0", + "498.0", + "121.0", + "242.0", + "425.0", + "512.0", + "213.0", + "600.0", + "850.0", + "100.0", + "105.0", + "740.0", + "720.0", + "485.0", + "1150.0", + "252.0", + "417.0", + "607.0", + "459.3", + "526.0", + "511.4", + "338.0", + "690.0", + "200.0", + "453.0", + "350.0", + "104.0", + "290.0", + "195.0", + "311.0", + "890.0", + "585.0", + "nan | nan", + "547.0", + "340.0", + "202.0", + "596.0", + "160.0", + "209.0", + "38.0", + "584.0", + "653.0", + "270.0", + "170.0", + "390.0 | 10.0", + "337.0", + "670.0", + "151.0", + "326.0", + "24500.0", + "386.0", + "1205.0", + "725.0", + "171.0", + "413.0", + "445.0", + "248.0", + "640.0", + "2080.0", + "355.0", + "150.0 | 100.0", + "394.0", + "765.0", + "293.0", + "478.0", + "1130.0", + "563.0", + "550.0", + "531.0", + "215.0", + "542.0", + "300.0", + "513.6", + "245.0", + "430.0", + "1010.0", + "395.0", + "185.0", + "308.0", + "289.0", + "530.0", + "120.0", + "450.0", + "501.0", + "218.0", + "153.0", + "130.0", + "110.0", + "310.0", + "150.0 | 600.0", + "141.0", + "199.0", + "11000.0", + "490.0", + "345.0", + "580.0", + "1000.0", + "232.6", + "188.0", + "66.0", + "225.0", + "235.0", + "60000.0", + "528.0", + "590.0", + "770.0", + "1200.0", + "444.0", + "845.0", + "473.0", + "1070.0", + "390.0", + "10.0", + "43.0", + "1650.0", + "1393.0", + "236.0", + "266.0", + "742.6", + "412.0", + "20000.0", + "210.0", + "397.0", + "357.0", + "424.0", + "2200.0", + "567.0", + "800.0", + "586.0", + "525.0", + "388.0", + "378.0", + "370.0", + "129.0", + "348.0", + "960.0", + "149.0", + "477.0", + "570.0", + "487.0", + "454.0", + "7000.0", + "97.0", + "410.0", + "30.0", + "462.0", + "510.2", + "792.0", + "360.0", + "470.0", + "335.0", + "680.0", + "438.0", + "460.0", + "224.0", + "400.0 | 2.0", + "147.0", + "474.0", + "1510.0", + "140.0", + "578.0", + "492.0", + "80.0", + "404.0", + "320.0", + "4000.0", + "138.0", + "448.0", + "10000.0", + "226.0", + "276.0" + ] + } + } + ] + }, + "name": "thickness", + "description": "The thickness of the perovskite layer\n- If the perovskite contains more than one layer, separate those by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- State thicknesses in nm\n- Every layer in the stack have a thickness. If it is unknown, state this as \u2018nan\u2019\n- If there are uncertainties, state the best estimate, e.g write 100 and not 90-110\n- For cells where the perovskite infiltrates a mesoporous scaffold, state the thickness as starting from the bottom of the infiltrated mesoporous layer to the top of the perovskite layer (i.e. include the thickness of the infiltrated mesoporous layer)\nExample\n200\n500 |20\n600 | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1.764", + "1.189", + "1.516", + "2", + "1.578", + "1.645", + "1.583", + "2.115", + "1.715", + "1.621", + "2.44", + "1.533", + "1.486", + "1.481", + "2.6", + "1.555", + "1.73", + "1.63 | nan", + "1.633", + "1.61", + "2.04", + "1.595", + "2.78", + "1.617", + "1.526", + "2.296", + "1.626", + "2.4", + "1.72", + "1.46", + "1.613", + "1.47", + "1.91 | 1.8", + "1.79", + "1.623", + "2.37", + "1.17", + "2.27", + "2.42", + "1.608", + "1.515", + "1.855", + "1.525", + "1.8", + "1.56", + "2.2", + "1.605", + "1.632", + "1.523", + "1.671", + "1.503", + "1.27", + "2.13", + "1.569", + "1.684", + "1.881", + "1.635", + "1.597", + "1.627", + "1.652", + "2.43", + "2.28", + "1.775", + "2.277", + "1.588", + "1.88", + "3.04", + "2.09", + "1.655", + "2.9", + "2.3", + "2.07", + "2.31", + "1.58", + "2.38", + "1.57", + "1.3", + "2.49", + "1.901", + "1.641", + "1.55", + "1.89", + "1.66", + "1.556", + "1.546", + "1.94", + "1.498", + "1.49", + "1.77", + "2.92", + "2.12", + "1.64", + "1.45", + "1.919", + "1.549", + "1.76", + "1.33", + "1.41", + "2.39", + "1.584", + "1.579", + "1.638", + "1.592", + "1.624", + "1.965", + "1.65", + "1.26", + "1.656", + "1.644", + "1.596", + "1.906", + "1.598", + "1.54", + "1.35", + "1.21", + "1.96", + "2.5", + "1.51", + "2.268", + "2.01", + "2.273", + "2.278", + "1.674", + "2.161", + "1.865", + "2.154", + "1.99", + "1.71", + "1.683", + "1.739", + "1.78", + "1.36", + "1.848", + "2.23", + "2.19", + "1.924", + "1.92", + "1.599", + "1.872", + "1.564", + "1.582", + "1.791", + "1.612", + "2.66", + "2.153", + "1.69", + "1.565", + "1.651", + "2.46", + "1.839", + "2.14", + "1.895", + "1.589", + "2.26", + "2.36", + "2.15", + "1.812", + "1.87", + "1.548", + "1.4", + "1.5", + "2.25", + "2.027", + "2.0", + "1.594", + "1.9", + "1.581", + "1.591", + "1.28", + "2.287", + "2.48", + "1.614", + "1.39", + "1.58 | 2.08", + "1.86", + "1.68", + "1.25", + "1.576", + "1.575", + "1.629", + "1.375", + "1.74", + "1.16", + "1.38", + "1.957", + "1.667", + "1.609", + "1.7", + "1.557", + "1.604", + "2.139", + "2.033", + "1.602", + "1.97", + "2.34", + "1.896", + "1.634", + "1.586", + "1.2", + "1.85", + "1.535", + "2.05", + "1.18", + "1.553", + "2.21", + "2.7", + "1.607", + "2.47", + "1.606", + "1.529", + "1.639", + "1.611", + "1.752", + "1.688", + "1.32", + "1.93", + "2.22", + "1.75", + "1.616", + "1.574", + "2.308", + "1.524", + "1.23", + "1.976", + "1.845", + "1.59", + "2.105", + "2.03", + "1.725", + "1.676", + "2.18", + "1.672", + "1.34", + "1.682", + "2.1", + "1.662", + "2.54", + "2.536", + "2.8", + "1.53", + "2.113", + "1.531", + "1.505", + "1.858", + "1.67", + "1.528", + "2.35", + "1.585", + "1.751", + "1.63", + "1.52", + "1.615", + "2.02", + "1.571", + "1.866", + "1.42", + "1.619", + "1.272", + "1.573", + "1.777", + "1.893", + "1.746", + "1.517", + "1.84", + "1.509", + "1.889", + "1.31", + "1.636", + "1.628", + "1.48", + "1.62", + "1.29", + "1.82", + "1.95", + "1.668", + "1.969", + "1.91", + "1.512", + "1.593", + "2.83", + "2.141", + "1.6 | 1.68", + "2.29", + "2.24", + "2.08", + "1.22", + "2.288", + "1.6", + "1.587", + "2.58", + "1.757", + "2.52", + "1.98", + "2.55", + "1.37", + "1.974", + "1.989", + "1.43", + "1.24", + "1.625", + "1.701", + "1.554", + "1.637", + "1.44", + "2.17", + "1.81", + "2.32", + "1.558", + "2.33", + "1.83" + ] + } + } + ] + }, + "name": "band_gap", + "description": "The band gap of the perovskite\n- If the perovskite contains more than one layer, separate the band gaps for the respective layer by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If there are uncertainties, state the best estimate, e.g. write 1.62 and not 1.6-1.64\nExample\n1.62\n1.57 | 2.3", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "true", + "false" + ] + } + } + ] + }, + "name": "band_gap_graded", + "description": "TRUE if the band gap varies as a function of the vertical position in the perovskite layer.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Composition", + "Literature", + "EQE", + "Absorption", + "Absorption Tauc-plot", + "UPS", + "Absorption Tauc-plot | UPS" + ] + } + } + ] + }, + "name": "band_gap_estimation_basis", + "description": "The method by which the band gap was estimated. The band gap can be estimated from absorption data, EQE-data, UPS-data, or it can be estimated based on literature values for the recipe, or it could be inferred from the composition and what we know of similar but not identical compositions.\nExample\nAbsorption Tauc-plot\nLiterature\nComposition", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "779.8", + "795", + "520.0", + "761.0", + "632.6", + "779.0", + "695", + "828.0", + "728", + "782.0", + "582.1", + "589", + "772", + "952", + "553", + "540.0", + "774.5", + "825", + "610", + "1.61", + "560.0", + "731", + "767", + "722.0", + "640", + "729", + "746", + "659.5", + "781.5", + "760.0", + "819", + "544", + "716", + "786.7", + "590.4", + "824", + "683", + "708.5", + "758.5", + "746.0", + "788.0", + "538", + "nan | 740", + "795.0", + "757.0", + "793", + "602", + "518", + "543.8", + "626", + "673", + "794.8", + "790", + "813", + "770", + "805.5", + "763.5", + "934.0", + "819.5", + "595", + "663.1", + "830", + "715.4", + "762", + "884", + "744", + "540", + "810.0", + "775.0", + "762.5", + "761", + "724.0", + "800.8", + "766", + "765.4", + "777.0", + "719", + "570", + "727", + "918.0", + "815.8", + "890", + "774.0", + "780.3", + "825.0", + "806", + "817", + "580", + "620.0", + "820.0", + "910.0", + "625", + "650.0", + "803", + "538.2", + "781.3", + "760.4", + "775.4", + "799", + "882", + "754.0", + "965", + "932", + "538.6", + "584.9", + "755.6", + "770.1", + "531", + "573", + "976", + "644.0", + "632", + "667", + "810", + "718", + "755", + "654", + "767.1", + "794", + "692", + "828", + "636.0", + "798", + "636", + "729.4", + "777", + "752.0", + "778.8", + "769.0", + "539.1", + "870", + "723.0", + "715", + "639.1", + "465", + "741", + "587.6", + "685", + "778", + "880.0", + "769.9", + "764.8", + "784", + "716.0", + "751", + "728.0", + "614", + "780", + "804", + "751.0", + "723", + "736.0", + "838", + "722", + "750.0", + "776.2", + "805.0", + "730.0", + "801.8", + "529", + "870.0", + "764", + "549", + "833", + "771.2", + "769.4", + "832", + "743.5", + "946.0", + "915", + "900", + "639", + "768.8", + "807.0", + "767.0", + "551", + "630", + "984.0", + "691", + "635", + "595.0", + "843.5", + "525", + "735", + "638", + "635.8", + "913", + "657.0", + "778.0", + "757.5", + "786", + "637", + "804.3", + "759.0", + "731.0", + "783", + "746.9", + "661", + "799.0", + "300", + "624", + "943", + "704.5", + "807", + "1005", + "642", + "677.5", + "537.3", + "732", + "877", + "672.0", + "800", + "894", + "692.0", + "713", + "700.0", + "537.4", + "686", + "22.3", + "748", + "780.0", + "712", + "558.0", + "772.0", + "552", + "766.0", + "797", + "750", + "645", + "1200", + "0", + "533.0", + "805", + "756.6", + "996.4", + "726.0", + "440.0", + "605", + "670.2", + "750 | nan", + "868", + "526", + "725", + "720.9", + "771.8", + "743", + "541", + "771", + "530", + "796", + "761.4", + "680", + "802", + "682", + "575", + "754", + "832.2", + "690", + "550", + "657", + "722.1", + "515", + "512.0", + "985.7", + "600.0", + "699", + "740.0", + "740", + "822", + "753.0", + "633", + "720.0", + "977", + "785", + "765", + "959", + "880", + "811", + "527.0", + "769", + "975", + "961", + "775.6", + "655", + "840", + "600", + "912", + "650", + "752", + "790.0", + "873", + "725.1", + "535", + "583", + "896", + "539", + "806.0", + "950", + "704", + "546", + "812", + "787", + "755.0", + "620", + "820", + "962", + "774", + "768.0", + "670.0", + "643", + "200", + "759", + "920", + "778; 710", + "543.0", + "77", + "708", + "789", + "964", + "545", + "768.3", + "725.0", + "769.1", + "1025", + "843", + "982", + "615", + "532", + "506", + "710.0", + "764.0", + "664.0", + "445.0", + "756", + "765.0", + "865", + "785.3", + "647.0", + "21.4", + "675", + "649.4", + "550.0", + "531.0", + "834", + "763", + "781", + "726", + "756.7", + "596", + "490", + "707", + "530.0", + "805.1", + "779", + "527", + "1058", + "960", + "714", + "719.0", + "969", + "889", + "792", + "420", + "666.6", + "520", + "541.4", + "758.0", + "576.7", + "751.5", + "946", + "955", + "757", + "809", + "730", + "1020", + "815", + "528.0", + "770.0", + "802.0", + "781.1", + "894.0", + "651", + "753", + "724", + "652", + "767.9", + "627", + "788", + "543", + "821", + "967", + "768", + "742", + "646", + "800.0", + "816", + "748.0", + "922", + "525.0", + "1016", + "660", + "665", + "727.0", + "745", + "705", + "768.4", + "781.0", + "663", + "534", + "785.7", + "779.9", + "700", + "791", + "522", + "784.0", + "696", + "710", + "782", + "776", + "775", + "968.8", + "659", + "792.0", + "814", + "777.6", + "537", + "717", + "763.0", + "720", + "745.0", + "980", + "756.8", + "680.0", + "729.0", + "749", + "773", + "538.7", + "547", + "800 | 620", + "860", + "653", + "796.0", + "670", + "762.0", + "519", + "776.0", + "485", + "524", + "738.0", + "808", + "658", + "794.0", + "629.4", + "655.0", + "758", + "895", + "528", + "760", + "779.2", + "738", + "733", + "700.5", + "776.5", + "712.7", + "773.0", + "801" + ] + } + } + ] + }, + "name": "pl_max", + "description": "The maximum from steady-state PL measurements\n- If more than one PL-max, separate those by a semicolon\nExample\n780\n550; 770", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "1200.0", + "144.0", + "300.0", + "1440.0", + "24.0", + "2400.0", + "3120.0", + "2160.0", + "960.0", + "120.0", + "Unknown", + "12.0", + "72.0", + "240.0", + "720.0", + "1920.0", + "432.0", + "480.0", + "168.0", + "48.0", + "2880.0", + "1680.0", + "192.0", + "4.0" + ] + } + } + ] + }, + "name": "storage_time_until_next_deposition_step", + "description": "The time between the perovskite stack is finalised and the next layer is deposited\n- If there are uncertainties, state the best estimate, e.g. write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "Air", + "Ambient", + "Vacuum", + "N2", + "O2", + "Ar" + ] + } + } + ] + }, + "name": "storage_atmosphere", + "description": "The atmosphere in which the sample with the finalised perovskite stack is stored until the next deposition step.\nExample\nAir\nN2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "40.0", + "30.0", + "20.0", + "75.0", + "45.0", + "90.0", + "24.0", + "60.0", + "50.0", + "10.0", + "70.0", + "80.0", + "35.0" + ] + } + } + ] + }, + "name": "storage_relative_humidity", + "description": "The time between the perovskite stack is finalised and the next layer is deposited\n- If there are uncertainties, state the best estimate, e.g write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "UV", + "Ar plasma" + ] + } + } + ] + }, + "name": "surface_treatment_before_next_deposition_step", + "description": "Description of any type of surface treatment or other treatment the sample with the finalised perovskite stack undergoes before the next deposition step.\n- If more than one treatment, list the treatments and separate them by a double forward angel bracket (\u2018 >> \u2018)\n- If no special treatment, state that as \u2018none\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExamples:\nnone\nUV\nOzone", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "PerovskiteDeposition", + "description": "This section contains information about the deposition of the perovskite layer.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "number_of_deposition_steps", + "description": "The number of production steps involved in making the perovskite-stack\n- A spin coating program that are composed of several segments with different spin speed are still counted as one step (1)\n- A spin coating program involving an antisolvent step counts as a 1-step method (1).\n- Depositing PbI2 first and subsequently converting it to a perovskite count as a 2-step procedure (2)\n- Thermal annealing is considered separately. The motivation for this is that every step is considered to have its own thermal history.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Spin-coating | Spin-coating >> Spin-coating", + "Gas-assisted fast crystallisation", + "Electrospraying >> Dropcasting", + "Slot-die coating >> Doctor blading", + "Spin-coating >> Spin-coating", + "Spin-coating >> Evaporation", + "Roller-coating >> Roller-coating", + "Spin-coating >> Drop-infiltration >> Recrystallization", + "Co-evaporation >> Evaporation >> Spin-coating", + "Evaporation >> Evaporation >> Evaporation", + "Spin-coating >> Vapour annealing >> CBD", + "Spin-coating >> CBD >> Spin-coating >> Spin-coating", + "Evaporation >> Gas reaction >> Washing", + "Spin-coating >> Diffusion-gas reaction", + "Spin-coating | Spin-coating", + "Spin-coating >> Gas reaction >> Ion exchange", + "Spin-coating >> Spin-coating >> Rinsing >> Spin-coating", + "Slot-die coating >> Dipp-coating", + "Spin-coating >> Spin-coating >> Gas reaction", + "Spin-coating >> Dipp-coating >> Rinsing", + "Spin-coating >> Spin-coating | Spin-coating", + "Evaporation >> Evaporation >> Gas reaction >> Dipp-coating", + "Slot-die coating", + "Brush painting", + "Ultrasonic spray >> Gas reaction", + "Spin-coating >> CBD", + "Co-evaporation >> Gas reaction >> Spin-coating", + "Evaporation >> Flash evaporation >> Evaporation >> Flash evaporation", + "Spin-coating >> Spray-coating", + "Ultrasonic spray", + "Spin-coating | Evaporation", + "Spin-coating >> CBD >> Spray-coating", + "Space-limited inverse temperature crystallization", + "Evaporation | Spin-coating", + "Spin-coating | Dripping", + "Meniscus coating", + "Spin-coating | Spin-coating >> IPA washing", + "Evaporation >> Sandwiching >> Rinsing", + "Co-evaporation", + "Evaporation >> CBD >> CBD", + "Co-evaporation >> Diffusion-gas reaction", + "Ultrasonic spray >> Ultrasonic spray", + "Spin-coating >> CBD >> Gas reaction", + "Evaporation >> Diffusion-gas reaction", + "Sputtering >> Gas reaction", + "Spin-coating >> CVD", + "Sputtering >> Sulfurization", + "Spin-coating >> Air brush spray >> Air brush spray", + "Spray-coating >> Gas reaction", + "Spin-coating >> Recrystallization", + "Inkjet printing", + "Spin-coating >> Spin-coating >> Spin-coating", + "Evaporation >> Spin-coating", + "Spin-coating >> Gas reaction >> Solvent annealing >> Recrystallization", + "Pulsed laser deposition >> Gas reaction", + "Dipp-coating >> Dipp-coating", + "Spin-coating >> CBD >> CBD", + "Spin-coating >> Closed space sublimation", + "Evaporation >> Evaporation >> Evaporation >> Evaporation >> Evaporation >> Evaporation", + "Co-evaporation >> Spin-coating", + "Air brush spray", + "Spin-coating | Spray-coating", + "Flash evaporation >> CBD", + "Doctor blading >> Doctor blading", + "Dropcasting >> Spin-coating", + "Spray-coating >> Spin-coating", + "Ultrasonic spray >> CBD", + "Spin-coating >> Dipp-coating", + "Single-source thermal evaporation", + "Inverse temperture crysilization >> Lamination", + "LT-SCD >> LT-SCD", + "Evaporation >> Gas reaction >> Gas reaction", + "Spin-coating >> Dropcasting >> Spin-coating", + "Vacuum flash evaporation", + "Drop-infiltration >> Recrystallization", + "Spray-coating >> Spray-coating", + "Evaporation >> Ultrasonic spray", + "Electrodeposition >> Spin-coating", + "Spin-coating >> Dipp-coating >> Spin-coating", + "Evaporation >> Spin-coating >> Spin-coating", + "Spin-coating >> Dropcasting", + "Dropcasting >> CBD", + "Spin-coating >> Evaporation >> Ultrasonic spray", + "Solvent evaporation crystallization", + "GC-LCG", + "Drop-infiltration >> Drop-infiltration", + "Dropcasting >> Pneumatic pressure", + "spin-coatng", + "Spin-coating >> Spin-coating >> Diffusion", + "Evaporation >> Evaporation >> Gas reaction", + "Evaporation >> Gas reaction", + "Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Dropcasting >> Rinsing", + "Doctor blading >> CBD", + "Spin-coating >> CBD >> Washing", + "PVD", + "Dipp-coating >> CBD", + "Spin-coating >> Inkjet printing", + "Spin-coating >> CBD >> Rinsing", + "Dipp-coating", + "Spin-coating >> Air brush spray", + "Hot-casting", + "Spin-coating >> Spin-coating >> Ion exchange", + "Springkling >> Recrystallization", + "Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Dropcasting >> Rinsing", + "Electrodeposition >> Dipp-coating >> CBD", + "Evaporation >> CBD >> CBD >> CBD", + "Drop-infiltration >> CBD", + "Spin-coating | Gas reaction", + "Spin-coating >> Spin-coating >> Air brush spray", + "Electrospraying >> Gas reaction", + "Spin-coating >> Diffusion", + "Evaporation", + "Spin-coating >> Evaporation >> Spray-coating", + "Electrodeposition >> Gas reaction >> CBD", + "Electrospraying", + "Unknown", + "Spray-pyrolys", + "Evaporation >> Inkjet printing", + "CBD", + "Drop-infiltration", + "Spin-coating >> CBD >> Ion exchange", + "Spin-coating >> Evaporation >> CBD", + "CVD", + "Roller-coating", + "Co-evaporation >> Co-evaporation", + "Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating", + "Unknown >> Unknown", + "Spin-coating >> Sandwiching", + "Spin-coating >> Spin-coating >> CBD", + "Electrodeposition >> CBD", + "Spin-coating >> Co-evaporation", + "Doctor blading", + "Spin-coating >> Printing", + "Magnetron sputtering", + "Evaporation >> Evaporation", + "Spin-coating >> Drop-infiltration", + "Spin-coating >> Ligand exchange >> Dipp-coating", + "Soft-cover deposition", + "Spin-coating >> Spin-coating >> Dipp-coating >> Dipp-coating >> Spin-coating >> Dipp-coating >> Dipp-coating >> Spin-coating >> Dipp-coating >> Dipp-coating", + "Slot-die coating >> Spin-coating", + "Evaporation >> Electrodeposition", + "Spin-coating >> Dipp-coating >> Dipp-coating >> Spin-coating >> Dipp-coating >> Dipp-coating >> Spin-coating >> Dipp-coating >> Dipp-coating", + "Spin-coating >> Evaporation >> Evaporation", + "Spin-coating >> Gas reaction", + "Space-confined single crystal formation", + "Electrospinning", + "Spin-coating >> CBD >> Spin-coating", + "Electrodeposition >> Gas reaction >> Spin-coating", + "Closed space sublimation", + "Spin-coating >> Spin-coating >> Spray-coating", + "Spin-coating >> CBD >> Recrystallization", + "Spin-coating | Spin-coating >> IPA washing | Spin-coating >> IPA washing | Spin-coating >> IPA washing", + "Spin-coating >> Spin-coating >> Evaporation", + "Co-evaporation >> Co-evaporation >> Co-evaporation", + "Spin-coating >> CBD >> Spin-coating >> Gas reaction", + "Spin-coating | Dropcasting", + "CBD >> Spin-coating >> Gas reaction", + "Substrate vibration assisted dropcasting >> Substrate vibration assisted dropcasting", + "Roller-coating >> Spin-coating", + "Spray-coating >> CBD", + "Spin-coating >> Gas reaction >> Gas reaction >> Gas reaction", + "Spin-coating >> Spin-coating >> Dropcasting >> Rinsing", + "Spin-coating | CBD", + "Dropcasting", + "Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating", + "Sputtering >> Spin-coating", + "Pulsed laser deposition", + "Single crystal growth", + "Evaporation >> Diffusion", + "Spin-coating >> Electrospraying", + "Blow-drying", + "Spin-coating >> Spin-coating >> Close space sublimation", + "Dipp-coating >> Spin-coating", + "Spin-coating | Spin-coating >> IPA washing | Spin-coating >> IPA washing", + "Inkjet printing >> Diffusion-gas reaction", + "Spin-coating >> Ion exchange", + "Drop-infiltration >> Spin-coating", + "Spin-coating >> Spin-coating >> Recrystallization", + "Flash evaporation", + "Spin-coating", + "Spin-coating >> Gas reaction >> Spin-coating", + "Electrodeposition >> CBD >> CBD", + "Crystallization >> Recrystallization", + "Slot-die coating >> CBD", + "Hot-pressed", + "Dipp-coating >> Gas reaction", + "Spray-coating", + "Spin-coating >> Spin-coating >> Spin-coating >> Dropcasting >> Rinsing", + "Air brush spray >> Air brush spray", + "Electrodeposition >> Electrodeposition", + "Sputtering >> CBD", + "Spin-coating >> Ultrasonic spray", + "Evaporation >> CBD", + "Spin-coating >> Dipp-coating >> Dipp-coating", + "Evaporation >> Evaporation >> Evaporation >> Evaporation", + "Slot-die coating >> Slot-die coating", + "Spin-coating >> Gas reaction >> Gas reaction", + "Spin-coating >> Condensation >> CBD" + ] + } + } + ] + }, + "name": "procedure", + "description": "The deposition procedures for the perovskite block.\n- The perovskite stack is considered as one block/layer when we consider the synthesis. Thus, even if the perovskite is layered, consider it as one block, i.e. no vertical bars in this field\n- When more than one reaction step, separate them by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- There should be as many reaction steps described here as indicated in the field \u201cPerovskite. Deposition. Number of deposition steps\u201d\n- Thermal annealing is generally not considered as an individual reaction step. The philosophy behind this is that every deposition step has a thermal history, which is specified in a separate filed. In exceptional cases with thermal annealing procedures clearly disconnected from other procedures, state \u2018Thermal annealing\u2019 as a separate reaction step.\n- Antisolvent treatment is considered in a separate filed. The motivation for that is that it usually is conducted simultaneously as a spin-coating procedure, and thus acts as an additional aspect of reaction step already accounted for. Exception to this is if there is an antisolvent step that is distinctly separated in time, e.g. a film with a spin-coated perovskite solution is immersed in an antisolvent. In that case, this could eb added as a dipp-coating event, while also being reported in the antisolvent field.\n- Even if the most common deposition procedures have been used for 95 % of all reported devise, do not be surprised if you do not find your deposition procedure in the list of reported deposition procedure, as the original dataset tended to use a simplified notation.\n- A few clarifications\n- Air brush spray\n- Deposition with something looking like an old perfume bottle. Classified as a solution technique.\n- Brush painting\no A precursor ink is applied with a brush\n- CBD\n- Chemical bath deposition. Refers to procedures where a film has been immersed in a solution where a reaction occurs. The typical example is when a PbI2 film is immerse in an IPA solution with MAI in which the PbI2 is converted to the perovskite.\n- Co-evaporation\n- Simultaneous evaporation from multiple sources with line of sight deposition.\n- CVD\no Chemical vapour deposition. A gas phase process where a chemical reaction is occurring in the gas phase. If a MA-containing compound is evaporated and reacted with PbI2 where another species is released to the gas phase, it is labeled as CVD. A process where MAI in gas phase react with PbI2 in gas phase is labelled as CVD. A process where MAI or MA gas is reacting with solid PbI2 is instead labelled as a gas reaction as no chemical reaction is occurring the gas phase. Note that all reactions labelled as CVD in the literature may not be CVD even if it is conducted in a CVD reactor, and should instead be labelled as a gas reaction.\n- Diffusion\no Solid state reaction where two solid components are mixed. E.g. solid MAI is bought in direct contact with solid PbI2\n- Diffusion-gas reaction\n- A special case. Where one compound, e.g. MAI is placed on top of another e.g. PbI2 where it is evaporated. It is thus a combination of a gas phase reaction and solid-solid diffusion.\n- Dipp-coating\no The thing that separates dipp-coating from CBD is the occurrence of a reaction. If you have component A in solution, dip your substrate in the solution, take it up and you have component A on your substrate, then you have done a dipp-coating. If you have substance A in solution, dip your substrate in the solution, take it up and have something else than A on your substrate, you have done a CBD (e.g. PbI2 dipped in MAI/IPA which gives MAPbI3 and not MAI on the substrate)\n- Dropcasting\no A drop is applied to a substrate where it is left to dry without any additional procedures.\n- Drop-infiltration\n- A mesoporous scaffold in which a drop of the precursor solution is infiltrated without the aid of spin-coating.\n- Doctor blading\n- There is a family of related techniques, but if it could be described as doctor blading, that is the label to use.\n- Evaporation\n- Refers to thermal evaporation with line-of-sigh deposition. i.e. PVD\n- Flash evaporation\n- Fast evaporation (in a flash) of a perovskite that sublimes on another substrate. Line of sight deposition.\n- Closed space sublimation\n- Evaporation of a well controlled amount of substance (usually in the form of a thin film) in a small container containing the final substrate.\n- Gas reaction\n- A gas phase reaction. Not a line of sight deposition. In the typical case, MAI is evaporated and the MAI gas builds up a pressure in the reaction chamber in which it reacts with a PbI2 film forming the perovskite.\n- Ion exchange\n- One perovskite is dipped into a solution (or exposed to a gas) which leads to an ion exchange, e.g. I is replaced by Br.\n- Lamination\n- A readymade film is transferred directly to the device stack. A rather broad concept. An everyday kitchen related example of lamination would eb to place a thin plastic film over a slice of pie.\n- Recrystallization\n- A perovskite that already have been formed is deformed and then recrystallised. E.g. MAPbI3 is exposed to Methylamine gas for a short while which dissolved the perovskite which then can crystallize again\n- Rinsing\n- Cleaning step with a solvent\n- Sandwiching\n- When a readymade top stack simply is placed on top of the device stack. Could be held together with clams.\n- Ultrasonic spray\n- A bit like air brush spray but with better control of droplet size. Classified as a solution technique.\nExample\nSpin-coating\nSpin-coating >> Spin-coating\nSpin-coating >> CBD\nSpin-coating >> Gas reaction\nDrop-infiltration\nCo-evaporation\nDoctor blading\nEvaporation >> Evaporation\nEvaporation >> Spin-coating\nEvaporation >> Gas reaction\nSlot-die coating\nSpray-coating", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Liquid >> Unknown", + "Liquid >> Gas >> Gas >> Gas", + "Liquid | Liquid >> Liquid | Liquid >> Liquid", + "Liquid | Liquid", + "Liquid >> Liquid >> Solid", + "Gas", + "Liquid | Liquid >> Liquid", + "Liquid | Liquid >> Liquid | Liquid >> Liquid | Liquid >> Liquid", + "Gas >> Liquid >> Liquid >> Liquid", + "Liquid >> Liquid >> Liquid", + "Liquid >> Liquid >> Liquid >> Gas", + "Gas >> Solid >> Liquid", + "Solid >> Liquid", + "Liquid | Gas", + "Unknown", + "Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid", + "Liquid >> Liquid >> Liquid >> Liquid", + "Liquid >> Liquid", + "Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid", + "Gas >> Gas >> Liquid", + "Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid", + "Liquid >> Gas", + "Liquid >> Gas >> Gas", + "Liquid | Liquid >> Liquid | Liquid", + "Liquid >> Gas >> Liquid", + "Solid", + "Liquid", + "Gas >> Gas >> Gas >> Gas", + "Liquid >> Liquid | Liquid", + "Gas >> Gas >> Gas >> Liquid", + "Liquid >> Liquid >> Gas", + "Unknown >> Liquid", + "Liquid >> Liquid >> Liquid >> Liquid >> Liquid", + "Gas >> Gas >> Gas", + "Gas >> Gas >> Gas >> Gas >> Gas >> Gas", + "Liquid >> Solid", + "Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid >> Liquid", + "Gas >> Liquid", + "Gas >> Gas", + "Gas >> Liquid >> Liquid", + "Gas | Liquid", + "Gas >> Solid" + ] + } + } + ] + }, + "name": "aggregation_state_of_reactants", + "description": "The physical state of the reactants\n- The three basic categories are Solid/Liquid/Gas\n- The perovskite stack is considered as one block/layer when we consider the synthesis. Thus, even if the perovskite is layered, consider it as one block, i.e. no vertical bars in this field\n- When more than one reaction step, separate the aggregation state associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Most cases are clear cut, e.g. spin-coating involves species in solution and evaporation involves species in gas phase. For less clear-cut cases, consider where the reaction really is happening as in:\no For a spray-coating procedure, it is droplets of liquid that enters the substrate (thus a liquid phase reaction)\no For sputtering and thermal evaporation, it is species in gas phase that reaches the substrate (thus a gas phase reaction)\nExample\nLiquid\nGas >> Liquid\nLiquid >> Liquid >> Liquid", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "N2 | Vacuum", + "Inert", + "DMSO; N2 >> N2", + "Air >> MAI; N2", + "FAI >> Unknown", + "FABr", + "FAI >> FABr @ 75 >> 25", + "Methylamin; N2", + "Vacuum >> MAI; toluene", + "Ar; MAI; Pbl2", + "N2 >> N2; TBP", + "Air >> Ar", + "Ar; MAI; PbI2", + "Methylamin; N2 >> Methylamin; N2", + "Acetone; N2 >> N2", + "FAI; N2; Vacuum", + "N2 >> Vacuum", + "Air >> MAI; NH4Cl; Vacuum", + "Vacuum >> MAI; Vacuum >> Vacuum; BAI", + "Unknown >> Air", + "Air >> Ar; Methylamin", + "Vacuum >> FAI", + "N2 >> Air; Methylamin; HI", + "Vacuum >> Vacuum >> IPA", + "N2 >> MABr >> MAI", + "Air >> MAI; Vacuum", + "Unknown >> Vacuum", + "Unknown >> Br2", + "O2", + "Unknown >> Unknown >> Air", + "Air >> MACl >> MAI", + "N2 >> MAI; N2", + "Unknown >> Methylamin", + "N2 >> N2; IPA >> N2", + "N2 >> Dry air", + "N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2", + "Vacuum >> N2", + "N2 >> Air; Methylamin >> Air; HI", + "N2 >> Chlorobenzene; N2 >> N2", + "Dry air | Dry air", + "N2 >> N2 >> N2 >> N2", + "Vacuum >> FAI; Vacuum", + "N2; Vacuum", + "Vacuum >> Vacuum", + "Dry air >> MAI", + "Vacuum >> Vacuum >> N2", + "Ar", + "Unknown >> MAI; Vacuum", + "Air >> Air; I2 >> N2", + "Air >> N2 >> Air", + "N2", + "Ar; MAI; PbCl2", + "Vacuum >> Air; MAI", + "N2 >> FAI; MAI; Vacuum", + "N2 | N2 | N2 | N2", + "Vacuum >> IPA; MAI", + "Vacuum >> TiBr4", + "Air >> Air >> Air", + "FAI", + "N2 >> FA-Ac", + "Air >> MaBr", + "N2 >> N2 >> FAI; Vacuum", + "Vacuum >> Ar; MAI", + "N2 >> MAI", + "Vacuum >> Vacuum >> Unknown", + "N2 | N2 | N2", + "Liquid Air", + "N2 >> MACl", + "Vacuum >> N2; MAI", + "N2 >> N2; Toluene >> N2", + "Air >> Vacuum >> N2", + "Ambient >> Air; MAI", + "N2 >> FAI; Vacuum >> N2", + "Vacuum >> FAI; N2", + "Ar >> MABr", + "Unknown >> Unknown >> Vacuum", + "Unknown >> Unknown >> Methylamin", + "Air >> Vacuum >> Air", + "Vacuum >> Chlorobenzene; MAI", + "Air >> Air; MABr", + "Ambient >> Ambient", + "Air >> MAI; MACl; MABr; Vacuum", + "N2 >> Air; Methylamin", + "Dry air", + "Vacuum >> Vacuum >> Vacuum >> Vacuum >> Vacuum >> Vacuum", + "Unknown >> N2; MAI", + "Unknown >> MAI", + "Vacuum >> Vacuum >> FAI; N2", + "Unknown >> FAI", + "N2 >> Air; DMSO >> Air; DMSO >> Air; Methylamin", + "Vacuum >> N2 >> N2 >> N2", + "Dry air >> Dry air >> Dry air", + "Chlorobenzene; N2", + "DMF; N2 >> N2", + "N2 >> Vacuum >> N2", + "Unknown >> Unknown >> MAI", + "Inert >> Inert", + "Air >> Air >> Pyridine", + "Unknown >> Vacuum >> Air", + "Unknown >> Air; Methylamin", + "Vacuum >> Ar", + "FAI; FABr >> Unknown", + "Air >> Air | Air", + "Unknown >> MABr", + "Vacuum >> Unknown", + "N2 >> N2 >> N2", + "Unknown", + "Ar >> Ar >> Ar", + "Air >> Br2", + "N2 >> N2", + "N2 >> Methylamin; N2", + "N2 >> N2 >> MAI; N2", + "Unknown >> Unknown >> Unknown", + "Dry air >> Dry air", + "Unknown >> Pyridine", + "N2 >> Air; MAI", + "Air >> Air; MAI", + "N2 >> FA", + "Hydrazine; N2", + "N2 >> Ambient", + "Vacuum >> Vacuum >> Vacuum", + "FAI >> FABr @ 25 >> 75", + "Vacuum >> MAI", + "Ambient", + "Unknown >> Unknown", + "N2 >> Vacuum >> Vacuum", + "Air >> Air; MACl", + "Unknown >> MACl", + "Air >> Air; Methylamin", + "Air >> Methyl amine", + "FAI >> FABr @ 50 >> 50", + "Air >> MAI", + "Vacuum >> MAI; Vacuum; FAI >> N2", + "Ait >> Air; MAI", + "Air", + "N2 >> MAI >> MABr", + "Vacuum", + "Air >> FAI; FABr; MACl; Vacuum", + "Dry air >> Air; MAI", + "Vacuum >> Vacuum >> Vacuum >> Vacuum", + "Unknown >> N2; MAI >> Unknown", + "Air >> Air", + "N2 >> Air; DMSO; HBr >> Air; DMSO >> Air; Methylamin", + "N2 >> Air", + "Air >> Air; HI >> Air; Methylamin >> Air; Hi", + "Vacuum >> MAI; N2", + "Vacuum >> Vacuum >> I2; N2 >> N2", + "Vacuum >> Air", + "N2 >> MAI; N2; O2", + "Vacuum >> Vacuum >> FAI; Vacuum", + "Air >> FAI; Vacuum", + "Glovebox", + "Air >> Air >> N2", + "Air >> Methylamine", + "Air >> N2", + "Vacuum >> FAI; N2; Vacuum", + "Air >> Methylamin; Vacuum", + "Unknown >> Unknown >> Unknown >> MAI", + "N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2", + "N2 >> MAI; Vacuum", + "Air | Ari; MAI", + "Air >> MAI; NH4Cl", + "N2 >> FAI; FACl; Vacuum", + "N2 >> N2 >> Vacuum", + "N2 | N2", + "N2 >> FAI; Vacuum", + "Air >> Air >> Air >> Air", + "N2 >> Methylamin", + "N2 >> BEAI2; N2", + "Dry air >> Dry air; Methylamin", + "Air >> Air >> Air >> Air >> Air >> Air", + "N2 >> DMSO; N2 >> N2", + "Air | Air", + "IPA; N2 >> N2", + "Ar >> Ar", + "N2 >> Methylamin; Vacuum", + "Air; O2", + "Air >> Vacuum", + "Vacuum >> N2 >> N2", + "N2 >> Ar; MAI", + "N2 >> FAI; MABr; MACl; N2; Vacuum", + "Ar >> Vacuum", + "Vacuum >> MAI; Vacuum", + "N2 >> MABr", + "Unknown >> Air >> Air", + "N2 >> N2; 1,2-dichlorobenzene >> N2" + ] + } + } + ] + }, + "name": "synthesis_atmosphere", + "description": "The synthesis atmosphere\n- When more than one reaction step, separate the atmospheres associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nAir\nN2 >> N2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1 atm >> 1 atm", + "0.000001 mbar", + "1 atm | 1 atm", + "1 atm >> 0.00003 bar", + "1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm", + "1 atm >> 60 Pa", + "1 atm", + "0.000001 mbar >> 1 atm", + "1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm", + "1 atm >> 1 atm | 1 atm", + "0.00001 mbar", + "nan | 700 Pa" + ] + } + } + ] + }, + "name": "synthesis_atmosphere_pressure_total", + "description": "The total gas pressure during each reaction step\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of deposition steps must line up with the previous columns.\n- Pressures can be stated in different units suited for different situations. Therefore, specify the unit. The preferred units are:\no atm, bar, mbar, mmHg, Pa, torr, psi\n- If a pressure is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 100 pa and not 80-120 pa.\nExample\n1 atm\n0.002 torr\n1 atm >> 1 atm >> nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1 atm >> 1 atm", + "0.000001 mbar", + "1 atm | 1 atm", + "1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm", + "1 atm", + "0.000001 mbar >> 1 atm", + "1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm >> 1 atm", + "1 atm >> 1 atm | 1 atm", + "0.00001 mbar", + "1 atm >> 0.00003 bar" + ] + } + } + ] + }, + "name": "synthesis_atmosphere_pressure_partial", + "description": "The partial pressures for the gases present during each reaction step.\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the partial pressures and separate them with semicolons, as in (A; B). The list of partial pressures must line up with the gases they describe.\n- In cases where no gas mixtures are used, this field will be the same as the previous filed.\nExample\n1 atm\n0.002 torr; 0.03 torr\n0.8 atm; 0.2 atm >> 1 atm >> nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "40.0", + "25", + "30 >> 30", + "0 >> 40 >> 0", + "15", + "0 >> 0", + "0.4", + "0 >> 1", + "0 >> 22 >> 0", + "0", + "1", + "5", + "85", + "32", + "10.0", + "70", + "28", + "2", + "15 >> 15", + "55 >> 55", + "80", + "30 | 30", + "45", + "20 >> 20", + "40", + "75", + "20", + "60", + "65", + "36", + "45 >> 45", + "0 >> 20", + "24", + "0 >> 16 >> 0", + "30", + "55", + "8", + "0 >> 30", + "90", + "25 >> 25", + "35 >> 35", + "0 >> 12 >> 0", + "10 >> 0", + "40 >> 40", + "0.01", + "52", + "70 >> 70", + "0 >> 33 >> 0", + "27.5 >> 27.5 >> 27.5", + "50 >> 50", + "10 >> 10", + "42", + "0.0", + "nan >> 40", + "50", + "40 >> 40 >> 40", + "0 >> 60", + "65 >> 65", + "35", + "12 >> 12", + "0 >> 40", + "42 >> 42", + "30; 40", + "60 >> 60", + "10" + ] + } + } + ] + }, + "name": "synthesis_atmosphere_relative_humidity", + "description": "The relative humidity during each deposition step\n- When more than one reaction step, separate the relative humidity associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of deposition steps must line up with the previous columns\n- If the relative humidity for a step is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 35 and not 30-40.\nExample\n35\n0 >> 20\n25 >> 25 >> 0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "DMF; DMSO >> H2O; Methanol", + "DMF >> none >> Unknown", + "Diiodoctane, DMF", + "Unknown >> none", + "n-methyl-2-pyrrolidone", + "acetonitrile; DMF; DMSO >> IPA", + "DMF", + "Octane >> Methyl acetate >> Ethyl acetate", + "DMSO; GBL >> DMF; IPA", + "DMSO | 1-pentanol", + "Ethanol", + "GBL; DMSO; n-butanol", + "DMF; DMSO >> Octane >> IPA", + "DMF; Furfural", + "Octane >> Methyl acetate", + "DMF; DMSO >> H2O; IPA", + "DMF; DMSO >> IPA >> IPA >> IPA", + "Octane >> IPA", + "none; DMF >> IPA", + "DMF >> Methanol", + "acetonitrile", + "acetonitrile; DMF", + "DMSO; N-methyl-2-pyrrolidone", + "DMF; DMSO >> IPA", + "GBL; N-methyl-2-pyrrolidinone", + "DMF; DMSO >> DMF; IPA", + "GBL; Ethanol", + "DMF; DMSO; NMP", + "none >> 2-methoxyethanol; Ethanol", + "DMF >> IPA >> IPA >> IPA", + "DMF >> H2O; IPA >> Unknown", + "DMSO; GBL >> IPA", + "DMF >> Ethyl acetate", + "DMF >> IPA >> Anisole", + "Diethyl ether; DMF; DMSO", + "DMF; Benzaldehyde", + "DMF; g-Valerolacetone", + "1-Ethyl-2-pyrrolidone >> none", + "DMF >> DMSO >> IPA", + "Ethanol; Methylamine", + "DMSO; acetonitrile >> IPA", + "BA; Ethanol >> none", + "acetonitrile; NMP", + "Unknown >> Unknown", + "DMF >> n-hexyl alchohol", + "DMSO >> Hexane; Toluene", + "NMP", + "Dimethylacetamide; DMSO", + "Ethanol; H2O", + "DMF; DMSO >> n-butanol", + "DMF >> DMSO; IPA", + "DMSO >> 1-butanol", + "DMF; DMSO >> GBL; IPA", + "DMF >> Cyclohexene; IPA", + "Heptane; Hexane", + "GBL >> DMF", + "GBL", + "DMF; Methylfomramid", + "none >> none >> none >> none >> none >> none", + "DMF; GBL; IPA", + "1-Octadecene; n-Heptane >> none", + "Octane >> Octane >> Octane >> Octane", + "Ethyl acetate", + "DMF; DMSO; GBL; NMP", + "DMF >> DMF >> Cyclohexene; IPA", + "Toluene", + "DMSO; NMP", + "DMF; DMSO >> IPA; o-dichlorobenzene", + "Acetic acid; GBL", + "DMF >> IPA; NMP", + "DMF; DMSO >> Methanol", + "DMF >> none >> none", + "N,N-dimethylacetamide", + "DMSO >> Methanol", + "DMF >> IPA; n-hexane", + "Chlorobenzene >> none", + "DMF >> Octane >> Methyl acetate >> Methyl acetate", + "Toluene >> IPA", + "DMAc; NMP", + "DMF >> Octane >> Octane >> Octane >> Octane >> Methyl acetate >> Methyl acetate", + "none", + "DMF >> Toluene", + "DMF; NMP >> IPA", + "acetonitrile; DMF >> IPA", + "DMF; GLB", + "Chlorobenzene", + "methylamine formate; IPA", + "DMF; THF", + "Ethyl amine; HCl", + "DMF; GBL", + "DMF >> H2O", + "2-Methoxy-ethanol", + "2\u2010butoxyethano; DMSO", + "DMF; Tetrahydrothiophene-1-oxide", + "2-methoxyethanol; DMSO", + "Cyclohexyl-2-pyrrolidone; DMF", + "DMF; Benzylamine", + "DMSO; NMP >> IPA", + "DMF; DMSO >> Hexane", + "DMF >> IPA >> DMF; IPA", + "DMF >> Methanol | Cyclohexane", + "DMF; Tetrahydrothiophene 1-oxid", + "Cl-Cyclohexane; DMF", + "DMSO >> DMSO >> DMSO", + "DMF; NMP", + "DMF; Me-Cyclohexane", + "DMSO >> IPA >> Toluene", + "none >> none", + "DMSO; GBL @ 3; 7 >> IPA", + "DMF; DMSO >> Chloroform", + "DMF | IPA | H2O | Ethanol", + "DMSO; GBL @ 3; 7 >> DMSO; GBL @ 3; 7", + "DMF; DMSO", + "DMF; TBP >> IPA", + "DMSO >> IPA >> Toluene >> none", + "DMF >> IPA >> Chlorobenzene; DMF", + "DMF >> Unknown", + "Ethanol; H2O >> Chlorobenzene; Tert-butanol", + "DMF >> Chex; IPA", + "Unknown >> none >> none", + "acetonitrile; DMF; Methoxyactonitrile", + "none >> Methanol; Ethanol", + "DMSO >> Octane", + "Chlorobenzene >> Methylacetate", + "DMF; GBL; IPA >> IPA", + "Methylammonium acetate", + "DMSO; o-xylene", + "DMSO | Propanetriol", + "Ocatane >> MeOAc", + "DMSO >> IPA", + "DMF; HCl >> IPA", + "DMSO >> Ethanol", + "2-methoxyethanol; acetonitrile", + "IPA >> DMF", + "DMF >> Pentan-1-ol >> Unknown", + "none >> IPA", + "DMF; HCl", + "DMF; DMSO >> Cyclohexane; IPA", + "DMF >> Cyclohexane; IPA", + "DMF; DMSO >> Chlorobenzene; IPA", + "DMF; o-DCB", + "DMF >> Methanol >> Methanol", + "Unknown >> IPA >> none", + "2-methoxyethanol", + "H2O >> none", + "DMF >> IPA >> DMF >> IPA >> DMF >> IPA", + "n-propylamine", + "DMF >> none >> none >> none", + "THF", + "DMSO >> Toluene", + "DMF >> tert-butanol; Chlorobenzene", + "DMF; Glycerol >> DMF >> IPA", + "Butylamine", + "DMF; o-xylene", + "DMF; DMSO >> none >> none >> none", + "Ethanol; H2O >> IPA", + "IPA", + "DMF; DMSO >> Toluene", + "DMF >> Ethanol; IPA", + "acetonitrile; Ethanol; Methylamine", + "DMSO >> none", + "Hexane; Octane", + "H2O >> IPA", + "NMP >> IPA", + "Octane", + "DMF >> IPA >> Toluene", + "Dimethylacetamide; DMSO; NMP", + "H2O >> none >> IPA", + "DMSO; GBL", + "Dimetyletanamid", + "Dimethylacetamide; DMF", + "DMF; DMSO; HAc >> IPA", + "Diiodomethane; DMF; DMSO", + "DMF; DMSO | IPA", + "DMF; DMSO; HCl >> IPA", + "DMF >> Methanol >> Methanol >> Methanol", + "H2O >> H2O; HI >> IPA", + "DMSO; GBL >> none", + "Methylacetate", + "DMF >> IPA >> DMF >> IPA", + "Methanol; THF", + "IPA >> DMF >> IPA", + "Acetic acid; Ethanol; Water", + "DMF; DMSO; Formamide", + "GBL >> IPA", + "DMF; H2O", + "DMF; DMSO >> Ethanol", + "2-methoxyethanol; DMSO; GBL", + "Butylamine; DMF; DMSO >> Butanol", + "Octane >> Pb(OAc)2 satured ethyl acetate solution >> Ethyl acetate >> Octane >> Pb(OAc)2 satured ethyl acetate solution >> Ethyl acetate >> Octane >> Pb(OAc)2 satured ethyl acetate solution >> Ethyl acetate", + "DMF; DMSO >> Methyl acetate", + "DMF; DMSO | IPA >> IPA", + "DMF; THF >> IPA", + "DMF >> Chlorobenzene; IPA", + "DMF; DMSO >> IPA >> DMSO; IPA", + "DMF; NNP", + "DMSO; GBL @ 4; 7 >> IPA", + "GBL; NMP", + "DMF >> IPA >> Methybenene", + "GBL; DMSO", + "Octane >> Ethyl acetate", + "IPA >> IPA", + "Unknown", + "Water >> Ethanol >> IPA", + "H2O; HI; Methylamine", + "DMF; DMA >> IPA", + "Hexane >> Octane", + "DMSO; GBL; IPA", + "IPA >> Ethanol", + "none | IPA", + "Octane >> Octane >> Octane >> Octane >> Octane >> Methyl acetate", + "Terpineol", + "Unknown >> IPA", + "DMF; Acetophenone", + "DMF; N-Methyl-2-pyrrolidone", + "GBL >> GBL", + "none >> IPA >> IPA", + "DMF; DMSO; H2O", + "Hexane", + "DMF | IPA", + "DMF >> DMF; IPA", + "Dimethylacetamide", + "DMF >> IPA; Toluene", + "DMSO; Hac >> IPA", + "DMF >> Ethanol >> Ethanol", + "none >> Ethanol", + "DMSO >> H2O; IPA", + "DMF >> PA", + "Ethyl acetate >> Ethyl acetate", + "DMF >> Ethanol", + "DMF >> DMF", + "DMSO; H2O >> IPA", + "none >> none >> none >> IPA", + "DMF >> n-butyl alchohol", + "DMF; HMPA >> IPA", + "DMF >> IPA; Propanol", + "DMF | DMF; IPA", + "none >> none >> none", + "DMF; DMSO @ 9; 1 >> IPA", + "DMF; IPA", + "Methylamine >> Methylamine", + "Methyl acetate >> Ethyl acetate", + "none >> Hydrophosphorous acid; IPA", + "DMF >> n-amyl alcohol", + "DMF >> IPA; TBP", + "DMSO; GBL; NMP", + "DMSO; BL", + "Aceton; DMF >> IPA", + "DMSO | Butanol; IPA", + "none >> IPA >> IPA >> IPA", + "DMF; DMSO >> Chlorobenzene", + "DMF >> Cyclohexanol; IPA", + "DMF; DMSO >> none", + "DMF >> DMF >> Ethanol", + "Water >> none", + "Octane >> Methyl acetate >> Methyl acetate", + "DMF; DMSO; Pyridin", + "DMF; DMSO; Methanol", + "DMF >> IPA >> none", + "DMF >> Octane >> Pb(OAc)2 satured ethyl acetate solution >> Ethyl acetate >> Octane >> Pb(OAc)2 satured ethyl acetate solution >> Ethyl acetate >> Octane >> Pb(OAc)2 satured ethyl acetate solution >> Ethyl acetate", + "DMF >> Octane >> Octane >> Octane >> Methyl acetate >> Methyl acetate", + "DMF; DMSO >> Chlorobenzene; DMF", + "DMF; DMSO >> DMF; DMSO >> DMSO >> DMSO | IPA", + "none >> Ethanol; Methoxyethanol", + "DMF; Tetraline", + "Dimethylacetamide >> IPA", + "Acetic acid; GBL; Propanol", + "DMF | none", + "DMF; DMSO; N-cyclohexyl-2pyrrolidone", + "DMF; DMSO >> IPA >> IPA", + "DMF; DMSO; Formarmid", + "DMF; NMP >> Ethanol", + "DMF; DMSO >> Ethanol; IPA", + "DMF; DMSO >> IPA >> none", + "DMF >> DMF >> IPA", + "IPA >> DMF >> none", + "Butanol; GBL", + "DMF >> none >> IPA", + "1-Octane", + "DMF; DMSO; GBL", + "DMSO >> Octane >> Octane", + "DMF; DMSO >> DMSO; IPA", + "GBL; Polyethylene glycol >> H2O", + "DMF; DMSO; Thiourea", + "DMF >> IPA >> DMF", + "DMF; DMI >> Ethanol", + "Acetic acid; Ethanol; GBL", + "none >> none >> none >> none", + "DMF; n-butanol >> IPA", + "DMF; DMSO; GBL >> IPA", + "Dimethylacetamide; NMP", + "n-butylamine", + "Diiodooctane; DMF", + "acetonitrile; DMF; DMSO", + "DMSO; Formamide", + "DMF | IPA | H2O", + "DMF >> IPA >> IPA", + "DMF; DMSO; n-butyl amine >> n-butanol", + "DMF; HPA", + "GBL >> none", + "acetonitrile; Methylamine", + "acetonitrile; DMSO >> IPA", + "DMF; DMI >> IPA", + "Hexame >> Methyl acetate >> Ethyl acetate", + "DMF >> Octane >> Octane >> Methyl acetate >> Methyl acetate", + "none >> none >> IPA", + "DMF; DMSO >> IPA; H2O", + "DMF >> Acetonitrile, Methylamine", + "IPA >> DMF; DMSO", + "acetonitrile; Methylamine >> IPA", + "DMF; TBP", + "Ethanol; GBL", + "H2O >> none >> none", + "DMF >> TBA", + "DMF >> IPA >> Chlorobenzene; GBL", + "DMSO >> IPA >> IPA", + "DMSO | IPA", + "DMF; Tetramethylene sulfoxide", + "DMSO >> DMF; DMSO", + "DMF >> none", + "DMF >> IPA >> Chlorobenzene", + "DMF; DMSO >> DMF; DMSO >> IPA", + "Methanol; Water", + "DMF >> IPA", + "DMF; DMSO >> none >> IPA", + "DMF; Glycerol >> DMF; DMSO", + "DMF >> Methyl acetate", + "DMSO >> Hexane", + "DMSO", + "DMF >> DMF >> none", + "DMF; HI", + "DMF >> Methanol >> Toluene", + "DMF; DMSO >> IPA | IPA", + "DMF >> IPA >> Chlorobenzene; DMSO", + "DMF >> IPA >> Unknown", + "DMF; DMSO >> DMF; DMSO", + "DMF >> Terpineol", + "DMSO | butanol", + "DMF; DMSO >> DMSO; Methanol", + "DMF; DMSO; Hac >> IPA", + "H2O >> Hexane; IPA", + "acetonitrile; MA(MeOH)" + ] + } + } + ] + }, + "name": "solvents", + "description": "The solvents used in each deposition procedure for each layer in the stack\n- When more than one reaction step, separate the solvents associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the solvents in alphabetic order and separate them with semicolons, as in (A; B)\n- The number and order of deposition steps must line up with the previous columns.\n- For non-liquid processes with no solvents, state the solvent as \u2018none\u2019\n- If the solvent is not known, state this as \u2018Unknown\u2019\n- Use common abbreviations when appropriate but spell it out when risk for confusion\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nDMF; DMSO\nGBL\nDMF >> IPA\nDMF >> none\nDMF; DMSO >> IPA", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [] + } + } + ] + }, + "name": "solvents_mixing_ratios", + "description": "The mixing ratios of the solvents used in each deposition procedure for each layer in the stack\n- When more than one reaction step, separate the solvent mixing ratios associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of deposition steps must line up with the previous columns.\n- For pure solvents, state the mixing ratio as 1\n- For non-solvent processes, state the mixing ratio as 1\n- For unknown mixing ratios, state the mixing ratio as \u2018nan\u2019\n- For solvent mixtures, i.e. A and B, state the mixing ratios by using semicolons, as in (VA; VB)\n- The preferred metrics is the volume ratios. If that is not available, mass or mol ratios can be used instead, but it the analysis the mixing ratios will be assumed to be based on volumes.\nExample\n1\n4; 1 >> 1\n1 >> 5; 2; 0.3 >> 2; 1", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "J&K Scientific; J&K Scientific >> Unknown", + "ACORS Organic; ACORS Organic", + "Alfa Aesar; Alfa Aesar", + "Sigma Aldrich; Daejung", + "Acros Organics; Sigma Aldrich", + "Sigma Aldrich", + "Unknown >> Alfa Aesar; Sigma Aldrich", + "Xi'an Polymer Light Technology >> Xi'an Polymer Light Technology >> Unknown", + "Alfa Aesar", + "ACORS Organic; ACORS Organic; Unknown", + "Unknown", + "Panreac", + "J&K Scientific >> Unknown", + "Millipore Sigma", + "Aladdin >> Sigma Aldrich", + "NanoPac; NanoPac", + "Aldrich", + "Sigma Aldrich; Alfa Aesar", + "Sigma Aldrich; Sigma Aldrich", + "Xi'an Polymer Light Technology; Xi'an Polymer Light Technology", + "Wako Pure Chemical Industries >> Wako Pure Chemical Industries", + "Fisher Scientific; Fisher Scientific", + "sigma aldrich; sigma aldrich", + "Sigma Aldrich; Sigma Aldrich >> Unknown", + "Wako >> Wako; Wako", + "Sigma Aldrich >> Sigma Aldrich >> Sigma Aldrich", + "Alfa Aesar; Sigma Aldrich", + "Tokyo Chemical Industry, Japan", + "J&K", + "Wako; Wako", + "Merck >> Merck >> Merck", + "Wako >> Wako", + "Nacalai Tesque", + "Tokyo Chemical Industry >> Sigma Aldrich", + "Alfa Aesar >> Alfa Aesar", + "Kanto Chemical Tokyo", + "J&K; J&K", + "Aladdin; Aladdin", + "Sigma Aldrich; Unknown", + "Sigma; Aladdin", + "Merck >> Merck", + "Tianjin Guangfu Fine Chemical Research Institute; Unknown" + ] + } + } + ] + }, + "name": "solvents_supplier", + "description": "The suppliers of all the solvents.\n- When more than one reaction step, separate the solvent suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of reaction steps and solvents must line up with the previous columns.\n- For non-liquid processes with no solvents, mark the supplier as \u2018none\u2019\n- If the supplier for a solvent is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nSigma Aldrich\nSigma Aldrich; Fisher >> Acros\nnone >> Sigma Aldrich; Sigma Aldrich >> Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Pro analysis", + "0.99", + "Unknown >> Puris; Puris", + "AR 99% GC", + "Pro analysis; Pro analysis", + "99.9%; 99.8%", + "Unknown", + "Reagent Grade >> 99.5% >> 99.8%", + "99%; 99%", + "0.998", + "99.7%; 99%", + "Puris", + "Puris; Puris", + "99.8% >> Unkown", + "99.99%; 99.5%", + "Puris; Unknown", + "99.9%; 99.8% >> Unkown", + "99.8%; 99.9%", + "99.8", + "99.7%; 99%; Unkown", + "99%; 99,9%", + "99.9%; 99.5%", + "Puris; Puris >> Unknown", + "99.8% Anhydrous; 99.5% anhydrous" + ] + } + } + ] + }, + "name": "solvents_purity", + "description": "The purity of the solvents used.\n- When more than one reaction step, separate the solvent purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For non-liquid processes with no solvents, state the purity as \u2018none\u2019\n- If the purity for a solvent is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\nPuris; Puris>> Tecnical\nnone >> Pro analysis; Pro analysis >> Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "nan >> PEAI", + "FAPbI3; MABr >> PEAI; PbI2", + "CsI; FAI; MABr; PbBr2; PbI2 >> Cs-oleate; PbBr2; PbBI2", + "PEAI; PbI2; MABr >> PEAI; PbI2; MABr", + "CsBr; FAI; PbI2 >> PEAI", + "CsI; MABr; PbBr2; FAI; PbI2", + "PbBr2, MgBr2 >> CsBr", + "MAI; PbI2; TPAI", + "MAI; PbI2 >> MAI", + "SnI2; FASnI", + "SnI2; FAI; SnF2; ethylenediamine; PbI2; MAI; MABr", + "SnI2; FAI; SnF2; ethylenediamine; PbI2; MAI", + "nan >> n-butyl amine", + "1,8-octanedithiol; CsI; FAI; PbI2", + "MAI; PbI2; NiI2", + "F5PEAI, PEAI; PbI2", + "SnI2; FAI", + "MAI; PbI2; SnI2", + "MAI; BA; PbI2", + "PbCl2; PbI2 >> MAI", + "SnI2; FAI; SnF2; PbI2; MAI", + "MAI; PbSCN2; PbI2; FAI", + "CsI; CsBr; PbI2; PbBr2", + "PbCl2; PbI2 >> MAI; PMMA", + "CsBr; PbI2 >> CsPbI3-QDs >> Pb(OAc)2 >> nan >> CsPbI3-QDs >> Pb(OAc)2 >> nan >> CsPbI3-QDs >> Pb(OAc)2 >> nan", + "MAI; PbI2; FeI2", + "PbI2; PbBr2; FAI; MABr; g-C3N4", + "CsI; PbBr2 >> CsI", + "CsI; FAI; MABr; PbBr2; PbI2", + "nan >> Guanidinium iodide", + "nan >> Cs2CO3", + "CsI; FAI; PbI2; PbBr2", + "FAI; MAI; PbBr2; PbI2", + "PbI2 >> MAI; MAPbI3-QDs", + "PbI2; FAI; MACl; MABr; PbBr2", + "FAI; MABr; MACl; PbI2; PbBr2", + "CsAc; HPbBr3; PEABr", + "nan >> nan >> nan", + "PbI2 >> MAI >> nan", + "MACl; MAI; PbI2", + "NH4I; PbI2 >> MA", + "MAI; PbI2 >> MAI >> 4-DA", + "CsBr; PbBr2", + "MAI; PbCl2; PbI2", + "FAI; MABr; PbI2; PbBr2 >> CsI", + "MACl; SnCl2", + "MAI; PbI2; CoI2", + "MAI; PbI2 >> nan", + "nan >> CsNO3", + "PbI2; PbBr2; CsI", + "MAI; BDAI; PbI2", + "CsI; PbI2", + "MAI; MnI2", + "nan >> FAI", + "FAI; MABr; PbBr2; PbI2", + "CsAc; HPbBr3", + "PEAI, PbI2", + "MAI; PbCl2 >> IPFB", + "CsI; FAI; MABr; PbBr2; PbI2; RbI >> FABr", + "FAI; PbI2; ThMAI", + "PbI2 >> MAI", + "CsBr; FAI; PbI2", + "PbI2 >> MACl; MAI", + "nan >> MABr", + "CsBr >> PbBr | PQD", + "nan >> GuBr", + "HPbI3; CsI", + "PbI2; PbBr2; FAI; MABr; C3N5", + "nan >> nan >> nan >> Pb(NO3)2", + "PbI2 >> MAI; MACl", + "MAI; MTEACl; PbI2", + "CsI; SnI2", + "1,8-diiodooctane; MAI; PbCl2", + "MAI; PbI2; PEAI", + "nan >> ETB; NaI", + "nan >> NH3I(CH2)4NH3I", + "AgI; Bi3", + "CsAc; HPbI3", + "MAI; PbI2", + "MAI; PBI2; SbBr3", + "nan >> FaBr", + "PbBr2, SrBr2 >> CsBr", + "F5PEAI; CsI; FAI; MABr; PbI2; PbBr2; Pb(SCN)2; PEAI", + "CsI; CsBr; PbI2", + "MAI; PbI2 >> PbI2", + "F5PEAI; CsI; FAI; MABr; PbI2; PbBr2; Pb(SCN)2", + "nan >> NH3I(CH2)8NH3I", + "PbI2 >> FAI; MACl", + "F5PEAI, PbI2", + "MAI; PbCl2; Pb(OAc)2.3H2O", + "PbI2 >> 5-AVAI; MAI", + "CsBr; FAI; PbI2 >> PMAI", + "PbCl2 >> MAI", + "MABr; PbBr2", + "CsI; PbBr2; PbI2; FAI >> FAI", + "CsI; FAI; HI; PbI2 >> FA(PF6)", + "CsI; FAI; MABr; PbI2; PbBr2", + "CsBr; CsI; PbI2", + "SnI2; FABr", + "nan >> Eu-pyP", + "PbCl2; PbI2 >> FAI; MAI", + "nan >> CsI", + "PbBr2, CaBr2 >> CsBr", + "MAI; PbCl2; PbI2; Phenol", + "MAI; PbCl2; PbI2; FAI", + "MAI; PbI2 >> MAI; PbI2", + "Cs2CO3; oleic acid; 1-octadecene; PbBr2; oleylamine", + "CsI; PbI2 >> FAI; MABr", + "MAI; PbCl2", + "nan >> Octylammonium iodide", + "MAI; NMA; PbI2", + "C3H5CsO2; HPbBr3; HPbI3", + "CsBr; PbI2 >> CsPbI3-QDs >> Pb(OAc)2 >> nan >> CsPbI3-QDs >> Pb(OAc)2 >> nan >> CsPbI3-QDs >> Pb(OAc)2 >> nan >> nan", + "CsBr; FAI; PbI2 >> PAI", + "nan >> Pb(NO3)2", + "nan >> Ethylammonium Iodide", + "nan >> GAI", + "CsI; FAI; MAI; PbBr2; PbI2", + "MAI; PbI2 >> MAPbI3-QDs", + "CsAc; HPbBr3; HPbI3; PEABr; PEAI", + "nan >> CsAc", + "MAI; PbAc", + "CsI; PbBr2; PbI2; FAI >> FABr", + "MAI; PbCl2; PbI2 >> MAPbI3-QDs", + "nan >> NH3I(CH2)2O(CH2)2O(CH2)2NH3I", + "PbI2 >> FAI; MABr; MACl", + "AuBr3; MABr", + "nan >> MAI", + "MAI; PbI2; MnI2", + "nan >> CsBr", + "CsI; FAI; PbBr2; PbI2", + "CsI; FAI; MABr; MACl; PbI2; PbBr2", + "Pb(NO3)2 >> MACl; MAI", + "PbI2 >> FAI; MAI; MACl", + "CsI; FAI; MABr; PbBr2; PbI2 >> PFPAI", + "CsBr; PbI2", + "FAI; MAI; PbI2", + "5-AVAI; MAI; PbI2", + "MAI; PBI2", + "PbI2 >> 5-AVAI; MAI; MACl", + "MAI; 5-AVAI; PbI2", + "PbCl2 >> MAI >> nan", + "AgBr; BiBr3; CsBr", + "MABr; PbBr2; PbI2; FAI", + "CsI; FAI; GaAA3; PbI2", + "CsAc; HPbI3; PEAI", + "CsI; FAI; MAI; PbBr2; PbI2 >> 10%mol TBAI-doped PTzDPPBTz", + "CsPbI3-QDs >> Pb(OAc)2 >> nan >> CsPbI3-QDs >> Pb(OAc)2 >> nan >> CsPbI3-QDs >> Pb(OAc)2 >> nan", + "MAI; PbI2; PbCl2", + "CsAc; HPbBr3; HPbI3", + "PbI2 >> nan >> MAI", + "HPbI3 >> MA", + "C2H3CsO2; HPbBr3; HPbI3", + "CsBr >> PbBr", + "CsI; PbBr2; PbI2", + "(BDA)I2; CsI; PbI2; PbBr2", + "CsI; FAI; MABr; PbI2", + "MAI; Pb(OAc)2", + "FAI; MAI; PbI2; Pb(SCN)2", + "HCOOCs; HPbBr3; HPbI3", + "FAI; SnI2", + "MAI; Pb (OAc)2.3H2O", + "PbI2; HI; MA; ethanol; diethyl ether", + "Pb(NO3)2 >> MAI", + "CsI; PbBr2", + "PbI2; FAI; MACl", + "FAI; MAI; PbI2; Pb(SCN)2 >> PMMA", + "KI; FAI; MABr; PbBr2; PbI2", + "SnI2; MASnI", + "PbI2; HI; MA; diethyl ether", + "FAPbI2Br >> MAPbI2Br >> CsPbI2Br >> RbI | BABr", + "CsI; FAI; MAI; PbBr2; PbI2 >> PTABr", + "FAI; PbI2", + "CsI; PbBr2; PbI2; FAI >> FAI; FABr", + "CsBr; HI; PbF2; PbI2", + "nan >> Imidazolium iodide", + "nan >> GABr", + "nan >> MACl", + "PbI2; MAI", + "CsI; FAI; HI; PbI2", + "PbBr2; MAI", + "PbBr2 >> CsBr", + "FAI; MAI; PbBr2; PbI2; Pb(SCN)2 >> PMMA", + "CsI; PbI2 >> FAI; MABr; MACl", + "PbCl2; MAI", + "CsI; FAI; MAI; PbI2", + "nan >> FABr", + "DOI; MABr; PbBr2", + "MAI: PbI2", + "MAI; PbI2 >> BEAI2", + "nan >> nan >> FAI", + "CsBr; HI; PbI2", + "MAPbI3-xClx", + "CsI; FAI; MABr; PbI2; PbBr2; Pb(SCN)2; PEAI; nan", + "CsPbI3 >> Pb(NO3)2 >> FAI", + "CsI; FAI; MAI; PbI2; RbI", + "CsI; FAI; PbI2", + "MAI; BAI; PbI2", + "nan >> EDBE", + "DOI; MAI; PbCl2", + "DMAI; PbI2", + "RbI; CsI; FAI; MABr; PbI2; PbBr2", + "FAI, MABr; PbI2; PbBr2", + "FAI; MACl; MABr; PbI2", + "PbI2; PbCl2; MAI", + "MAI; SnF2; SnI2 >> nan", + "nan >> Pb(NO3)2 >> nan", + "CsI; PbI2 >> MACl; MABr; FAI; MAI", + "PbI2 >> MAI >> TSA", + "nan >> ITIC" + ] + } + } + ] + }, + "name": "reaction_solutions_compounds", + "description": "The non-solvent precursor chemicals used in each deposition procedure\n- When more than one reaction step, separate the non-solvent chemicals associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several compounds, e.g. A and B, list the associated compounds in alphabetic order and separate them with semicolons, as in (A; B)\n- Note that also dopants/additives should be included\n- When several precursor solutions are made and mixed before the reaction step, it is the properties of the final mixture used in the reaction we here describe.\n- The number and order of reaction steps must line up with the previous columns.\n- For gas phase reactions, state the reaction gases as if they were in solution.\n- For solid-state reactions, state the compounds as if they were in solution.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- If the compounds for a deposition step is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nCsI; FAI; MAI; PbBr2; PbI2\nPbI2 >> MAI\nPbBr2; PbI2 >> FAI; MAI >> none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Aldrich; Aldrich; Junsei Chemical; Unknown; Unknown", + "Lab made; synthesiyed; Aladdin; Sigma Aldrich", + "Xian Polymer Light Technology; Alfa Aesar", + "Dyesol; Sigma; Alfa Aesar; Dyesol", + "Lab made; Unknown >> Lab made; Unknown", + "Showa Chemical; Sigma Aldrich", + "Sigma Aldrich; Dyesol; Sigma Aldrich; Sigma Aldrich; Sigma Aldrich; Dyesol; Sigma Aldrich", + "Sigma Aldrich >> Unknown >> Lab made", + "Lab-made; Sigma Aldrich", + "GreatCell Solar; Sigma-Aldrich", + "Greatcell Ltd.; Xi\u2019An Polymer Light Technology Corp.; TCI", + "Youxuan Tech; Youxuan Tech", + "Wako; Tokyo Chemical Industry", + "Dyesol; Sigma; Sigma", + "Sigma Aldrich; Showa Chemical", + "Dyesol; Sigma Aldrich", + "TCI; GreatCell Solar Materials; Dyenamo; GreatCell Solar Materials; TCI", + "Xi'an Polymer Light Technology; Alfa Aesar", + "Sigma Aldrich; Alfa-Aesar", + "Sigma Aldrich; Sigma Aldrich; TCI", + "Acros Organics; Acros Organics; Sigma Aldrich; Dyesol", + "Sigma Aldrich; Sigma Aldrich; Sigma Aldrich; Unknown; Unknown", + "Unknown >> Lab-made; Lab-made", + "Dyesol; Sigma; Dyesol; Dyesol", + "Dynamo; Sigma Aldrich", + "Sigma Aldrich; Dyesole; Dyesole; TCI; TCI", + "Alfa Aesar; Lab made", + "Sigma Aldrich >> Sigma Aldrich", + "Xi\u2019an p-OLED >> Lab made", + "Unknown >> Lab made; Unknown", + "Sigma Aldrich; Sigma Aldrich >> Dyesol; Dyesol", + "Synthesiyed; Sigma Aldrich; Sigma Aldrich", + "TCI; Kanto Chemical Tokyo", + "Shanghai Mater. Win. New Materials Corporation; Sigma Aldrich; Sigma Aldrich; Shanghai Mater. Win. New Materials Corporation", + "Sigma Aldrich; Greatcell Solar", + "Sigma Aldrich >> Lab made", + "ACROS Organic; STAREK scientific Co. Ltd.", + "Dyesol; Dyesol; Alfa Aesar", + "Advanced Election Technology Co.. Ltd; GreatCell Solar; Advanced Election Technology Co.. Ltd. TCI.", + "Dyesol; Dyesol; TCI; Alfa Aesar; Sigma Aldrich >> Sigma Aldrich", + "Lab-made; Sigma Aldrich; Sigma Aldrich", + "GreatCell Solar; Sigma Aldrich", + "Sigma Aldrich >> Unknown; Unknown", + "Sigma Aldrich; Lab made; Lab made; Sigma Aldrich; Sigma Aldrich", + "Vizuchem; Vizuchem", + "Sigma Aldrich; Lab made; Sigma Aldrich; Sigma Aldrich >> Greatcell Solar", + "Alfa Aesar; Lumtec; Sigma Aldrich; Luminiscence; Sigma Aldrich", + "Lab made; Sigma Aldrich", + "Dyesol; Dyesol; TCI; Sigma Aldrichch", + "Xi'an Polymer Light Technology Corporation.", + "Unknown; Unknown; Unknown", + "Shanghai MaterWin New Materials Co.. Ltd; Sigma Aldrich", + "Alfa Aesar; Greatcell Solar", + "Sigma Aldrich. 1-Material", + "Showa Chemical; Sigma Aldrich; Sigma Aldrich", + "Dynamo; Tokyo Chemical Industry", + "Sigma Aldrich; Daejung", + "Sigma Aldrich; Lab made; Sigma Aldrich; Sigma Aldrich", + "Alfa Aesar; Xi\u2019an Polymer Light Technology; Xi\u2019an Polymer Light Technology", + "Unknown", + "YOUXUAN Technology Co. Ltd.; Sigma Aldrich Co. Ltd.", + "Sigma Aldrich; Lab made; Sigma Aldrich", + "Dynamo; TCI", + "Alfa Aesar; Dyesol", + "Aladdin; Lab made; synthesiyed; Aladdin; Sigma Aldrich", + "Dyesol; Dyesol; TCI", + "Sigma Aldrich; Sigma Aldrich", + "Acros Organics; Xi'an Polymer Light Tech. Corp.", + "Lab made; Alfa Aesar", + "Xi\u2019an Polymer Light Technology Corp; Alfa Aesar", + "Alfa Aesar; Alfa Aesar; Alfa Aesar; Alfa Aesar; Alfa Aesar", + "Ossila", + "Sigma Aldrich; Macklin", + "Sigma Aldrich; Dyesol; Sigma Aldrich; Sigma Aldrich; Dyesol", + "Unknown >> PEAI", + "Acros Organics; Acros Organics; Sigma Aldrich; Dyesol; Unknown", + "Unknown >> Lab made", + "Alfa Aesar; Alfa Aesar", + "TCI; Sigma Aldrichch", + "Xian Polymer Light Technology; Xian Polymer Light Technology", + "Dysol; Unknown; Unknown", + "Xi\u2019an p-OLED; Xi\u2019an p-OLED", + "Sigma Aldrich; Dyesol; Sigma Aldrich; Sigma Aldrich; Sigma Aldrich; Dyesol", + "Lab made; Lab made; Sigma Aldrich", + "Dyesol; Alfa Aesar", + "PbI2; MAI", + "Xi'an Polymer Light Technology; Xi'an Polymer Light Technology", + "Tokio Chemical Industry; Sigma Aldrich", + "Dyesol; Dyesol; TCI; Sigma Aldrich >> Sigma Aldrich", + "Sigma Aldrich >> Dyesol", + "TCI; TCI", + "Alfa Aesar; Sigma Aldrich", + "Sigma Aldrich; Lab made", + "Xi'an Polymer Light Technology Corp.; Xi'an Polymer Light Technology Corp.; Sigma Aldrich; Sigma Aldrich", + "Alfa Aesar; Xian Polymer Light Technology", + "GreatCell Solar; GreatCell Solar; Sigma Aldrich; Sigma Aldrich" + ] + } + } + ] + }, + "name": "reaction_solutions_compounds_supplier", + "description": "The suppliers of the non-solvent chemicals.\n- When more than one reaction step, separate the non-solvent chemical suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of reaction steps and solvents must line up with the previous columns.\n- For gas phase reactions, state the suppliers for the gases or the targets/evaporation sources that are evaporated/sputtered/etc.\n- For solid state reactions, state the suppliers for the compounds in the same way.\n- For reaction steps involving only pure solvents, state the supplier as \u2018none\u2019 (as that that is entered in a separate filed)\n- For chemicals that are lab made, state that as \u201cLab made\u201d or \u201cLab made (name of lab)\u201d\n- If the supplier for a compound is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nDysole; Sigma Aldrich; Dyenamo; Sigma Aldrich\nSigma Aldrich; Fisher | Acros\nLab made (EPFL) | Sigma Aldrich >> none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "99,985 >> Unknown", + "Puris; Pro analysis; Puris; Unknown", + "Unknown; 99,9%", + "99.5; 99", + "Unknown; Unknown; Puris; Puris", + "99,9%; Unknown; Unknown; 99,9%; 99,999%", + "Unknown; 98%", + "99.9%; 99.9%", + "Unknown; 99%", + "Puris; technical; technical; Unknown; Unknown", + "Unknown >> Unknown; Unknown", + "99.999% >> Unknown", + "99.999%; 99.999%", + "99.99%; Unknown; 99.9985%", + "Unknown; Unknown; 99,9%; 99,999%", + "Unknown; 99,999%", + "Unknown", + "99.99%; Unknown; 99.99%; 99.9985%; Unknown", + "Unknown; 99.9985%", + "98%; Unknown", + "99.99%; Unknown; 99.99%; 99.9985%", + "99.5; 99.99", + "Puris; Pro analysis; Puris; Unknown; Unknown", + "Puris; Puris; Puris", + "Unknown >> 99,999% >> Unknown", + "99%; Unknown >> Unkown", + "Puris; Puris; Unknown; Puris; Unknown", + "Unknown; Unknown", + "Puris; Puris", + "Puris; Unknown", + "Unknown; Puris; Puris; Unkown", + "Unknown >> MACl", + "Puris; technical; technical; puris; technical", + "Unknown; Puris", + "99 %; 99.5%", + "Unknown; Unknown; 99,9%", + "Unknown; Unknown; Unknown", + "Puris >> Puris", + "Puris; Unknown; Unknown; Unknown; Unknown", + "Unknown; 99.999%", + "99,5%; 99,99%", + "Unknown >> ODAI", + "Puris; Puris; Unknown; Puris; Puris; Unknown", + "Unknown >> CsAc", + "99,999%; 99,999% >> 99,8%; 99,8%", + "99,999% >> Unknown; Unknown", + "Puris; Puris; Unknown; Puris; Puris; Unknown; Puris", + "Unknown; 99%; 99,99%", + "99% >> Unknown", + "95%; 99.9%" + ] + } + } + ] + }, + "name": "reaction_solutions_compounds_purity", + "description": "The purity of the chemicals used.\n- When more than one reaction step, separate the compound purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, i.e. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of reaction steps and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019 (as that is stated in another field)\n- If the purity for a compound is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\n99.999; Puris| Tecnical\nUnknown >> Pro analysis; Pro analysis | none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1 M >> 40 mg/ml", + "0.4 M; 0.6 M; 0.8 M", + "0.18 M; 1.02 M; 1.2 M", + "0.75; 0.788; 0.713", + "600 mg/ml >> 1 mg/ml", + "1 M >> 0.07 M | nan", + "50 wt%", + "0.024 M; 1.176 M >> 8 mg/ml", + "461 mg/ml; 57 wt%; 33 wt%; nan; nan", + "0.063 M; 1.14 M; 1.14 M; 1.25 M; 1.25 M", + "0.2 M; 0.06", + "1 vol%; 0.05 M; 0.95 M; 1 M", + "46.8 mg/ml; 226.9 mg/ml; 0.05 vol%; 608.5 mg/ml >> 1 mg/ml", + "0.5 M; 0.5 M", + "1 M; 30 mg/ml", + "0.442 molal; 1.07 molal; 0.173 molal; 1.36 molal; 13.6 mg/ml >> 1 mg/ml", + "1.125 M; 0.75 M", + "548.6 mg/ml >> 50 mg/ml", + "462 mg/ml >> 35 mg/ml", + "nan; 1 M; 0.2 M; 0.2 M; 1.1 M >> 1000 mM", + "1.26 M; 0.14 M; 1.4 M", + "nan; 1 M; 0.2 M; 0.2 M; 1.1 M >> 200 mM", + "600 mg/ml >> 10 mg/ml", + "1 M >> 0.0031 M; 0.0598 M", + "1 M; 1.05 M", + "0.5 M >> 20 mg/ml", + "573.3 mg/ml; 197.7 mg/ml", + "0.1426 M; 1.56 M; 1.74 M >> 4 mM", + "1 M >> 10 mg/ml >> 5 mM", + "2 wt%; 163.33 mg/ml; 535.2 mg/ml", + "0.75; 0.75; 0.75", + "0.1426 M; 1.56 M; 1.74 M >> 10 mM", + "1 M >> 7 mg/ml", + "0.75 M; 0.50 M; 1 M", + "1 M >> 8 mg/ml", + "0.5 M >> 38 mg/ml", + "553 mg/ml; 190 mg/ml", + "0.5 M; 0.5 M; 0.6 M; 0.3 M", + "1 M >> 10 mg/ml >> 10 mM", + "1 M; 1.06 M", + "nan >> 2 mg/ml", + "1.25 M; 1.25 M >> nan", + "1.5 M; nan", + "462 mg/ml >> nan >> 10 mg/ml", + "1.4 M; 1.4 M", + "1.08 M; 1.08 M; 0.12 M", + "1.2 M >> 1.6 mol%", + "nan >> 5 mg/ml", + "500 mg/ml >> 10 mg/ml >> nan", + "1 M >> 0.07 M", + "nan >> 3 mg/ml", + "46.8 mg/ml; 226.9 mg/ml; 0.05 vol%; 608.5 mg/ml >> 7 mg/ml", + "0.3 M; 0.06", + "1.5 M >> 62.3 M", + "3 vol%; 0.05 M; 0.95 M; 1 M", + "1 M; 0.2 M; 1 M; 1.1 M", + "1.3 M; 1.3 M; 1.3 M; 1.3 M | 1 mg/ml", + "1.5 M; 1.5 M", + "1.5 M >> 23.5 mM; 70.8 mM", + "0.1426 M; 1.56 M; 1.74 M >> 2 mM", + "1.35 M; 1.35 M", + "1.25 M; 1.3 M", + "440 mg/ml; 180 mg/ml", + "1.1 M; 0.2 M; 1.15 M; 0.2 M", + "50 mg/ml >> nan >> nan >> 50 mg/ml >> nan >> nan >> 50 mg/ml >> nan >> nan", + "1.2 M", + "400 mg/ml >> 10 mg/ml", + "1.0 M; 1.1 M", + "462 mg/ml >> 10 mg/ml >> nan", + "52.6 mg/ml; 197.4 mg/ml; 622.4 mg/ml", + "1 M >> 10 mg/ml >> 2.5 mM", + "0.85 M; 0.15 M; 0.15 M; 0.85 M", + "0.8 M; 0.3 vol%; 0.12 M; 0.68 M", + "0.05 M; 1.1 M; 0.2 M; 0.2 M; 1.25 M", + "0.5 M; 0.5 M >> 20 mg/ml", + "0.90 M; 0.90 M; 0.10 M", + "1.3 M; 0.14 M; 1.26 M; 50 mg/ml", + "nan; 1 M; 0.2 M; 0.2 M; 1.1 M", + "0.5 M; 1 M; 1 M", + "1.4 M >> 10 mg/ml; nan", + "1.8 M; 1.8 M >> nan", + "1 M; 0.07 M", + "2; 1", + "450 mg/ml >> 5 mg/ml; 50 mg/ml", + "1 M >> nan", + "1 :3molarratio", + "2 wt%; 2.43 M; 0.81 M", + "0.8 M; 0.3 vol%; 0.28 M; 0.52 M", + "0.11 M; 0.91 M; 0.18 M; 0.186 M; 1.014 M", + "2.44 M; 2.44 M; 0.9 M", + "1.3 M; 1.3 M", + "1 M; 57 wt%; 33 wt%; nan; nan", + "13.7 mg/ml; 197.5 mg/ml; 573 mg/ml", + "0.98 M; 1 M", + "70 mg/ml", + "1.02 M; 0.18 M; 0.18 M; 1.02 M", + "1 mM; 1 mM >> 30 mg/ml", + "nan; 10 mg/ml", + "1 M >> 50 mg/ml", + "0.95 M; 0.05 M; 0.05 M; 0.95 M", + "461 mg/ml; 159 mg/ml", + "691.5 mg/ml >> nan; nan", + "0.5 M >> 36 mg/ml", + "0.4 M; 0.8 M; 0.8 M", + "1 M; 50 mM", + "0.75 M; 0.75 M", + "367 mg/ml", + "1.125; 0.75; 0.75", + "0.2 M; 0.22 M; 1.1 M; 1 M", + "0.5 M >> 50 mg/ml", + "45 wt%", + "636.4 mg/ml; 90 mg/ml; 89.79 wt%; 8.97 wt%", + "33.8 mg/ml; 599 mg/ml >> 60 mg/ml; 6 mg/ml; 6 mg/ml", + "1.2 M; 0.28 M", + "0.18 M; 1.02 M; 1.2 M; 0.1 M", + "1.2 mM", + "0.5 M >> 34 mg/ml", + "1 M; 0.2 M; 1.1 M; 0.2 M", + "66 mg/ml; 187 mg/ml; 12 mg/ml; 80 mg/ml; 568 mg/ml; nan", + "0.3 M; 1.2 M >> 40 mg/ml", + "0.5 M >> 32 mg/ml", + "1.5; 0.75; 0.75", + "1.3 M; 0.14 M; 1.26 M", + "2.7 M; 0.9 M", + "0 M; 0.8 M; 0.8 M", + "0.5 M >> 30 mg/ml", + "227.14 mg/ml; 80 mg/ml; 527.14 mg/ml", + "510 mg/ml >> 8.5 mg/ml >> nan", + "0.15 M; 0.85 M; 1 M", + "1 M; 1 M; 1 M", + "nan >> 0.5 mg/ml", + "0.5 M; 0.5 M; 1 M; 0.2 M", + "1.8 M; 0.45 M; 0.45 M", + "1 M >> 10 mg/ml", + "2.4 M; 0.8 M", + "0.6 M; 0.6 M >> 50 mg/ml >> nan >> nan >> 50 mg/ml >> nan >> nan >> 50 mg/ml >> nan >> nan", + "1 mol/L; 1 mol/L", + "0.7 M; 0.7 M", + "50.87 mg/ml; 147.5 mg/ml", + "1.42 M; 1.42 M", + "0.18 M; 1.32 M; 1.5 M", + "0.4 M", + "1.25 M; 1 M", + "0.05 M; 1.0 M; 0.2 M; 0.2 M; 1.1 M", + "450 mg/ml >> 50 mg/ml", + "1 M >> 0.0031 M; 0.0126 M; 0.0472 M", + "0.06 M; 0.96 M; 0.18 M; 0.186 M; 1.014 M", + "1.02 M; 0.18 M; 0.186 M; 1.014 M", + "0.375; 0.75; 0.75", + "0.5 M >> 40 mg/ml", + "159 mg/ml; 461 mg/ml >> 461 mg/ml", + "1.467; 1.6", + "0.6 M; 0.6 M", + "0.05 M; 1 M; 0.2 M; 0.2 M; 1.1 M", + "1.59 mol/kg; 1.59 mol/kg", + "0.11 M; 1.07 M; 0.19 M; 0.19 M; 1.23 M", + "197.6 mg/ml; 787 mg/ml", + "0.15 M; 0.75 M; 0.1 M; 1 M", + "1.467; 1.6; 2 mol%", + "206.2 mg/ml; 597.8 mg/ml", + "1.5 M; 0.75 M", + "1.53 M; 1.4 M; 0.5 M; 0.0122 M; 0.0122 M", + "5 wt%; 1.4 M >> 60 mg/ml; 6 mg/ml", + "2.25 M; 0.75 M", + "nan >> 0.16 ml/ml; 9.04 mg/ml; 23.04 mg/ml", + "0.8 M; 0.3 vol%; 0.2 M; 0.6 M", + "1 M; 1 M", + "1.6 M", + "9 wt%; 26 wt%", + "1.2 M; 1.2 M", + "397 mg/ml >> 9 mg/ml", + "1.6 mol%; 1.2 M; 1.2 M >> 1.6 mol%; 1.2 M; 1.2 M", + "1 wt%; 2.43 M; 0.81 M", + "75 mg/ml >> 1 mg/ml >> 1 mg/ml", + "0.9 M; 0.3 M; 1.0 M; 0.3 M", + "0.14 M; 1.4 M >> 70 mg/ml", + "1.3 M; 0.14 M; 1.26 M; 75 mg/ml", + "0.5 M; 0.5 M >> 20 mg/ml; 0.005 mg/ml", + "6.4 wt%; 33.6 wt%", + "1.05 M; nan", + "0.9 M; 0.9 M", + "636.4 mg/ml; 90 mg/ml; 89.79 wt%; 8.97 wt%; 4 wt%", + "1 M; 0.2 M; 0.22 M; 1.1 M", + "1.1 M; 10 mg/ml", + "1.4 M; 1.45 M", + "0.17 M; 0.83 M; 0.5 M; 0.5 M", + "0.172 mg/ml; 0.022 mg/ml; 0.507 mg/ml; 0.08 mg/ml >> 1.5 M", + "0.072 M; 1.11 M; 0.21 M; 0.21 M; 1.2 M", + "0.5 M; 1.2 M; 1 M; 0.2 M", + "330 mg/ml >> 10 mg/ml", + "1.4 M", + "1.3 M; 1 M", + "0.05 M; 0.95 M; 1 M", + "3 M; 1 M", + "450 mg/ml >> 50 mg/ml; 10 mg/ml", + "2.1 M; 0.7 M", + "596 mg/ml; 200 mg/ml", + "nan >> nan", + "159 mg/ml; 461 mg/ml", + "0.4 M; 0.4 M; 0.8 M", + "1.3 M; 1.35 M", + "0.6 M; 0.6 M >> 50 mg/ml >> nan >> nan >> 50 mg/ml >> nan >> nan >> 50 mg/ml >> nan >> nan >> nan", + "0.2 M; 0.8 M >> 15 mg/ml", + "2.55 M; 0.85 M", + "1.3 M; 0.14 M; 1.26 M; 5 mg/ml", + "26 mg/ml; 172 mg/ml; 22.4 mg/ml; 16.7 mg/m; 507 mg/ml; 73.4 mg/ml", + "0.1426 M; 1.56 M; 1.74 M >> 6 mM", + "0.88 M; 1.1 M; 0.44 M", + "460 mg/ml >> 10 mg/ml", + "199 mg/ml; 605.5 mg/ml", + "1 M; 10 mg/ml", + "20 mg/ml; 172 mg/ml; 22.4 mg/ml; 507.2 mg/ml; 73.4 mg/ml", + "1.1 M; 1.1 M", + "0.1125 M; 1.1375 M; 1.25 M", + "46.8 mg/ml; 226.9 mg/ml; 0.05 vol%; 608.5 mg/ml >> 28 mg/ml", + "1 M; 0.5 M; 0.5 M", + "163.33 mg/ml; 535.2 mg/ml", + "190 mg/ml; 0.0176 mg/ml; 530 mg/ml", + "1.4 M >> 10 mg/ml", + "0.54 M; 0.54 M; 0.06 M", + "0.2 M; 0.2 M; 1.1 M; 1 M", + "470 mg/ml >> 50 mg/ml; 5 mg/ml", + "0.196 mg/mLPbI2; 1.5 M", + "28 wt%", + "20 mg/ml; 1.6 M; 1.6 M; 20 mg/ml", + "1.0 M", + "0.5 M; 0.75 M; 1 M", + "1.4 M; 0.1 M; 0.01 M; 1.4 M; 0.1 M", + "40 wt%", + "0.214 mg/mLPbI2; 1.5 M", + "1 wt%; 163.33 mg/ml; 535.2 mg/ml", + "1.875 M; 0.75 M", + "1.3 M | 1.3 M", + "4 M; 1 M", + "5 vol%; 0.05 M; 0.95 M; 1 M", + "1.3 M >> 60 mg/ml; 6 mg/ml; 6 mg/ml", + "1.2 M; 1.2 M >> nan", + "238.5 mg/ml; 726 mg/ml", + "1.8 M >> nan", + "0.5 M; 0.5 M; 0.4 M", + "0.21 M; 0.81 M; 0.18 M; 0.186 M; 1.014 M", + "687 mg/ml; 237 mg/ml", + "nan; nan", + "1.2 M >> 8 mg/ml", + "691.5 mg/ml >> 70 mg/ml", + "nan >> 7 mg/ml", + "1.25 M; 1.25 M", + "60 mg/ml >> 1.3 M", + "0.348 mg/ml; 0.922 mg/ml", + "0.075 M; 1 M; 0.2 M; 1 M; 1.1 M", + "254.4 mg/ml; 737.6 mg/ml", + "1 :1mol%", + "0.1 M; 0.06", + "20 wt%", + "1.24 M", + "1; 0.2; 1; 1.1", + "0.1426 M; 1.56 M; 1.74 M", + "0.8 M; 0.3 vol%; 0.18 M; 0.62 M", + "1 M >> 0.0126 M; 0.0503 M", + "1.4 M >> 70 mg/ml", + "0.9 M; 0.1 M; 0.1 M; 0.9 M", + "1.35 M; 0.14 M; 1.26 M", + "0.70 M; 0.17 M; 0.10 M; 1.30 M", + "0.18 M; 1.02 M; 1.5 mg/ml; 1.2 M", + "1 M; 0.33 M; 0.66 M", + "1 M; 1 M >> nan", + "46.8 mg/ml; 226.9 mg/ml; 0.05 vol%; 608.5 mg/ml", + "21.25 wt%; 21.25 wt%", + "3.75 M; 1.25 M", + "100 mg/ml; 300 mg/ml", + "0.375 M; 0.75 M", + "19.4 mg/ml; 172 mg/ml; 22.4 mg/ml; 73.4 mg/ml; 507 mg/ml; nan", + "2.2 M; 2 M", + "112 mg/ml; 38 mg/ml", + "nan; 1 M; 0.2 M; 0.2 M; 1.1 M >> 100 mM", + "0.063 M; 1.25 M; 1.25 M; 1.14 M; 1.14 M", + "1.2 M; 0.3 M; 0.3 M", + "400 mg/ml >> nan", + "7 mg/ml; 1.2 M; 0.2 M", + "1.3 M; 0.14 M; 1.26 M; 20 mg/ml", + "0.12 M; 1.08 M >> 8 mg/ml", + "nan; 1 M; 0.2 M; 0.2 M; 1.1 M >> 50 mM", + "0.24 M; 1.36 M >> 30 mg/ml; 70 mg/ml", + "1.467; 1.6; 4 mol%", + "0.06 M; 1.14 M >> 8 mg/ml", + "1.2 M; 8 mg/ml", + "190.8 mg/ml; 553 mg/ml", + "197.6 mg/ml; 787 mg/ml; 19.1 mg/ml", + "46.8 mg/ml; 226.9 mg/ml; 0.05 vol%; 608.5 mg/ml >> 14 mg/ml", + "0.3 M; 0.3 M", + "32 wt%", + "16.89 mg/ml; 600 mg/ml >> 1 mg/ml; 10.75 mg/ml", + "198 mg/ml; 577 mg/ml", + "0.3 M; 0.3 M; 0.6 M", + "1.10 M; 0.20 M; 0.20 M; 1.15 M", + "0.8 M; 0.2 M; 0.2 M; 0.8 M", + "1.8 M; 0.45 M; 0.45 M >> nan", + "0.72 M; 0.72 M; 0.08 M", + "0.06 M; 0.95 M; 0.19 M; 0.2 M; 1 M", + "4.07 mg/ml; 9.66 vol%; 48.85 vol%; 6.9 mg/ml; 10 vol%", + "0.07 M; 1.4 M >> 70 mg/ml", + "1 vol%; 1.1 M; 1.1 M", + "0.22 M; 0.66 M", + "nan; 1 M; 0.2 M; 0.22 M; 1.1 M", + "462 mg/ml >> 20 mg/ml", + "1.2 M >> 45 mg/ml", + "nan; 1 M; 0.2 M; 0.2 M; 1.1 M >> 500 mM", + "460 mg/ml >> 0.15 M", + "1.38 M; 1.38 M", + "0.8 M; 0.3 vol%; 0.8 M", + "460 mg/ml >> nan; nan", + "0.039 M; 0.091 M; 1.1 M; 0.2 M; 1.2 M; 0.2 M", + "39.5 mg/ml; 115.7 mg/ml", + "0.442 molal; 1.07 molal; 1.48 molal; 13.6 mg/ml", + "6.4 wt%; 33.6 wt% >> nan", + "0.1426 M; 1.56 M; 1.74 M >> 8 mM", + "0.3 M; 1.2 M >> 40 mg/ml >> 2 mg/ml", + "0.442 molal; 1.07 molal; 1.48 molal; 13.6 mg/ml >> 1 mg/ml", + "1 M.0.03M; 0.07 M", + "nan >> 1 mg/ml", + "2.43 M; 0.81 M", + "0.8 M; 10 mg/ml", + "1 M; 0.952 M; 0.048 M", + "1 M >> 30 mg/ml", + "460 mg/ml >> 8.3 mg/ml >> nan", + "2 M; 1 M", + "0.06 M; 1 M; 0.2 M; 0.2 M; 1.1 M", + "0.8 M; 0.8 M" + ] + } + } + ] + }, + "name": "reaction_solutions_concentrations", + "description": "The concentration of the non-solvent precursor chemicals.\n- When more than one reaction step, separate the concentrations associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of deposition steps and chemicals must line up with the previous columns.\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated concentrations and separate them with semicolons, as in (A; B)\n- The order of the chemicals must line up to the chemicals in the previous column.\n- The order of the compounds must be the same as in the previous filed.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- For gas phase reactions, state the concentration as \u2018none\u2019\n- For solid-state reactions, state the concentration as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used. When possible, use one of the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml, wt%, mol%, vol%, ppt, ppm, ppb\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n0.063 M; 1.25 M; 1.25 M; 1.14 M; 1.14 M\n1.25 M; 1.25 M >> 1.14 M; 1.14 M; 10 mg/ml\n1 M; 1 M >> none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "0.02", + "0.045", + "0.07; Unknown", + "Unknown >> 0.05", + "Unknown >> 0.2", + "0.06 >> Unknown", + "0.75; 0.15; 0.1; 0.05 | 0.09", + "1.25", + "5.0", + "0.05", + "Unknown >> 0.04", + "Unknown", + "0.065", + "0.08", + "0.04 >> 0.04", + "0.075", + "0.035", + "Unknown >> 0.0157 >> 0.5", + "Unknown >> Unknown >> Unknown", + "0.05 >> 0.1", + "Unknown >> Unknown >> 50.0", + "0.25", + "Unknown >> Unknown", + "0.0025; 0.0025", + "0.06", + "0.01", + "0.08 >> 0.1", + "1.0", + "0.003", + "Unknown >> 8.0", + "0.1", + "Unknown >> 0.00942 >> 0.5", + "0.08 >> Unknown >> Unknown", + "0.03 >> 0.2", + "0.03" + ] + } + } + ] + }, + "name": "reaction_solutions_volumes", + "description": "The volume of the reaction solutions used. used in each deposition procedure\n- When more than one reaction step, separate the volumes associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The volumes refer the volumes used, not the volume of the stock solutions. Thus if 0.15 ml of a solution is spin-coated, the volume is 0.15 ml\n- For reaction steps without solvents, state the volume as \u2018nan\u2019\n- When volumes are unknown, state that as \u2018nan\u2019\nExample\n0.04\nnan >> 0.1\nnan >> 10", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "0.0 | 0.0", + "24.0", + "3.0", + "1.0 >> 2.0", + "60.0; 25.0", + "600.0", + "12.0", + "Unknown", + "0.08", + "Unknown >> 60.0", + "2.0 >> Unknown", + "8.0", + "70.0", + "6.0", + "0.167", + "Unknown >> Unknown", + "2.0", + "Unknown >> 30.0", + "12.0 >> Unknown >> Unknown", + "0.5", + "12.0 >> 0.033", + "1.0", + "48.0", + "Unknown >> 45.0", + "8.0; 12.0" + ] + } + } + ] + }, + "name": "reaction_solutions_age", + "description": "The age of the solutions used in the deposition\n- When more than one reaction step, separate the age of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- As a general guideline, the age refers to the time from the preparation of the final precursor mixture to the reaction procedure.\n- When the age of a solution is not known, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state this as \u2018nan\u2019\n- For solutions that is stored a long time, an order of magnitude estimate is adequate.\nExample\n0.5\nnan >> 10\n10000 >> nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "80 | Unknown", + "25", + "310 >> 150 >> 25", + "25 >> 13", + "0 | Unknown", + "Unknown; 50", + "40 | Unknown", + "70 >> 25 >> 25", + "70 >> 80", + "50.0", + "Unknown >> 150", + "70", + "125.0", + "Unknown", + "60; Unknown", + "25; 25", + "100", + "130", + "75.0", + "60; 25", + "100.0", + "Unknown >> 160", + "70 | Unknown", + "12", + "75", + "60", + "65", + "70 >> 25 >> 70", + "Unknown >> 120", + "25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25", + "90", + "25 >> 25", + "80 >> 25", + "Unknown >> 140", + "Unknown >> 25", + "150.0", + "70; 25", + "100 >> 25", + "25.0", + "80; 25", + "75 >> 25", + "70 >> 25", + "50", + "70 >> Unknown", + "55; 100 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25", + "55; 100", + "Unknown; 150", + "60 >> 60", + "60 >> 70" + ] + } + } + ] + }, + "name": "reaction_solutions_temperature", + "description": "The temperature of the reaction solutions.\n- If there is more than one reaction step involved, list the solution temperatures and separate the data for each step by a double forward angel bracket (\u2018 >> \u2018)\n- If a reaction solution undergoes a temperature program, list the temperatures (e.g. start, end, and other important points) and separate them with a semicolon (e.g. heated to 80\u00b0C and cooled to room temperature before used would be80; 25)\n- When the temperature of a solution is not known, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state the temperature of the gas or the solid if that make sense. Otherwise mark this with \u2018nan\u2019\n- Assume that an undetermined room temperature is 25\nExample\n25\nnan >> 50\n80; 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "80 | Unknown", + "", + "25", + "0 | Unknown", + "25 >> 13", + "85 >> 25", + "40 | Unknown", + "0", + "25 >> 50", + "85", + "70", + "25 >> 110", + "-10", + "21", + "Unknown", + "100", + "25 >> Unknown", + "120", + "Unknown >> 20; 110", + "40", + "150", + "25 >> 130", + "140.0", + "70 | Unknown", + "25 >> 75", + "100 >> Unknown", + "70.0", + "60", + "Unknown >> 70", + "190.0", + "90", + "Unknown >> Unknown", + "25 >> 25", + "80 >> 25", + "25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25", + "25 >> 90", + "Unknown; 25 >> 25; 150 >> 25", + "175", + "Unknown >> 25", + "25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25", + "100 >> 25", + "70 >> 25", + "90 | 25", + "25 >> 150", + "50", + "Unknown >> 25 >> 25", + "70 >> Unknown", + "70 >> 150", + "90 >> 25", + "10" + ] + } + } + ] + }, + "name": "substrate_temperature", + "description": "The temperature of the substrate on which the perovskite is deposited.\n- When more than one reaction step, separate the temperatures of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a reaction solution undergoes a temperature program, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons, e.g. 25; 100\n- When the temperature of a solution is unknown, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state the temperature of the gas or the solid if that make sense. Otherwise state this as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume an undetermined room temperature to be 25\nExample\n25\n70 >> 25\nnan >> 40", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "quenching_induced_crystallisation", + "description": "TRUE is measures were taken to discontinuously accelerate the crystallisation process without significantly changing the temperature. i.e. an antisolvent treatment or an analogue process was used.\n- The most common case is the antisolvent treatment where a volume of a solvent in which the perovskite is not soluble is poured on the substrate during spin coating.\n- The same effect can also be achieved by blowing a gas on the sample\n- If the sample quickly after spin coating is subjected to a vacuum, this also counts as quenched induced crystallisation", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Tetraethyl orthosilicate", + "2-butylalcohol", + "Chlorobenzene; TBP", + "Chlorobenzene; DMSO", + "Butyl acetate", + "Air plasma", + "Tetrachloroethane", + "2-Butanol; Ethyl ether", + "Ethyl ether; Hexane", + "Ethyl acetate; IPA", + "Bromobenzene", + "Tetrafluorotoluene", + "Thermal radiation", + "p-xylene", + "MeOAc", + "Chlorobenzene; H2O", + "Chlorobenzene", + "Methyl-phenoxide", + "Chlorobenzene; Ethyl acetate", + "Chloroform; Toluene", + "Ethanol", + "Pumping solvent", + "Acetone", + "Ar", + "Ethyl ether", + "Chloroform", + "N2", + "Gas", + "Anisole; Toluene", + "o-xylene", + "Diethyl ether; Chlorobenzene", + "NIR", + "Chlorobenzene; 2-Butanol", + "He", + "Di-n-butyl ehter", + "n-Butyl alcohol", + "Diethyl ether", + "Rotating magnetic field", + "Dry air", + "Diphenyl ether", + "liquid N2; N2", + "Chlorobenzene; Ether", + "Chlorobenzene; N2", + "Chlorobenzene; Toluene", + "Chloroform; Hexane", + "Trifluorotoluene", + "Dichlorobenzene", + "2-Butanol; Chlorobenzene; Ethyl ether", + "acetonitrile; Chlorobenzene", + "Unknown", + "Ethyl benzene", + "Trimethylbenzene", + "Diclorobenzene; Toluene", + "Ethyl acetate; Petroleum ether", + "Petroleum ether", + "N2 >> Chlorobenzene", + "TEOS", + "Diethyl ether; Methanol", + "2-Butanol", + "Air", + "Diisopropyl ether", + "Vacuum", + "2-Butanol; Chlorobenzene", + "Hot air", + "Diethyl ether; Toluene", + "Ether", + "Hexane", + "Ethanol; Toluene", + "Ethyl acetate; Toluene", + "Dichloromethane", + "Di-n-propyl", + "Chlorobenzene; Diethyl ether", + "Anisole", + "Chlorobenzene; Ethanol", + "Anisole; Chlorobenzene", + "Chlorobenzene; Diiodooctane", + "n-BA", + "Flash infrared annealling", + "Antisolvent", + "Methanol", + "Chlorobenzene; IPA", + "IR", + "Ethyl acetate", + "Anisole >> N2", + "Triochloromethane", + "Methyl acetate", + "Chlorobenzene; Chloroform", + "Propyl acetate", + "Toluene", + "Isopropyl acetate; Toluene", + "IPA", + "Hot substrate", + "Iodobenzene", + "Chlorobenzene; Acetic acid" + ] + } + } + ] + }, + "name": "quenching_media", + "description": "The solvents used in the antisolvent treatment\n- If the antisolvent is a mixture of different solvents, e.g. A and B, list the solvents in alphabetic order and separate them with semicolonsas in (A; B)\n- If gas quenching was used, state the gas used\n- If the sample quickly after spin coating was subjected to a vacuum, state this as \u2018Vacuum\u2019\n- If an antisolvent was used but it is unknown which one, stat this as \u201cAntisolvent\u201d\n- If no antisolvent was used, leave this field blank\nExample\nChlorobenzene\nToluene\nDiethyl ether\nEthyl acetate\nN2\nVacuum\nAnisole", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1; 0.08", + "1; 0.2", + "990; 10", + "1; 0.02", + "3; 7", + "90; 10", + "9; 1", + "1", + "1; 1", + "10; 90", + "98; 2", + "75; 25", + "49; 1", + "4; 1", + "1; 0.04", + "1; 0.01", + "9; 5; 5", + "1; 0.5", + "6; 94", + "96; 4", + "30; 70", + "47; 3", + "1; 0.12", + "97; 3", + "15; 1", + "1; 0.10", + "25; 75", + "1; 0.3", + "1; 0.4", + "2; 3", + "20; 80", + "95; 5", + "99; 1", + "40; 60", + "1; 3", + "50; 50", + "1; 0.06", + "5; 95", + "70; 30", + "24; 1", + "2; 25", + "1; 0.7", + "92; 8", + "1; 4" + ] + } + } + ] + }, + "name": "quenching_media_mixing_ratios", + "description": "The mixing ratios of the antisolvent\n- The order of the solvent must line up with the previous column\n- For solvent mixtures, i.e. A and B, state the mixing ratios by using semicolons, as in (VA; VB)\n- The preferred metrics is the volume ratios. If that is not available, mass or mol ratios can be used instead, but it the analysis the mixing ratios will be assumed to be based on volumes.\n- For pure solvents, give the mixing ratio as 1\n- For non-solvent processes, give the mixing ratio as 1\nExample\n1\n4; 1", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "40.0", + "90.0", + "300.0", + "350.0", + "50.0", + "425.0", + "125.0", + "0.6", + "600.0", + "120.0", + "Unknown", + "450.0", + "180.0", + "45.0", + "100.0", + "900.0", + "130.0", + "400.0", + "140.0", + "240.0", + "30000.0", + "70.0", + "110.0", + "80.0", + "250.0", + "190.0", + "30.0", + "500.0", + "150.0", + "750.0", + "700.0", + "1.0", + "1000.0", + "20.0", + "160.0", + "200.0" + ] + } + } + ] + }, + "name": "quenching_media_volume", + "description": "The volume of the antisolvent\n- For gas and vacuum assisted quenching, stat the volume as \u2018nan\u2019\n- If the sample is dipped or soaked in the antisolvent, state the volume of the entire solution", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "FABr", + "CsPbBr3-QDs", + "F-PDI", + "2,9,16,23-tetra-tert-butyl-29H,31H-phthalocyanine", + "Poly(TA)", + "K2Rrubrene", + "L\u2010Leucine", + "Undoped", + "Acetylene black", + "ITIC", + "CsI", + "MAI", + "PbS-QDs", + "MABr", + "6TIC-4F", + "Poly(9-vinylcarbazole)", + "Hex", + "PDMS", + "AQ310", + "P3HT", + "FAI", + "Cl-functionalized C-np", + "ITIC; PCBM-60", + "ThFAI; MAI, MACl", + "SM", + "Au-np", + "Rubrene", + "PEG", + "PCBM-60", + "Graphdiyne", + "Carbon black", + "MEH-PPV", + "FAI; MABr", + "PAMS", + "Graphydine-QDs", + "SWCNTs", + "bis-PCBM-60", + "La:BaSnO3-np", + "NPB", + "Spiro-MeOTAD", + "FAPbBr3-QDs", + "C60", + "BAI", + "MAPbBr3-QDs", + "PS", + "PBTI", + "BiFeO3-np", + "BHT", + "DF-C60", + "CuPc", + "tFM-PMAI", + "PTB7; ITIC", + "PTAA", + "IDIC-Th", + "CsPbBr3-np", + "PBDB-T", + "Carbon-nt", + "PCBM-60; TIPD", + "PABr", + "ADAHCl", + "MACl", + "[M4N]BF4", + "IEICO-4F", + "H2O", + "HI", + "PEAI", + "Au@CdS", + "I2", + "PFA", + "TPFPB", + "IDIC", + "Br passivated C-np", + "DPPS", + "HEA", + "Polyurethane", + "EABr", + "MA", + "F16CuPc", + "C60; PEG", + "PTB7", + "AQ", + "PMMA", + "MAPbI3-QDs", + "(PEA)2PbI4" + ] + } + } + ] + }, + "name": "quenching_media_additives_compounds", + "description": "List of the dopants and additives in the antisolvent\n- If several dopants/additives, e.g. A and B, are present, list the dopants/additives in alphabetic order and separate them with semicolonsas in (A; B)\n- If no dopants/additives, leave the field blank", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.1 mg/ml", + "9 mg/ml", + "0.024 mM", + "40 mg/ml", + "0.24 mg/ml; 0.24 mg/ml", + "25 mg/ml", + "20 mg/ml", + "0.32 mg/ml; 0.16 mg/ml", + "20 vol%", + "1 vol%", + "0.25 M", + "0.00001 M", + "0.5 mg/ml", + "0.05", + "0.005", + "0.5 vol%", + "8 mg/ml", + "0.001 M", + "1 mg/ml", + "0.25 mg/ml", + "4 vol%", + "5 mg/ml", + "0.36 mg/ml; 0.12 mg/ml", + "0.1 M", + "0.015", + "2 mg/ml", + "0.3 mg/ml", + "6 mg/ml", + "0.03", + "0.000001 M", + "15 mg/ml", + "12 mg/ml", + "30 mg/ml", + "2 vol%", + "10 mg/ml", + "10 wt%", + "3 mg/ml", + "0.0001 M", + "5 wt%", + "0.7 mg/ml", + "4 mg/ml", + "0.5 M" + ] + } + } + ] + }, + "name": "quenching_media_additives_concentrations", + "description": "The concentration of the dopants/additives in the antisolvent\n- If more than one dopant/additive in the layer, e.g. A and B, separate the concentration for each dopant/additive with semicolons, as in (A; B)\n- For each dopant/additive, state the concentration.\n- The order of the dopants/additives must be the same as in the previous filed.\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used.\n- The preferred way to state the concentration of a dopant/additive is to refer to the amount in the final product, i.e. the material in the layer. When possible, use on the preferred units\no wt%, mol%, vol%, ppt, ppm, ppb\n- When the concentration of the dopant/additive in the final product is unknown, but where the concentration of the dopant/additive in the solution is known, state that concentration instead. When possible, use on the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "70.0 >> 70.0; 90", + "70; 100 >> 150", + "320; 200", + "105.0 >> 105.0 >> Unknown", + "90.0", + "170.0 >> 100.0", + "65 | 130", + "45; 105", + "Unknown >> 105", + "325.0", + "Unknown >> 25.0", + "85", + "50.0", + "Unknown >> 280.0", + "70.0 >> 165.0", + "100.0 >> Unknown", + "220.0", + "70.0 >> 100.0", + "70.0 >> 85.0", + "45; 100 >> 100", + "100; 125", + "150.0 >> 150", + "Unknown >> 100", + "180.0", + "65.0; 150", + "60.0; 80.0", + "45.0", + "320; 250", + "100 >> 165.0", + "240; 105", + "120.0 | Unknown", + "25 >> 130", + "70 | Unknown", + "90; 25 >> 25 >> 150", + "150.0 >> 100", + "85.0 >> 105.0", + "40 >> 180", + "Unknown | 100.0", + "Unknown >> 90.0", + "85; 100", + "30; 160", + "65; 100 >> Unknown", + "95", + "Unknown >> 115", + "150; 100", + "70.0 >> 110.0", + "70.0 | 140.0", + "Unknown >> Unknown >> 100", + "135", + "105.0 >> 105", + "40.0; 100 >> 90.0", + "65.0; 135.0", + "200; 105", + "70.0 >> 70.0; 70.0", + "100.0 >> 135.0", + "50 >> 260", + "45; 65; 100", + "75 >> 75; 70", + "25.0; 280.0", + "100.0 >> 185.0", + "400.0 >> 400.0", + "70 | 130", + "100; 120", + "80 >> 110", + "70.0 >> 70", + "115; 100", + "80.0 >> 135.0", + "Unknown >> 350", + "100.0 >> 75.0; 100", + "Unknown >> 130", + "90.0 >> 250.0 >> 250.0 >> 250.0", + "Unknown >> 50; 100", + "95.0", + "25; 300", + "90.0 >> Unknown", + "70.0 >> 80.0", + "40; 100 >> 40; 100", + "140.0 >> Unknown", + "40; 100 >> 100", + "40.0 >> 150.0", + "70.0", + "100 >> 150", + "140.0 >> 145.0", + "60.0; 80.0; 100.0", + "42.0; 160.0", + "160; 100", + "70; 90 >> 250", + "500.0", + "70 >> 100.0", + "90 >> 250", + "60.0 >> 90.0", + "90.0 >> 90.0", + "0 >> 100", + "Unknown >> 60", + "70 >> Unknown", + "145 >> 100", + "100.0 >> 100.0 >> 100.0", + "130.0 >> Unknown >> 100.0", + "70.0; 100 >> 100.0", + "60; 85", + "150.0 >> 100.0", + "120; 100", + "80 >> 100", + "260.0", + "75; 105", + "80.0 >> 110.0", + "85.0 >> 90.0", + "175.0", + "100.0 >> 100", + "Unknown >> 275.0", + "160.0 >> 160.0", + "Unknown >> 150.0", + "40 >> 180 >> 130", + "20.0; 70.0; 100.0; 120.0", + "90 >> 250 | 85", + "Unknown >> 320.0", + "20; 70", + "45 >> 160", + "90; 25 >> 25 >> 90", + "65; 135", + "240.0", + "Unknown >> 70", + "38.0; 160.0", + "110.0 >> 250.0", + "70 >> 25 >> Unknown", + "70.0; 100 >> 90", + "25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> Unknown", + "60.0 >> 60.0 >> Unknown", + "90", + "Unknown >> Unknown", + "130 >> 70", + "120.0 >> 100.0", + "Unknown >> 325.0", + "330.0", + "Unknown >> Unknown >> 120", + "40; 60; 70; 100", + "75.0 >> 250.0", + "70.0; 90.0 >> 90.0", + "70 >> 100", + "Unknown >> 85", + "120 >> 80", + "100; 100", + "90 >> 95", + "25.0 >> 100.0", + "55; 240", + "85.0", + "40 | 100 | 100", + "40.0; 95.0", + "25; 50; 75; 100", + "260.0 >> Unknown >> Unknown", + "70.0 >> 90.0", + "90.0 >> 250.0", + "100 >> 70; 100", + "90.0; 125.0", + "20; 100", + "100.0 >> 55.0", + "70; 250", + "Unknown >> 40; 100; 130", + "120.0 >> 80.0", + "Unknown >> 70.0; 150", + "60 >> 250", + "280", + "25.0 >> 170.0 >> 170.0 >> 170.0", + "80; 120; 180", + "60.0 >> 100.0", + "27.0 >> 100.0", + "52; 105", + "150.0; 100.0", + "70.0 | 120.0", + "80.0 >> 140.0", + "100 >> 70", + "65; 105", + "90.0 >> 60.0", + "Unknown >> Unknown >> 70.0", + "25; 90", + "25; 95", + "180 >> 280", + "70 >> 120", + "110.0 | 25.0 | 25.0 | 110.0", + "Unknown >> 120.0", + "Unknown | 150", + "60; 80; 100 >> Unknown", + "Unknown >> 104.0", + "70; 300", + "160; 230", + "45.0; 160.0", + "80.0; 120.0", + "20.0", + "25; 100", + "165.0", + "50", + "20.0 >> 100.0", + "50; 100 >> 100", + "125.0 >> 100.0", + "70.0 >> 130.0", + "110; 70", + "60; 140", + "100 >> 65", + "110.0 >> 70.0", + "92.0", + "70 >> 60; 100", + "25; 60", + "150 >> 150 >> 150 >> 150", + "105.0 >> 105.0", + "80 >> 80", + "0.0; 60.0; 70.0; 80.0; 90.0", + "60; 80", + "180", + "70; 110; 150", + "100.0 >> 250.0", + "40; 90 >> 95", + "100; 330", + "100.0; 100", + "130; 150", + "70.0 >> 75.0", + "50.0 >> Unknown", + "72.0 >> 140.0", + "70.0; 100.0 >> 100.0", + "25 >> 90.0", + "100; 110; 120", + "300.0 >> Unknown", + "90; 250 >> 250", + "20; 90", + "65", + "250.0", + "20; 70; 100; 120", + "60 >> 100", + "70.0 >> 145.0", + "100.0 >> 100.0 >> 175.0", + "65.0", + "50; 150; 270", + "71.0 >> 70.0", + "200; 150", + "150.0", + "35; 120 >> 120", + "60.0; 70.0; 80.0; 90.0", + "90 >> 25 >> 90", + "85.0 >> 85.0", + "28.0 >> 100.0", + "60; 60; 90", + "110.0 >> 150.0", + "240 >> 120", + "70; 95 >> 100 >> 100", + "60; 100 >> 150", + "90.0 >> 150.0", + "Unknown >> 70.0", + "25 >> 70 | Unknown", + "60; 70; 80; 90; 100; 100", + "105", + "180.0 >> 180.0", + "110 >> 70; 100", + "60.0; 100", + "150.0 >> 150.0", + "67.0; 100.0", + "25; 50; 60", + "Unknown >> 80.0", + "Unknown >> 210.0", + "150; 100 >> 100", + "65.0 >> 100 >> Unknown", + "110 >> 150", + "50.0 >> 50.0 >> Unknown", + "120 >> 100", + "Unknown >> Unknown >> Unknown >> 120.0", + "90.0; 120.0", + "70.0 >> 125.0", + "60.0; 85", + "Unknown >> 170", + "60.0 >> 60.0", + "25; 90; 120", + "70.0 >> 100.0 >> 100.0", + "Unknown >> 160", + "40; 100 >> 150", + "100.0 >> 100.0 >> 1000 >> Unknown", + "60; 70; 80; 90; 100", + "Unknown >> 60; 80; 100", + "100.0 >> 100.0", + "26.0 >> 100.0", + "70; 100 >> 70; 100", + "Unknown >> Unknown >> 105.0", + "100 >> 120; 100", + "50.0; 100.0", + "70; 100 >> 145", + "125.0; 100.0", + "Unknown >> 50.0", + "Unknown >> 140.0", + "110.0 >> 105.0", + "20; 80", + "175", + "90.0 >> 250.0 >> 250.0", + "160; 105", + "35.0", + "75 >> 150", + "140; 180", + "120 >> 150", + "90 >> 85", + "135.0", + "80.0 >> 110.0 >> 110", + "250", + "70 | 145", + "40; 160", + "Unknown >> Unknown >> Unknown >> 130.0", + "90 >> 250.0", + "75.0 >> 100.0", + "100.0 >> 100.0 >> Unknown", + "33.0", + "100 >> Unknown >> Unknown >> 100", + "320", + "140; 100", + "75 >> 250", + "25.0 >> Unknown", + "Unknown >> 70.0 >> 70.0", + "70.0; 110", + "60.0; 120", + "66.0; 100.0", + "100.0 >> 25.0 >> 100.0", + "51.0 >> 70.0", + "30; 40; 50; 60; 70; 80; 90; 100", + "70 >> 108", + "60; 100", + "Unknown >> Unknown >> 60.0 >> 60", + "100 >> 80; 100", + "75.0 >> 135.0", + "70.0 >> 120.0", + "40", + "70 >> 90 >> 90", + "70 >> 100 >> 100", + "100 >> Unknown", + "40; 60; 80; 100", + "60; 150", + "100 | 100", + "70.0 >> 70.0 >> 80.0", + "80 >> 40; 140", + "90.0 >> 100.0", + "50; 160", + "70.0 | 135.0", + "110; 25 >> 110", + "80.0 >> 170.0", + "100.0 >> Unknown >> Unknown >> Unknown", + "80.0 >> 80.0 >> 80.0 >> Unknown", + "90.0 >> 80.0", + "Unknown >> Unknown >> Unknown >> 350.0", + "70.0 >> 200.0", + "285.0", + "70 >> 70", + "120.0 >> 85.0", + "25.0", + "80.0 >> 120.0", + "130.0 >> 130.0", + "Unknown >> 175", + "115", + "60; 70 >> 70; 115", + "35; 120", + "70 >> 85", + "80.0 >> 250.0", + "70 >> 150", + "Unknown >> 35.0", + "40.0", + "25 >> 115", + "60.0; 100 >> 100; 140", + "300", + "70; 130", + "80.0 >> 90.0", + "70 >> 145", + "Unknown >> Unknown >> 150.0", + "Unknown >> 150", + "70.0 >> 50.0", + "70; 100; 120", + "100; 120; 140", + "100 | 65", + "75.0", + "110", + "Unknown >> 60.0", + "60.0; 100 >> Unknown >> 100.0", + "70.0 >> 105.0", + "25.0 >> 250.0", + "50; 100 | 50; 100", + "35; 280", + "40 | 105", + "190 >> 330.0", + "Unknown >> 100.0 >> 70.0", + "120; 130", + "70; 130 >> 145", + "25; 70 >> 85", + "25 >> 100 >> 70", + "160.0 >> 100.0", + "150.0 >> 110.0", + "130; 160", + "60; 25; 100", + "80; 150", + "190.0", + "25; 60; 65", + "70.0 | Unknown | 130.0", + "90.0; 100.0", + "90 | 150", + "100 >> 100", + "330", + "40; 55; 75; 100", + "Unknown >> 110.0; 120", + "70 >> 140", + "Unknown >> 90", + "Unknown >> Unknown >> 130.0", + "70 >> 75", + "150.0 >> 90.0", + "170; 100", + "65.0 >> 70.0", + "93.0", + "60; 80; 100", + "155.0", + "100.0 >> 130.0", + "25.0 >> 25.0", + "70.0 | 70.0", + "25; 130", + "25 >> 150", + "145.0", + "45; 160", + "65.0 >> 125.0", + "Unknown >> 130.0", + "120; 40", + "90.0 >> 85.0; 160", + "180.0 >> 150.0", + "Unknown >> 90.0 >> 90.0", + "110.0; 100.0", + "70 >> 70.0", + "25", + "70.0 >> 160.0", + "120.0 >> 150.0", + "100.0 >> 150.0", + "140.0 >> 140.0", + "35; 120; 165", + "280.0", + "Unknown >> 60; 70; 80; 90; 100", + "60.0", + "125.0", + "100 >> 90", + "80.0 >> 60.0", + "120.0 >> Unknown", + "70.0 >> Unknown", + "Unknown >> 180; 150", + "130", + "70.0 >> 95.0", + "Unknown >> 250", + "Unknown >> Unknown >> 350.0", + "100.0 >> 75.0 >> Unknown", + "60.0; 100 >> 100.0", + "Unknown >> 150.0; 100", + "400.0", + "70 | 150", + "75 >> 75", + "Unknown >> 180.0", + "80; 25 >> 80", + "Unknown >> 100.0", + "Unknown | 100", + "50.0; 100 >> 150.0", + "90.0 >> 110.0", + "40.0 >> 250.0", + "65; 125", + "50; 85", + "Unknown >> 75.0", + "50; 120", + "115.0", + "70.0 >> 140.0", + "Unknown >> Unknown >> 160", + "50.0; 150.0", + "25; 70; 100; 120", + "Unknown >> 140", + "90 >> Unknown", + "100.0 >> 70.0 >> 130.0", + "90 >> 90", + "60.0; 85.0", + "265.0 >> 100.0", + "80.0 | 150.0", + "100; 180", + "42; 160", + "75; 90", + "Unknown >> 100.0; 140.0", + "140", + "100.0 >> 70", + "70.0 >> 170.0", + "70; 275", + "80 >> 280", + "285", + "55; 250", + "65 >> 100", + "110; 115", + "130.0 >> 120.0", + "150.0 >> 170.0 >> 170.0 >> 170.0", + "80.0 >> 350.0", + "Unknown >> 150; 120", + "Unknown >> 170.0 >> 170.0 >> 170.0", + "550", + "40 >> 180 >> 150", + "120; 200", + "40; 55; 70; 100", + "Unknown >> 150 >> 100", + "25.0; 90.0", + "Unknown >> 160.0 >> 160.0", + "Unknown >> 135.0", + "100 >> 280", + "60 >> 200", + "70 >> 70 >> Unknown", + "Unknown >> 20.0", + "100.0 >> 165.0", + "100", + "75 >> 180", + "100.0", + "105.0", + "40; 70 >> 40; 100", + "65; 185", + "70 >> 100; 120", + "200; 130", + "75 >> 200", + "300.0 >> 150.0", + "50 >> 200; 150", + "80.0 >> Unknown", + "70; 25 >> 25 >> 70", + "60.0; 80", + "60.0 >> 110.0", + "90 >> 160", + "70; 120", + "80 >> 250", + "25; 280", + "Unknown >> Unknown >> 135", + "75; 125", + "50; 100 >> 50; 100", + "Unknown >> Unknown >> 100.0", + "70 >> 150 >> 100", + "70.0 >> 100.0 >> 100", + "300.0 >> 150", + "80 | 80", + "150 >> 25", + "60.0 >> 150.0", + "90.0 >> 70.0", + "70; 100 | 100", + "300 >> Unknown", + "120.0 >> 90.0", + "90.0 >> 250.0 >> Unknown", + "100.0 >> 120.0", + "200.0", + "70.0; 100 >> Unknown", + "300 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> 25 >> Unknown", + "70.0; 90.0; 100.0", + "Unknown >> 50.0; 80", + "95; 120", + "350.0", + "40; 120", + "72.0 >> Unknown >> 140.0", + "90.0; 120", + "60; 125", + "Unknown", + "70 >> 70; 100; 120", + "90.0 >> 90.0 >> 90.0", + "60; 90", + "90; 100", + "150 >> 280", + "50; 150", + "50; 130", + "40.0; 100.0 >> 40.0; 100.0", + "50; 100", + "110.0; 130.0", + "75 >> 130", + "70.0 >> 115.0", + "100; 140", + "75.0 >> 70.0", + "100.0 >> Unknown >> Unknown >> Unknown >> Unknown", + "100; 85", + "130; 170", + "105.0 >> 110.0", + "25 >> 25", + "25 >> 135", + "60 >> 100.0", + "340.0", + "Unknown >> 170.0", + "70.0 >> 25.0", + "120.0 >> 120", + "101.0 >> 100.0", + "70; 175", + "Unknown >> 125.0", + "Unknown >> 160.0", + "110.0 >> 100.0", + "85.0 >> 150.0", + "80 >> 90", + "160.0", + "40 >> 100", + "70 | 100", + "25; 80; 85; 90", + "60.0 >> 105.0", + "110.0 >> 75.0", + "100; 130", + "50; 140", + "90; 150", + "270.0", + "50; 75; 100", + "70; 100", + "25 >> 25 >> 100", + "170.0", + "Unknown >> 110.0", + "75; 100", + "120.0 >> 90.0 >> 80.0", + "100.0 >> 70.0", + "150 >> 150 >> 150", + "150.0 >> 70", + "80 >> 150", + "25; 85", + "170", + "200", + "70 >> 130", + "320; 300", + "25; 60; 100", + "Unknown >> 115.0; 100", + "70; 70 >> 145", + "100; 300 >> 100", + "55.0", + "65.0; 100.0", + "Unknown | 115.0", + "90 | Unknown", + "77", + "60; 105", + "105.0 >> Unknown", + "130; 130", + "50; 250", + "100.0 >> 140.0", + "25; 75 >> 135", + "340", + "50; 60; 70; 100", + "22.5; 70; 180", + "100.0; 120.0", + "70.0 >> 70.0", + "100 >> 250", + "180; 105", + "95.0 >> 60.0", + "40; 110 >> 110", + "60.0 >> 60.0 >> 60.0 >> Unknown", + "110.0 >> 145.0", + "65.0; 100", + "145", + "80.0 >> 150.0", + "Unknown >> 280", + "100; 500 >> 110", + "70 >> Unknown >> 150", + "25; 150", + "80.0 >> 100.0", + "25; 100.0", + "25; 120", + "44.0", + "110.0 >> 120.0", + "Unknown >> 100.0; 150", + "90.0 >> 70.0; 100.0", + "100.0 >> 280.0", + "80; 100", + "90; 120", + "Unknown >> 65; 100", + "50; 100; 160", + "35; 85", + "Unknown >> 170.0 >> Unknown", + "550.0", + "100 >> 25; 25", + "70; 150 >> 100", + "300.0", + "120.0 >> 135.0", + "Unknown >> 40.0; 100", + "185.0", + "3; 5 >> 5", + "90; 120 >> 100", + "120.0", + "0.0; 90.0", + "110.0 >> 110.0", + "450.0", + "90.0 >> 120.0", + "40.0; 100 >> 90.0 >> Unknown", + "25 >> 25 >> 70", + "150 >> 150", + "70; 150 >> 400", + "70 >> 90", + "Unknown >> 90.0; 120.0; 150.0", + "130.0", + "70.0 >> 150.0", + "Unknown >> 95.0", + "40.0 >> 100.0", + "100.0; 100.0", + "60.0; 100.0", + "50.0 >> 50.0 >> 50.0 >> Unknown", + "25.0 >> 110.0", + "75", + "110.0", + "70.0; 100.0", + "310.0", + "25.0; 100.0", + "100.0; 150.0", + "220", + "25 >> 70", + "70.0 >> 95.0 >> 95.0", + "25.0 >> 150.0", + "Unknown >> 200.0", + "100; 25 >> 25 >> 25", + "345.0", + "50.0; 85.0", + "Unknown >> 105.0", + "60.0; 100 >> 60; 100", + "110; 130; 150", + "Unknown >> 250.0", + "100.0; 280.0", + "170; 330", + "100.0 >> 150", + "225.0", + "60.0; 100 >> Unknown", + "70; 90 >> 70.0", + "160", + "80.0; 100.0", + "Unknown >> 120.0 >> 145.0", + "60.0 >> 70.0", + "25 >> 85", + "170; 150", + "100.0 | 100.0", + "70 >> 125", + "40.0; 160.0", + "40.0 >> 40.0", + "56; 240", + "100 >> 110; 100", + "100 | 100 >> 100", + "70 >> 75; 70", + "40 >> 100 >> 100", + "100.0 >> 155.0 >> 150.0", + "70; 100 >> 100", + "310.0 >> 150.0", + "100 >> 100; 100", + "Unknown >> 265.0", + "100 >> 110", + "10.0", + "70", + "140.0 >> 160.0", + "110.0 | 150.0", + "220; 105", + "70 >> 70.0 >> 70", + "42.0", + "150; 25 >> 100", + "70.0 >> 70.0 >> 70.0", + "150 >> 100", + "70 | 70", + "200.0 >> 80.0 >> 80.0", + "Unknown >> 120", + "250 | 100", + "60; 120", + "210.0", + "Unknown >> 100.0 >> Unknown", + "85.0 >> 100.0", + "75 >> 135", + "130.0 >> Unknown", + "43 >> 160", + "60; 110", + "90.0 >> 115.0", + "80.0 >> 80.0", + "70; 100 >> 135", + "120.0; 150.0", + "Unknown >> 85.0", + "50.0 >> 70.0", + "70.0 >> 100.0; 150.0", + "95.0 >> 100.0", + "350", + "75.0 >> 75.0", + "100.0 >> Unknown >> Unknown", + "32.0", + "100.0 >> 50.0; 250", + "40.0 >> Unknown", + "100.0 >> 155.0", + "60; 250", + "100; 160", + "90; 125", + "60.0 >> 60.0 >> 60.0 >> 60.0", + "25.0 >> 70.0", + "Unknown >> 85.0 >> 85.0", + "70.0 >> 135.0", + "110; 25", + "130; 100", + "Unknown >> 110", + "70.0 >> 70.0 >> Unknown", + "100.0 >> 140", + "Unknown >> 150.12", + "Unknown >> 380.0", + "25; 90; 100; 130", + "Unknown >> 350.0", + "45; 55; 75; 100", + "60; 130", + "60; 80; 140", + "25 >> 120", + "100.0 >> 25.0 >> 25.0", + "5; 95.0", + "80; 150; 350", + "80; 140; 160", + "265.0 >> 200.0", + "200; 170", + "150", + "45.0 >> 100.0; 150", + "90 >> 100", + "Unknown | 125", + "160.0; 100", + "260.0 >> Unknown", + "250.0 >> 80.0", + "80.0 >> 50.0; 120", + "65; 100", + "85.0 >> 250.0", + "150.0 >> Unknown", + "50; 100; 120 >> 25", + "30.0", + "55", + "Unknown >> 80", + "80; 90; 100; 110", + "60.0 >> 140.0", + "Unknown >> 175.0", + "100 >> Unknown >> Unknown", + "100; 150", + "70; 150", + "50; 60; 70; 80; 90; 100", + "25; 70", + "70.0 | 150.0", + "40; 100", + "25 >> 140", + "100.0 >> 110", + "70.0 >> 110.0 >> 40.0", + "25 >> 100", + "100 >> 75", + "335.0", + "95.0 >> Unknown", + "Unknown >> 145.0", + "70.0 >> 175.0", + "125.0 >> 160.0", + "80; 120", + "Unknown >> 115.0", + "Unknown >> 300.0", + "65.0 >> 100", + "25; 280 >> Unknown", + "120.0 >> 250.0", + "150 | 100", + "70.0; Unknown", + "90; 25 >> 25 >> 120", + "55.0; 60.0; 100.0", + "100 >> 100 >> 100", + "158.0", + "60 >> 150", + "50.0; 100 >> 100.0", + "80", + "75.0; 150.0", + "50 >> 280", + "120", + "1000.0 >> Unknown", + "100.0; 150", + "60; 100 >> 100", + "140.0", + "65; 75; 85; 95", + "25; 100; 25 >> 100", + "80.0", + "60", + "320.0", + "70 >> 150 >> 70", + "150.0 >> 120.0", + "120.0 >> 120.0", + "80.0 >> 70.0", + "Unknown >> 100.0 >> 100.0", + "60 >> 60 >> 60.0", + "70.0 >> 70.0 >> 70.0 >> Unknown", + "125.0 >> 125.0", + "100 >> 25", + "100.0 >> 100.0 >> 100", + "130; 140", + "130; 120", + "Unknown >> 60.0; 100", + "70.0 >> 250.0", + "100.0; 140.0", + "310", + "45; 120", + "60.0 >> Unknown" + ] + } + } + ] + }, + "name": "thermal_annealing_temperature", + "description": "The temperatures of the thermal annealing program associated with each deposition step\n- When more than one reaction step, separate the annealing temperatures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- If no thermal annealing is occurring after the deposition of a layer, state that by stating the room temperature (assumed to 25\u00b0C if not further specified)\n- If the thermal annealing program is not known, state that by \u2018nan\u2019\nExample\n100\n70; 100 >> 100\n25 >> 90; 150", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "90.0", + "Unknown >> Unknown >> 60.0", + "45.0 >> 5.0", + "5.0; 20.0", + "Unknown >> 25.0", + "50.0", + "3.0 >> 3.0; 35.0", + "5.0 >> 5.0 >> 10.0", + "600.0 >> 30.0", + "1.0; 1.0; 10.0", + "180.0", + "45.0", + "10.0 >> 70.0", + "0.083", + "0.0; 5.0", + "5.0; 5.0; 5.0; 5.0", + "0.133", + "3.0; 10.0 >> 3.0; 10.0", + "1.0; 2.0", + "Unknown >> Unknown >> 20.0", + "60.0 >> 60.0; 10.0", + "2880.0 >> 1.0 >> 1.0 >> 15.0", + "Unknown >> 90.0", + "30.0 >> 60.0 >> 30.0", + "2.0; 28.0", + "720.0 >> 3.0", + "1.0 >> 1.0", + "10.0; 10.0 >> 30.0", + "4.0; 1.0", + "Unknown >> 720.0", + "0.1666", + "60.0 >> 2.0 >> Unknown", + "3.0 >> 2.0", + "5.0; 10.0 >> 10.0", + "15.0; 50.0", + "20.0 >> 40.0", + "30.0; Unknown >> Unknown >> 30.0", + "5.0 >> Unknown >> Unknown", + "0.0", + "0.066", + "5760.0", + "15.0 >> 15.0 >> 15.0", + "60.0 >> 5.0 >> 5.0 >> 5.0", + "15.0; 10.0 >> Unknown", + "10.0 >> 10.0 >> 30.0", + "0.07", + "Unknown >> 15.0; 60.0", + "0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0", + "0.33; 60.0", + "120.0 >> 30.0", + "3.0; 20.0", + "8.0 >> 120.0", + "4.0 >> 30.0", + "2.0; 30.0", + "30.0; 5.0", + "60.0; 10.0 >> 10.0", + "1.0 >> 25.0", + "5.0 >> 40.0", + "95.0", + "0.05", + "3.0; 5.0 >> 3.0; 5.0", + "Unknown >> 600.0; 10.0", + "Unknown >> 3.0; 15.0", + "Unknown >> 3.0; 30.0", + "5.0 >> 30.0 >> 30.0", + "3.0 >> 5.0", + "70.0", + "10.0 >> 30.0", + "10.0 >> 60.0 >> Unknown", + "Unknown >> 10.0; 20.0", + "Unknown; Unknown; Unknown; 30.0", + "2.0; 20.0", + "11.0", + "45.0 >> 45.0", + "1.5; 2.0", + "1.3 >> 10.0 >> 8.0", + "15.0; 10.0; 60.0", + "15.0 >> 5.0", + "60.0 >> 90.0 >> 90.0", + "3.0; 10.0 >> 3.0; 30.0", + "0.0 >> 40.0", + "10.0; 5.0; 2.0; 3.0; 50.0", + "5.0; 10.0; 5.0", + "0.016 >> 5.0", + "1.0", + "10.0; 20.0; 10.0", + "60.0 >> 90.0", + "10.0; 50.0", + "1.0 >> 10.0", + "60.0; 60.0", + "15.0; 25.0; 5.0", + "600.0 >> Unknown", + "60.0; 35.0", + "45.0 >> 10.0", + "25.0; 60.0", + "2.0 >> 2.0 >> 45.0", + "1.5 | 20.0", + "10.0 >> 0.5", + "5.0; 15.0", + "10.0 >> 15.0; 30.0", + "30.0 >> 60.0", + "10.0; 2.0", + "Unknown >> Unknown >> 15.0 >> 15.0", + "15.0 >> 60.0", + "0.05; 30.0", + "10.0 >> Unknown >> Unknown", + "Unknown >> 15.0", + "15.0 >> 4.0", + "15.0; 15.0; 15.0; 15.0", + "5.0; 30.0", + "Unknown >> 150.0", + "0.5 >> 40.0", + "3.0 >> 120.0", + "Unknown >> 320.0", + "240.0", + "5.0; 5.0", + "10.0; 10.0; 10.0; 10.0; 10.0; 50.0", + "5.0 >> 10.0 >> 10.0", + "Unknown >> 10.0; 40.0", + "10.0 >> 30.0 >> 30.0", + "10.0; 85.0; 10.0 >> Unknown", + "15.0; Unknown", + "Unknown >> Unknown", + "Unknown >> 6.0 >> Unknown", + "160.0; 17.0", + "15.0; 3.0", + "0.5; 30.0", + "15.0 | Unknown", + "2.0; 60.0", + "2.0; 3.0", + "10.0 >> 5.0", + "20.0 >> 15.0 >> 1.0", + "5.0 | Unknown | Unknown | 60.0", + "Unknown >> 240.0", + "15.0; 30.0", + "Unknown >> 5.0 >> 100.0", + "5.0; 5.0; 30.0", + "Unknown >> 30.0 >> 30.0", + "1.0 >> 1.0 >> 1.0 >> 2.0", + "3.0; 30.0", + "60.0 >> 120.0", + "1.0; 15.0", + "1.0; 10.0 >> Unknown", + "15.0 >> Unknown", + "30.0 >> 60.0 >> Unknown", + "10.0 >> 2.0", + "Unknown >> 6.0", + "9.0", + "1.0; 4.0", + "50.0 >> 5.0", + "30.0 >> 2.0", + "1.0; 80.0", + "Unknown >> 2.0 >> 2.0", + "10.0; 1.0", + "0.5; 30.0 >> 0.5", + "30.0 >> 30.0; 0.0", + "8.0", + "10.0; 10.0 >> 90.0", + "2.0; 25.0", + "40.0; 10.0; 10.0; 20.0", + "5.0 >> 150.0", + "60.0 >> 16.0 >> Unknown >> 60.0", + "13.0", + "0.0 >> 30.0", + "0.33 >> 20.0", + "1.0; 1.0", + "30.0 >> 480.0", + "3.0 | 5.0 | 5.0", + "Unknown >> 120.0", + "Unknown >> 30.0", + "20.0 >> 45.0", + "30.0 >> 65.0", + "10.0 >> 10.0 >> 60.0", + "Unknown >> 45.0", + "20.0", + "30.0; 2.0", + "15.0; 5.0", + "10.0; 10.0 >> 180.0", + "60.0 >> 1.0 >> 1.0 >> 15.0", + "20.0 >> 120.0", + "2.0 >> 540.0", + "15.0; 90.0; 15.0", + "90.0; 10.0", + "15.0 >> 2.0", + "30.0; 30.0; 10.0", + "40.0 >> 10.0", + "0.5 >> 5.0", + "25.0 | 30.0", + "5.0; 120.0; 100.0; 130.0", + "2.0 >> 15.0", + "25.0 >> 30.0", + "30.0 >> Unknown", + "5.0; 2.0", + "30.0 >> 5.0", + "5.0; 10.0", + "20.0 >> 10.0", + "4.0; 20.0", + "45.0; 50.0", + "0.0; 20.0", + "3.0; 5.0; 10.0", + "60.0 >> 30.0 >> 5.0", + "Unknown; 2.0", + "50.0 >> Unknown", + "10.0 >> 90.0", + "10.0 | 20.0", + "14.0", + "0.5 >> 30.0", + "0.0 >> 30.0 >> 10.0", + "10.0 >> 10.0 >> 90.0", + "10.0; 10.0 >> 150.0", + "50.0 >> 50.0", + "90.0 >> 10.0", + "30.0 >> 11.5", + "20.0; 10.0", + "0.5; 0.5", + "360.0 >> 30.0", + "5.0 >> 25.0", + "Unknown >> 10.0", + "3.0; 5.0 >> 10.0", + "10.0 | 10.0", + "45.0 | 5.0", + "30.0; 30.0", + "65.0", + "20.0 >> 30.0", + "Unknown; 5.0", + "20.0 >> Unknown", + "150.0", + "10.0; 15.0", + "1.0; 60.0", + "0.0 >> 60.0", + "7.0 >> 30.0", + "Unknown >> 420.0", + "3.0; 12.0", + "45.0 >> 60.0", + "Unknown >> 70.0", + "Unknown >> 5.0", + "Unknown >> 5.0; 60.0", + "60.0; 150.0; 15.0", + "4.0; 30.0", + "30.0; 180.0", + "Unknown >> 80.0", + "150.0; 20.0", + "0.3; 50.0", + "2.0; 5.0", + "3.0 >> 40.0", + "0.08; 15.0", + "30.0 | 30.0", + "Unknown >> Unknown >> Unknown >> 120.0", + "10.0; 10.0; 10.0; 30.0", + "5.0 >> 65.0", + "10.0; 600.0; 90.0", + "60.0 >> 60.0", + "Unknown >> 40.0", + "10.0; 5.0", + "0.0 | 15.0", + "150.0; 15.0 >> 30.0", + "1.5; 25.0", + "0.16; 14.0", + "10.0; 10.0 >> Unknown >> 10.0", + "5.0; 10.0 >> 5.0; 10.0", + "0.3", + "10.0; 10.0 >> 60.0", + "Unknown >> 50.0", + "0.12", + "10.0 >> 60.0", + "Unknown >> 140.0", + "5.0; 5.0 >> 5.0; 5.0", + "35.0", + "20.0; 20.0", + "15.0; 60.0", + "Unknown >> Unknown >> 30.0", + "120.0 >> 20.0", + "5.0 >> 15.0 >> 15.0", + "4.0 >> 20.0", + "30.0 >> 45.0", + "1.0 >> 40.0", + "30.0 | 10.0", + "30.0 >> 90.0", + "10.0 >> 0.17", + "30.0; 60.0", + "5.0; 15.0 >> 90.0 >> 5.0", + "90.0; 5.0", + "30.0 >> 30.0 >> 30.0", + "0.0 >> 10.0", + "30.0 >> 40.0", + "2.0; 2.0; 2.0; 60.0", + "33.0", + "7200.0", + "60.0; 10.0", + "1.0 >> 7.0", + "2.5", + "2.0 >> 20.0", + "15.0 >> 12.0", + "Unknown >> 1.0; 20.0", + "Unknown >> 10.0 >> 15.0", + "15.0; 10.0", + "0.25; 5.0", + "10.0 >> 1.0 >> 30.0", + "Unknown | 30.0", + "2.0 | 20.0", + "Unknown >> Unknown >> 10.0", + "20.0 | 20.0", + "10.0 >> 150.0", + "Unknown >> 600.0", + "5.0; 5.0; 5.0; 30.0", + "10.0 >> 50.0", + "181.0 >> 30.0", + "0.5; 10.0", + "60.0 >> 15.0 >> 10.0", + "23.0", + "30.0 >> Unknown >> Unknown", + "15.0; Unknown >> 15.0", + "10.0 | 60.0", + "5.0; 2.0; 3.0; 50.0", + "0.25", + "2.0 >> 10.0", + "15.0 >> 120.0", + "10.0; 10.0 >> 5.0", + "1.0 >> 3.0", + "10.0 >> 1.0", + "5.0; Unknown >> Unknown >> 90.0", + "30.0 | Unknown", + "25.0", + "30.0; 150.0", + "1.3 >> 10.0 >> 10.0", + "5.0 >> 1.0", + "1.0 | 20.0", + "15.0 >> 20.0", + "Unknown >> 0.5", + "10.0 >> 5.0 >> Unknown", + "15.0 >> 6.0", + "1.0 >> 120.0", + "80.0 >> 250.0", + "0.0 >> 20.0", + "Unknown >> 35.0", + "1.0 >> 20.0", + "40.0", + "1.0 >> 70.0", + "20.0; 40.0", + "30.0 | 20.0", + "2.0 >> 25.0", + "5.0 >> 0.0", + "120.0 >> 60.0", + "144.0", + "Unknown >> Unknown >> 120.0", + "2.0; 10.0", + "Unknown >> Unknown; Unknown", + "Unknown >> Unknown >> 150.0", + "Unknown | 20.0", + "0.08; 30.0", + "Unknown >> Unknown >> 180.0", + "10.0 >> 1.7", + "0.33 >> 10.0", + "10.0 >> 8.0", + "10.0; 20.0; 5.0; 30.0", + "2.0 >> 5.0", + "75.0", + "Unknown >> 60.0", + "30.0 >> 50.0; 30.0", + "60.0 >> 30.0", + "250.0 >> 30.0", + "60.0 >> 20.0", + "50.0 >> 20.0", + "20.0 >> 120.0; 2.0", + "480.0", + "90.0; 70.0; 45.0", + "60.0 >> 15.0", + "3.0; 5.0; 10.0 >> Unknown", + "30.0 >> 15.0", + "2.0 >> 390.0", + "60.0; 90.0", + "25.0 >> 25.0", + "10.0; 30.0", + "75.0; 15.0 >> 5.0", + "15.0 >> 0.0", + "11.0 >> 30.0", + "30.0 >> 150.0", + "720.0 >> 15.0", + "Unknown; 0.5; 3.0", + "30.0; Unknown", + "15.0 >> 15.0", + "31.0 >> 30.0", + "10.0 >> 10.0 >> 5.0", + "10.0; 420.0; 90.0", + "50.0; 30.0", + "20.0 >> 20.0", + "60.0; 2880.0", + "45.0 >> 10.0; 30.0", + "10.0 >> Unknown", + "5.0 >> 60.0", + "5.0; 5.0 | 5.0; 5.0", + "60.0", + "5.0", + "0.6", + "45.0; 70.0", + "7.0", + "120.0 >> Unknown", + "70.0 >> Unknown", + "0.07 >> 0.07", + "30.0; 30.0; 30.0", + "3.0; 60.0", + "3.0; 5.0", + "122.0", + "60.0 >> 10.0 >> 10.0", + "5.0 >> 390.0", + "Unknown >> 180.0", + "Unknown >> 100.0", + "15.0 >> 600.0", + "20.0; 20.0; 20.0; 40.0", + "1.5", + "Unknown >> 75.0", + "3.0; 2.0", + "3.0 >> Unknown", + "2.0", + "Unknown >> 10.0; 10.0; 10.0; 10.0; 40.0", + "5.0 >> 10.0", + "10.0; 10.0; 50.0", + "20.0; 5.0", + "10.0 >> 10.0 >> 180.0", + "1.0; 8.0", + "10.0 >> Unknown >> Unknown >> Unknown", + "10.0 >> 80.0", + "5.0 >> 5.0; 80.0", + "10.0 >> 75.0", + "5.0 >> 30.0", + "0.66", + "5.0 >> 20.0", + "4.0", + "120.0; 20.0", + "Unknown >> 0.333333333", + "121.0", + "1.0 | Unknown", + "12.0 >> 60.0", + "5.0 >> 5.0; 10.0; 10.0", + "180.0 >> 30.0", + "60.0 >> 5.0 >> Unknown", + "10.0; 4.0", + "30.0; 90.0", + "100.0; 20.0", + "15.0 >> 30.0", + "6.0 >> 30.0", + "10.0 | 1.4", + "60.0; 25.0", + "600.0", + "12.0", + "5.0 >> 2.0", + "Unknown | 120.0", + "5.0; 5.0 | Unknown", + "Unknown >> 20.0", + "16.0 >> 30.0", + "100.0", + "Unknown >> 5.0 >> 20.0", + "105.0", + "10.0 >> 10.0 >> 10.0", + "2.0 >> Unknown", + "15.0 >> 45.0", + "13.0 >> 60.0", + "720.0", + "10.0 >> 10.0", + "Unknown >> 45.0 >> Unknown", + "30.0; Unknown >> 30.0", + "10.0; 10.0 >> 120.0", + "3.0; 10.0", + "3.0; 5.0 >> 30.0", + "Unknown >> Unknown >> 90.0", + "Unknown; Unknown", + "10.0 >> 15.0", + "20.0 >> 30.0 >> Unknown", + "100.0 >> 2.0", + "5.0 >> 10.0; 10.0", + "15.0; 0.17 >> 4.0", + "0.5", + "0.3; 2.0", + "10.0 >> Unknown >> Unknown >> Unknown >> Unknown", + "2.0; 5.0 >> Unknown", + "Unknown >> 5.0; 5.0; 5.0", + "0.83; 0.83", + "2.0 >> 60.0", + "3.0 >> 5.0 >> 5.0", + "1.0; 2.0 >> Unknown", + "60.0 >> 5.0", + "Unknown >> Unknown >> 5.0", + "5.0; 2.0; 5.0", + "5.0; 5.0 >> 5.0", + "10.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0 >> 0.0", + "90.0; 15.0", + "Unknown >> Unknown >> Unknown >> 1.0", + "200.0", + "5.0 >> 150.0 >> 20.0", + "20.0 >> 5.0", + "Unknown; 10.0", + "10.0; 20.0; 0.0", + "10.0 >> 20.0; 60.0", + "15.0; 15.0; 90.0", + "1.2", + "30.0; 60.0 >> 60.0", + "15.0 | 60.0", + "3.0; 50.0", + "60.0; 1440.0", + "3.0", + "1.0 >> 2.0", + "10.0; 90.0", + "5.0; Unknown >> Unknown >> 10.0", + "Unknown", + "10.0 | 30.0", + "10.0 >> 40.0", + "Unknown >> 260.0", + "2.0 >> 100.0", + "Unknown >> 0.0", + "0.16 >> 15.0", + "60.0; 720.0", + "5.0; 60.0", + "60.0; 10.0 >> 5.0; 10.0", + "2.0; 6.0 >> 8.0", + "10.0 >> 4.0", + "1.0 | 10.0", + "10.0 | 120.0", + "1.0; 7.0", + "15.0 >> 150.0", + "Unknown >> Unknown >> Unknown >> 20.0", + "7.0; 1.0 >> 10.0", + "45.0; 45.0", + "Unknown >> 10.0 >> 10.0", + "Unknown >> 40.0; 100.0; 130.0", + "5.0; Unknown >> Unknown >> 30.0", + "2.0 >> 0.17", + "60.0; 15.0", + "15.0; 15.0 >> 15.0", + "10.0; 10.0; 0.0", + "30.0 >> 30.0", + "30.0; 150.0; 15.0", + "15.0; 15.0", + "20.0; 30.0", + "2.0; 30.0 >> 2.0; 30.0", + "10.0; 45.0", + "1.0 >> 30.0", + "0.17; 12.0", + "4.0 >> 4.0", + "15.0 >> 30.0 >> 10.0", + "0.17; 75.0", + "38.0", + "120.0 >> 1.0 >> 1.0 >> 15.0", + "10.0 >> 10.0 >> Unknown", + "30.0 >> 10.0 >> 10.0 >> 6.0", + "270.0", + "0.33; 2.0", + "Unknown >> 10.0; 60.0", + "15.0; 90.0; 60.0", + "Unknown >> 4.0", + "5.0; 30.0; 5.0; 30.0", + "3.0 >> 30.0", + "4.0; 10.0", + "3.0; 5.0 >> 15.0 >> Unknown", + "10.0 >> 20.0", + "15.0; 15.0; 120.0; 15.0", + "10.0 >> 110.0", + "4.0 >> 45.0", + "55.0", + "1.0 | 15.0", + "10.0; 60.0; 90.0", + "60.0; 30.0", + "10.0 >> 3.0", + "1.3 >> 10.0", + "50.0 | 10.0 >> 10.0", + "0.33 >> 15.0", + "Unknown >> 360.0; 10.0", + "6.0", + "30.0; 20.0", + "5.0; 60.0; 10.0", + "30.0 >> 18.5", + "Unknown >> 12.0", + "30.0; 30.0 >> 30.0", + "60.0 >> 10.0", + "10.0 >> 10.0 >> 120.0", + "30.0 >> 120.0", + "3.0 >> 10.0", + "15.0 >> 90.0", + "30.0 >> 20.0", + "3.0 >> 2.0; 20.0", + "15.0 >> 10.0", + "5.0 | 12.0", + "5.0 | 60.0", + "30.0 >> 0.0 >> 120.0", + "2.0; 2.0", + "Unknown; 20.0 >> 20.0", + "3.0; 6.0 >> 10.0", + "0.33; 10.0", + "Unknown >> 0.8541666666666666", + "2.0; 15.0", + "1.0 >> 1.0 >> 2.0", + "1.0 >> 15.0", + "15.0", + "1.0 >> 60.0", + "10.0 >> 10.0; 15.0", + "45.0 >> 30.0", + "30.0 >> 1.0", + "Unknown | 10.0", + "0.58 >> 5.0", + "Unknown >> 2.0 >> 3.0", + "45.0 >> Unknown", + "300.0", + "40.0; 100.0 >> 100.0", + "Unknown >> 60.0 >> Unknown", + "2.0; 6.0", + "120.0 >> 20.0 >> 5.0", + "10.0; 20.0; 20.0; 20.0", + "20.0 >> 15.0", + "15.0; Unknown >> 25.0 >> Unknown", + "120.0", + "0.5; 60.0", + "0.4305555555555556", + "20.0; 20.0; 20.0", + "Unknown >> Unknown >> 15.0", + "Unknown >> 10.0; 10.0; 10.0", + "5.0; 10.0 >> 30.0", + "40.0 >> 120.0", + "0.5; 15.0", + "1.0; 3.0", + "12.0; 10.0", + "5.0; Unknown >> Unknown >> 60.0", + "2.0; 5.0; 10.0", + "2.0 | Unknown", + "0.17", + "110.0", + "5.0 >> 12.0", + "20.0 | 15.0", + "1.0; 5.0", + "120.0 >> Unknown >> Unknown", + "1.0; 10.0", + "10.0 >> 10.0 >> 240.0", + "Unknown; Unknown >> 30.0", + "10.0 >> 10.0; 20.0", + "2.0 >> 2.0", + "5.0; 0.0", + "Unknown >> 10.0; 120.0", + "1.0 >> 16.0", + "5.0 >> 95.0", + "15.0; 120.0; 15.0", + "10.0 >> 0.0", + "15.0 >> 10.0 >> 10.0", + "Unknown >> 200.0", + "5.0 >> 312.0", + "Unknown >> 105.0", + "3.0 | 10.0", + "3.0 >> 5.0 >> 90.0", + "2.0; 4.0", + "50.0; 5.0 >> 5.0", + "Unknown >> 10.0 >> 60.0", + "0.1", + "10.0; 300.0; 90.0", + "15.0; 15.0; 90.0; 10.0", + "15.0 | 15.0", + "3.0; 5.0; 60.0", + "2.0 >> 45.0", + "0.13", + "2.0 >> 30.0", + "Unknown >> 1.0", + "7.0 >> 1.0", + "15.0; 45.0", + "2.0 >> 120.0", + "40.0 >> 40.0", + "10.0 >> 10.0 >> 10.0 >> 10.0", + "10.0", + "10.0; 40.0", + "10.0; 10.0; 10.0; 10.0; 40.0", + "Unknown >> 18.0", + "5.0 >> 15.0", + "5.0 >> 780.0", + "30.0; 15.0", + "Unknown >> 2.0", + "6.0; 10.0", + "3.0; 5.0 >> 15.0", + "0.5; 20.0", + "0.5; 5.0", + "2.0 >> 240.0", + "15.0; 0.05 >> 4.0", + "210.0", + "10.0; 10.0; 10.0", + "Unknown >> 7.0", + "0.5 >> 5.0 | 5.0", + "15.0; 20.0", + "120.0 >> 10.0", + "30.0 >> 600.0", + "150.0; 15.0", + "Unknown >> 8.0", + "10.0; 5.0; Unknown >> 5.0", + "40.0; 120.0; 100.0; 130.0", + "1.0; 9.0", + "Unknown >> 15.0 >> Unknown", + "1.0; 25.0", + "10.0 >> 120.0", + "1.45; 60.0", + "40.0 >> Unknown", + "15.0; 60.0 >> 5.0", + "10.0; 150.0; 90.0", + "5.0 | 10.0", + "5.0; 30.0; 2.0", + "30.0; 3.0 >> 15.0", + "Unknown | 5.0", + "1.0; 20.0", + "2.0 >> 4.0", + "Unknown >> 30.0; 30.0", + "24.0", + "5.0 >> 5.0", + "0.5; 2.0", + "30.0 >> 30.0; 30.0", + "30.0; 80.0", + "30.0 >> 30.0; 5.0", + "4320.0", + "10.0 >> 1.0 >> 10.0", + "8.0; 5.0", + "Unknown >> 65.0", + "100.0; 10.0", + "30.0", + "40.0; 10.0", + "2.0; 58.0", + "2.0 >> 5.0; 60.0", + "Unknown >> 3.0", + "1.0 >> 5.0", + "16.0 >> 10.0", + "Unknown >> 10.0; 100.0", + "1.6", + "15.0 >> Unknown >> Unknown", + "360.0", + "60.0; 20.0", + "10.0; 10.0", + "Unknown >> 10.4", + "10.0; 10.0; 10.0; 10.0; 10.0; 10.0", + "Unknown >> 1.0 >> 1.0 >> 15.0", + "3.0; 10.0 >> 0.25", + "10.0; 30.0; 90.0", + "600.0 >> 5.0", + "30.0 | 5.0", + "1.0; 2.0 >> 2.0; 4.0", + "20.0 >> 60.0", + "0.25; 60.0", + "1440.0", + "4.0 >> 15.0", + "5.0 >> 5.0 | Unknown", + "5.0; 5.0; 5.0; 10.0; 10.0; 10.0; 10.0; 90.0", + "30.0 | Unknown | 150.0", + "5.0 >> Unknown", + "4.0; 60.0", + "140.0", + "120.0; 10.0", + "3.0; 7.0", + "80.0", + "40.0 >> 30.0", + "120.0 >> 120.0", + "Unknown >> 15.0 >> 10.0", + "5.0 >> 15.0; 75.0", + "11.0 >> 60.0", + "5.0 >> 45.0", + "3.0; 5.0 >> 5.0", + "15.0; 0.08 >> 4.0", + "60.0 >> 5.0 >> 5.0", + "50.0 | 10.0", + "10.0 >> 10.0; 60.0", + "10.0; 60.0", + "1.0; 30.0", + "0.08; 20.0", + "Unknown >> Unknown >> 1.0", + "60.0; 60.0; 60.0", + "30.0 >> 10.0", + "180.0; 17.0", + "60.0 >> Unknown" + ] + } + } + ] + }, + "name": "thermal_annealing_time", + "description": "The time program associated to the thermal annealing.\n- When more than one reaction step, separate the annealing times associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the associated times at those temperatures and separate them with semicolons.\n- The annealing times must align in terms of layers\u00b8 reaction steps and annealing temperatures in the previous filed.\n- If a time is not known, state that by \u2018nan\u2019\n- If no thermal annealing is occurring after the deposition of a layer, state that by \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 20 and not 10-30.\nExample\n60\n5; 30 >> 60\n0 >> 5; 5", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "N2", + "Unknown >> O2", + "Vacuum; N2", + "Air >> Air | Air", + "Air >> N2", + "N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2", + "Dry air >> Air", + "Unknown", + "N2 >> Vacuum", + "Vacuum; Unknown; Unknown", + "N2 >> N2", + "N2 | N2", + "N2; Air", + "Unknown >> Air", + "Dry air >> Dry air", + "Ambient", + "Unknown >> Unknown", + "Ar >> Ar", + "Unknown >> N2", + "Dry air", + "N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2 >> N2", + "Vacuum >> N2", + "Air", + "Unknown | 70", + "Vacuum", + "Ar >> Vacuum", + "Unknown >> Air >> Air", + "N2; Ambient", + "Air >> Air", + "Ar", + "N2 >> Air" + ] + } + } + ] + }, + "name": "thermal_annealing_atmosphere", + "description": "The atmosphere in which the thermal annealing is conducted.\n- When more than one reaction step, separate the atmospheres associated to each annealing step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of deposition steps must line up with the previous columns.\n- If the atmosphere is a mixture of different gases, i.e. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas.\n- This is often the same as the atmosphere under which the deposition is occurring, but not always.\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nAir >> N2\nAr", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0 >> 0", + "15", + "0; 60", + "32", + "50.0", + "30; 50", + "0; 0", + "60.0", + "43", + "0.9", + "45", + "20 >> 20", + "60", + "30", + "90", + "65.0", + "0 | 0", + "0 >> 25", + "50", + "10" + ] + } + } + ] + }, + "name": "thermal_annealing_relative_humidity", + "description": "The relative humidity during the thermal annealing\n- If there is more than one annealing step involved, list the associate relative humidity in the surrounding atmosphere and separate them by a double forward angel bracket (\u2018 >> \u2018)\n- The number and order of annealing steps must line up with the previous column\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.\n- If a humidity is not known, stat that as \u2018nan\u2019\nExample\n0\n35 >> 0\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.1 Torr >> 1 Torr", + "0.1 Torr", + "1 atm >> 1 atm", + " Vacuum >> 1 atm", + "1 bar", + "1 atm; 0.2 bar", + "1 atm | 1 atm", + "50 Pa; nan; nan", + "1 atm", + "0.001 bar", + "1 atm >> 1 atm | 1 atm", + "nan >> 700 Pa" + ] + } + } + ] + }, + "name": "thermal_annealing_pressure", + "description": "The atmospheric pressure during the thermal annealing\n- If there is more than one annealing step involved, list the associate atmospheric pressures and separate them by a double forward angel bracket (\u2018 >> \u2018)\n- The number and order of annealing steps must line up with the previous column\n- Pressures can be stated in different units suited for different situations. Therefore, specify the unit. The preferred units are:\no atm, bar, mbar, mmHg, Pa, torr, psi\n- If a pressure is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 100 pa and not 80-120 pa.\nExample\n1 atm\n1 atm >> 0.002 torr\n1 atm >> 1 atm >> nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "solvent_annealing", + "description": "TRUE if there has been a separate solvent annealing step, i.e. a step where the perovskite has been annealing in an atmosphere with a significant amount of solvents. This step should also be included deposition procedure sequence but is also stated separately here to simplify downstream filtering.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Under", + "Before", + "After" + ] + } + } + ] + }, + "name": "solvent_annealing_timing", + "description": "The timing of the solvent annealing with respect to the thermal annealing step under which the perovskite is formed. There are three options.\n- The solvent annealing is conducted before the perovskite is formed.\n- The solvent annealing is conducted under the same annealing step in which the perovskite is formed\n- The solvent annealing is conducted after the perovskite has formed.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "H2O", + "DMSO; H2O", + "TBP", + "Acetic acid; Chlorobenzene", + "Pyridine", + "4\u2010fluoroaniline", + "Chlorobenzene; DMSO", + "GBL", + "DMSO; IPA", + "Aminobutanol", + "Methylamin", + "Methanol; Methylamin", + "Unknown", + "Hac", + "Triethylenetetramine", + "Diethylenetriamine", + "Methanol", + "DMF", + "DMF; H2O", + "DMSO", + "Chlorobenzene", + "Chlorobenzene; DMF", + "HCl", + "Thiophene", + "DMF; DMSO", + "Toluene", + "DMF; IPA", + "Benzyl alcohol", + "NMP", + "Ethanol", + "Air", + "Air; DMSO", + "Vacuum", + "CCl4", + "MACl", + "DMSO; NMP", + "IPA", + "Hexane" + ] + } + } + ] + }, + "name": "solvent_annealing_solvent_atmosphere", + "description": "The solvents used in the solvent annealing step\n- If the solvent atmosphere is a mixture of different solvents and gases, e.g. A and B, list them in alphabetic order and separate them with semicolonsas in (A; B)\nExample\nDMSO\nDMF\nDMF; DMSO", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "40.0", + "90.0", + "2.5", + "50.0", + "10.0", + "60.0", + "5.0", + "120.0", + "Unknown", + "180.0", + "0.16666666666666666", + "80.0", + "480.0", + "1.5", + "0.25", + "30.0", + "0.3", + "2.0", + "1.0", + "20.0", + "0.08333333333333333", + "15.0" + ] + } + } + ] + }, + "name": "solvent_annealing_time", + "description": "The extend of the solvent annealing step in minutes\n- If the time is not known, state that by \u2018nan\u2019\n- If the solvent annealing involves a temperature program with multiple temperature stages, list the associated times at each temperature and separate them with a semicolon (e.g. 5; 10)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "200", + "120.0", + "Unknown", + "90.0", + "100", + "90", + "100.0", + "20", + "110.0", + "150.0" + ] + } + } + ] + }, + "name": "solvent_annealing_temperature", + "description": "The temperature during the solvent annealing step\n- The temperature refers to the temperature of the sample\n- If the solvent annealing involves a temperature program with multiple temperature stages, list the associated temperatures and separate them with a semicolon (e.g. 5; 10) and make sure they align with the times in the previous field.\n- If the temperature is not known, state that by \u2018nan\u2019", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Washed with Ether", + "Ultrasonic vibration treatment", + "Washed with Toluene", + "DABr", + "Post annealing", + "Dipped in Toluene", + "Washed with DMSO", + "Degradation in air under AM 1.5", + "Magnetic field", + "CF4 plasma treatment", + "Deposition Nanocrystals of CsPbI3", + "Deposition Nanocrystals of CsPbBr3", + "Thermal radiation", + "Washed with Ethyl acetate", + "Washed with chloroform and Ether", + "Spin coating GASCN", + "Annealed under pulsed light", + "Vacuum oven annealing", + "Pressed with flat stamp", + "Pulsed light", + "Fast Cooling", + "Washed with IPA", + "Dipped in octadecene >> Washed with cyclohexane", + "TETA vapour treatment", + "Hot isostatic pressing", + "Drying cabine", + "Washed with IPA >> Thermal Annealing", + "Poling", + "Slow cooling", + "Washed with DMF", + "Photonic curing", + "IPA:ACE @ 1:1 washing", + "UV laser radiation", + "Repeated Spin-coating", + "Hot-pressing", + "Dipped in Chlorobenzene", + "Washed with acetylene black (15 mg/ml) solution in chlorobenzene", + "Micro contact inprinting", + "Spin coating@Guanidinium thiocyanate", + "Gas pump treatment", + "Spin coating GASCN; MACl", + "IR radiation", + "DCM:DEE @ 50:50 washing", + "Vaccum drying", + "fs laser polishing >> Washed with IPA >> Spin-coating solution of CsI, FAI, MABr in IPA >> annealed at 100", + "Washed with ACE", + "Degradation in air under dark", + "H2O2 treatment", + "Gradient thermal annealing", + "Soaking in Isopropyl", + "Washed with Acetone", + "Washed with IPA >> Spin-coating Dichloromethane", + "Annealed under intense laser pulses", + "Graphdiyne passivation treatment", + "Ethylacetate washing", + "Cold-roll pressing", + "IPFB immersion", + "Washed with GBL", + "Dipped in Ethyl acetate", + "Ultrasonic transducer", + "Atmospheric-pressure dielectric barrier discharge", + "Washed with IPA >> Drying in flow of N2", + "Washed with Anisole", + "Dissolving polystyren template in toluene", + "Spin-coating Ethanol", + "Cold isostatic pressing", + "Pressed with dotted stamp", + "Washed with IPA >> Washed with Dichloromethane", + "Annealed in a perfluorodecalin bath", + "Intense pulsed light annealing", + "Inverted thermal annealing", + "Washed with MABr solution in IPA", + "Exposed to moist air", + "Dried by N2 gas", + "Intense light", + "FABr treatment >> Rinse with 2-propanol >> Thermal annealing >> Slow cooling", + "Washed with MAI solution in IPA", + "Dried under flow of N2", + "Spin coating GABr >> annealing", + "Toluene washing", + "Refrigerated", + "Ultrapure water spray", + "Moisture", + "Spin-coating iodopentafluorobenzene", + "Radiative thermal annealing", + "Near Infrared radiation", + "Light soaking", + "Vacuum annealing", + "UV radiation", + "Washed with Chlorobenzene", + "Microwave radiation", + "Dipped in FAI containing ethyl acetate solution", + "Heating >> Light exposure", + "Dipped in Anisole", + "Washed with Methyl acetate", + "Annealed under light", + "Spin-coating Pr-ITC; Ph-DTIC", + "Pressed with hexagonal stamp", + "Washed with IPA and drying with pressurized air", + "IR laser radiation", + "Stored at elavated temperature", + "Laser annealing", + "Dried under flow of clean air" + ] + } + } + ] + }, + "name": "after_treatment_of_formed_perovskite", + "description": "Any after treatment of the formed perovskite. Most possible reaction steps should have been entered before this point. This is an extra category for procedures that just does not fit into any of the other categories.\nExamples:\nHot isostatic pressing\nMagnetic field\nUV radiation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "50 min", + "50 W/cm2; 2.42 s", + "Colling rate < GHT-3", + "40kHz; 5W; 2 min", + "40kHz; 10W; 2 min", + "10 pulses per sample", + "2.5", + "40kHz; 10W; 1 min", + "Colling rate < GHT-2", + "1", + "40kHz; 10W; 3 min", + "2.47 s", + "5", + "105 deg. C", + "70 C >> 254 nm", + "30% RH; 8 h", + "30 min", + "100 deg. C", + "40kHz; 5W; 1 min", + "7s", + "30% RH; 12 h", + "50 W/cm2; 2.40 s", + "50 W/cm2; 2.38 s", + "50 W/cm2; 2.50 s", + "40kHz; 10W; 4 min", + "40kHz; 5W; 3 min", + "30% RH; 4 h", + "2 min", + "85 deg. C in Air 50 % RH", + "9s", + "Colling rate < GHT-4", + "40kHz; 5W; 4 min", + "20 min", + "50 W/cm2; 2.45 s", + "10s", + "10 s", + "13s", + "45 deg. C", + "105 C", + "40 mW/cm2", + "Fast cooling in ice 150 >> 0", + "80 deg. C; 15 s", + "11s", + "50 W/cm2; 2.53 s", + "50 W/cm2; 2.55 s", + "50 W/cm2; 2.47 s", + "200 Mpa; 90 deg.C; 60 min", + "0.5", + "85 deg. C in O2", + "Several hours", + "Fast cooling in air 150 >> 0", + "85 deg. C in N2", + "nan >> 100 deg C 5 min", + "80W/cm 20.1mm/s", + "500W, 30 sec", + "200 Mpa; 60 min", + "Spin-coating>> 2 mg/ml>> 100 deg. C>> 10 min", + "70 deg. C; 60 min" + ] + } + } + ] + }, + "name": "after_treatment_of_formed_perovskite_met", + "description": "Connected to the previous field (After treatment of formed perovskite). The label describing the method should be in the previous filed, and the associated metrics in this one. For exampleThe sample is intense gamma radiation at a flux of X under 45 minutes. The \u201cgamma radiation\u201d is the label, and the time and the flux is the metrics. Give the units when you state the metrics\nExamples:\n40kHz; 5W; 4 min\n45 deg. C\n30 min\n50 W/cm2; 2.38 s", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "HTL", + "description": "A section to describe information related to the Hole Transport Layer (**HTL**).", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "TAPC | MoO3; TAPC", + "1\u2010adamantylamine hydrochloride | Spiro-MeOTAD", + "MDMO-PPV", + "TTPA-OMeTPA", + "NiO | Br-BA", + "P3CT-K", + "TPB", + "ZnBu4Pc", + "BuO-DATPA", + "FT-OMeTPA", + "BChl-2", + "Graphene oxide | CuBuPc", + "PTZDPP-2", + "Al2O3-mp | Me2N-DATPA", + "po-TPE-4DPA", + "TDAC", + "Au-np | NiO-c", + "B58", + "CuSCN-3D", + "HMDI", + "Me6-ZnPc", + "PMT", + "T103", + "Ag-np; NiO-c", + "NiO-np | TPI-4MEO", + "CsPbI3-QD | Spiro-MeOTAD", + "P(BDTT-SePPD)", + "PDBT-co-TT", + "GD; P3HT", + "KY7F22-np | Spiro-MeOTAD", + "PDBT-T1 | WOx", + "YT3", + "M116", + "CH3O-PEIA | Spiro-MeOTAD", + "HTM-2", + "TaTM | F6-TCNNQ; TaTm", + "PEDOT:PSS | Perylene", + "F6-TCNNQ | TaTm", + "V842", + "PEDOT:PSS | PSS-Na", + "NiO-c | PNP-BC", + "PEDOT:PSS | Au-np; VOx", + "[BMPA-BTD]3-TPA", + "YKP06", + "DTBT", + "rGO-flakes | Spiro-MeOTAD", + "9,9'-([1,2,5]thiadiazolo[3,4-c]pyridine-4,7-diylbis(4,1- phenylene))bis(N3,N3,N6,N6-tetrakis(4-methoxyphenyl)-9H-carbazole-3,6-diamine)", + "PFO | Al2O3-np", + "4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-(hexyloxy)phenyl)aniline)", + "TFB", + "V950", + "VOx | X-DVTPD", + "HB-Cz", + "C201", + "V1036", + "2-MP | Spiro-MeOTAD", + "SWCNTs | PTAA", + "HTM4", + "H-2,3", + "MoS2", + "CON-10 | PEDOT:PSS", + "PEDOT:PSS | PTB7", + "YKP03", + "TPA-NAP-TPA", + "PTAA | TPFB", + "TTPA-DTP", + "CS05", + "SGT-407", + "CuPcNO2-OBFPh", + "EGO-PPV", + "RE-ZnBu4Pc", + "CdSe-QD | Spiro-MeOTAD", + "NiO-c | 1ab", + "MoOx | F4TCNQ", + "WS2", + "WO3", + "dly-2", + "18-crown-6 ether | CuSCN", + "MoO3 | TBDI", + "BDTT:DPPD:TT", + "SY3", + "TTF1", + "PT", + "Tea Catachinrich biomolecules", + "PEH-9", + "NiO@C | Spiro-MeOTAD", + "ST1 (4-(4-(bis(4-(4-(dibutylamino)styryl)phenyl)amino)styryl)-N,N-dibutylaniline)", + "NiO-c | NBP-BC", + "CuPc-DMP", + "SGT-405", + "AL2O3-c | Spiro-MeOTAD", + "PTAA", + "di-TPA", + "2-((5-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2\u2032,3\u2032-d]pyrrol-2-yl) thiophen-2-yl)methylene) malononitrile", + "PBDT(T)(2F)T", + "PPP", + "B[BMPDP]2", + "V873", + "9,9\u2019-di{6-[3-(2-(4-methylphenyl)vinyl)-9-carbazol9-yl]hexyl}-[3,3\u2019]bicarbazole)", + "Caffeine | Spiro-MeOTAD", + "Poly-TBD", + "X60", + "HOFP | Spiro-MeOTAD", + "NP1", + "CuBuPc", + "PolyTPD | Spiro-MeOTAD", + "Al2O3-c | Ethyl acetate; I2; LiI; NMBI; Urea", + "PVBT-SO3", + "Spiro-MeOTAD | Cu1.75S", + "FBT-TH4 | CuxO", + "PTB1", + "Z34", + "PSS-g-PANI", + "MEAI | Spiro-MeOTAD", + "NiO-np | PMMA", + "M118", + "DPA-ANR-DPA", + "YR3", + "V997", + "DBT(QT-TPA)2", + "SO10", + "TaTm | TaTm:F6-TCNNQ", + "TBDI", + "PO-Spiro", + "TTPA-DSQT", + "Spiro-MeOTAD | PDPP4T", + "SnS-np; ZnS-np | NiO-np", + "1b @ triphenylamine modified azobenzene dyes", + "THY-1", + "SP-11", + "Zeocoat | Graphene | P3HT", + "P3HT | Spiro-MeOTAD", + "H11", + "CuI | PEDOT:PSS", + "PTAA | PFN-P2", + "PTTh", + "TaTm | TPBi | MoO3", + "DEH", + "Perylene", + "PEDOT:PSS | pTPD", + "SDTCz2F", + "TCTA-BVP", + "EDT; PbS", + "PDCBT", + "NiO-c | Au-np", + "MeOAc-Spiro-OMeTAD", + "C102", + "3,4-spiro", + "PTPD2", + "3,3\u2032,5,5\u2032-tetrasubstituted 1,1\u2032-biphenyl", + "X14", + "H101", + "POZ6-2", + "1a @ triphenylamine modified azobenzene dyes", + "PEDOT:PSS | TPA-NPA-TPA", + "SubPc", + "Z10", + "OIPC-Br", + "4b @ triphenylamine modified azobenzene dyes", + "X54", + "TPAC3M", + "5,7-disubstituted azulene", + "CZTPA-1", + "NiO-np | TPI", + "P3HT | Ta:Wox-np", + "FT73", + "TDT-OMeTAD", + "AQ310 | Spiro-MeOTAD", + "Spiro-MeO-TPD", + "BL40", + "PEDOT:SAF", + "YC-3", + "TPA3C", + "V1056", + "SCPDT-BiT", + "NiO-np | 2,2\u2019-BiPy", + "Fe3O4-np", + "Carbozole @ S14", + "PZn-DPPA", + "X2", + "SFD-Spiro", + "SWCNTs", + "HTB-Ome", + "CZTSSe; rGO", + "Q198", + "EVA; MWCNTs | Spiro-MeOTAD", + "BTPA", + "CsSnBr2I-QDs", + "MeoTPD", + "CuH", + "V2O5", + "HTM2", + "Graphene oxide | PTAA", + "N2,N2,N3',N3',N6',N6',N7,N7-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,3',6',7-tetraamine", + "M114", + "Benzylamine | Spiro-MeOTAD", + "pPh-2MODPACz", + "PMA | TaTm", + "DERDTS-TBDT", + "TTB3", + "BMIMBF4 | Spiro-MeOTAD", + "NBP-BC", + "TB-ZnPc", + "(OctPhO)8CuPc1", + "PEDOT:PSS | V2O5", + "BTP-1", + "M4", + "Benxylamine | Spiro-MeOTAD", + "BDT-4D", + "oxo-Graphene", + "4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2\u2032,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- (hexyloxy)phenyl)aniline)", + "PEDOT:PSS; PEG", + "Spiro-MeOTAD | Al2O3-c", + "mm-SFX-2PA", + "Spiro-tBuBED", + "PTB-BO", + "V1004", + "CZTS0.5Se0.5; rGO", + "MPA", + "PTAA | PS", + "P-SC6-TiOPc", + "PBDT(2H)T", + "POZ2", + "PIF8-TAA", + "Spiro-PT-OMeTAD", + "BT", + "BTPA-TCNE", + "NiMgO", + "POZ9", + "Thiophene | Spiro-MeOTAD", + "HMe2Pc", + "TCPI | Spiro-MeOTAD", + "NiO-c | 1bb", + "PCDTBT; PFN", + "MoO2-np", + "Carbon-nt; PEDOT:PSS | PEDOT:PSS", + "Graphene oxide; PEDOT:PSS", + "4-(4-phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-methoxyphenyl)-phenylamine", + "YC03", + "tetra-TPA", + "MHGO", + "P:ON", + "1,3-disubstituted azulene", + "Ni | Au | Cu", + "M113", + "2FBTA-2", + "NiO-c | NiO-np", + "DDOF", + "Trux-OMeTAD", + "PB2T-S", + "PEDOT:PSS | CuI", + "PEDOT:PSS | FrGO", + "PCE-10", + "HAB1", + "2,7-BCz-OMeTAD", + "2,5-bis (5-(5-(5-hexylthiophen-2-yl) thiophen2-yl) thiophen-2-yl) thiazolo[5,4-d]thiazole", + "BTF2", + "PEDOT:PSS | P3HT", + "CS04", + "PB(NAP-Th)TBT", + "[BMPA-EDOT]3-TPA", + "18-crown-6 ether | Spiro-MeOTAD", + "T30P", + "MoOx | TaTm", + "Z7", + "P(BDTT-ttPPD)", + "PEDOT:PSS | Porphyrin", + "Q221", + "SQ2 | Spiro-MeOTAD", + "Tetracene", + "TS-CuPc | PEDOT:PSS", + "D1", + "PTAA | Al2O3-mp", + "P3CT", + "MoO3", + "BTPA-5", + "P3HT", + "MoO3 | CuPc", + "V1012", + "EDOT-OMeTPA", + "CdTe@MAPbI3-QDs | Spiro-MeOTAD", + "NPD", + "Zn-Chl | H2-Chl", + "3C", + "FBA2", + "4-(2-(4-(Bis(4-(hexyloxy)phenyl)methyl)phenyl)-9-methyl-9H-naphtho[2,1-c]carbazol-12-yl)-N,N-bis(4-(hexyloxy)phenyl)aniline", + "ZnChl-3", + "2TPA-3-DP", + "Spiro-MeOTAD | P3HT; SWCNTs | PEDOT:PSS", + "2D-Sb", + "SY2", + "SFT-TPAM", + "Al2O3-np | CuBuPc", + "Th-PDI", + "TAA14", + "DPP-F", + "B74", + "Al-np; PEDOT:PSS", + "CuSCN | MoOx", + "I2; KI; Propylene carbonate; Polyethylene glycol", + "Z25", + "Black phosphorous 2D | CuSCN", + "Spiro-TTB | VOx", + "TPBC", + "POSS-SH | Spiro-MeOTAD", + "CZ-STA", + "PEDOT:PSS | 3-aminopropanoic acid-SAM", + "A-PDTON | PEDOT:PSS", + "T102", + "NO-Graphene-QDs", + "PTPD", + "Cu2MnSn4-np", + "PffBT4T-20D", + "M101", + "I2; LiI; Methoxypropionitrile", + "3,6-di(2H-imidazol-2-ylidene)cyclohexa 1,4-diene-C12", + "TAE", + "4-chlorothiophenol", + "X-DVTPD", + "HTM3", + "1-(N,N-di-p-methoxyphenylamine)pyrene", + "MEH-PPV | Spiro-MeOTAD", + "pm-TPE-4DPA", + "MoOx", + "P3CT-N", + "TTh101", + "TP1", + "CZTS", + "CT2", + "PEH-1", + "KR355", + "Poly(3-bromothiophene)", + "rGO-4FPH | Spiro-MeOTAD", + "TZ3", + "PEDOT:PSS", + "FTA2", + "FrGO", + "CzPAF-TPA", + "MeO-DATPA", + "PEDOT:LS", + "MTA", + "PCPD2FBT:BCF", + "SO8", + "4-F-br-4C", + "Polymer3", + "3,3'-(2,7-bis(bis(4-methoxyphenyl)amino)-9H-fluorene-9,9-diyl)bis(N-ethyl-N,N- dimethylpropan-1-aminium) bis(trifluoromethanesulfonyl)imide", + "PTB7-th", + "BTT-5", + "CuInS2 | Al2O3-mp", + "BTF1", + "DCZ-OMeTAD", + "NiO-c | CuI", + "TPA-Pc", + "P", + "Spiro-MeOTAD-F", + "Cu:NiO", + "Graphene-QDs", + "F33", + "PCDTBT8", + "X59", + "NiO-c | BMIMBF4", + "rGO", + "P3DDT", + "X21", + "TPASBP", + "poly(DTSTPD-r-BThTPD)", + "PEDOT:PSS | Propionic acid", + "1d @ triphenylamine modified azobenzene dyes", + "CuPc-Bu", + "MoS2; PEDOT:PSS", + "Al2O3-np | Spiro-MeOTAD", + "3-Hexylthiophene | Spiro-MeOTAD", + "COTT-1", + "Graphene aerogel | Spiro-MeOTAD", + "PCP-Na", + "X19", + "IDF-SFXPh | MoO3", + "DPA-TPM", + "Co0.817Cu0.183O1.19", + "DBTMT", + "BTT-Me", + "Carbon-QDs", + "Polystyrene | Spiro-MeOTAD", + "PEDOT:MNSF", + "TOPO | TaTm", + "PEDOT:PSS | PEDOT:GSL", + "BTDTP", + "9,9-bis(3-(dimethylamino)propyl)-N2,N2,N7,N7-tetrakis(4-methoxyphenyl)-9H-fluorene- 2,7-diamine", + "Spiro-MeOTAD; X60", + "CT1", + "PBDTT", + "PDO1", + "TTB1", + "JY7", + "4,8-bis-(5-bromothiophene-2-yl)-benzo thiadiazole", + "TbT-3", + "BL51", + "NiO-c | N719 dye", + "Aniline | Spiro-MeOTAD", + "KM03", + "PF8-TAA", + "H66", + "ZnPcNO2-OBFPh", + "alfa-NPD", + "WO3-nw@PEDOT", + "NP-BC", + "COTT-2", + "PEG | Spiro-MeOTAD", + "PPDI | Spiro-MeOTAD", + "PFBT-Na", + "FePc-Cou", + "PVBT-SB", + "PAH 2", + "N1,N3,N5-tris(4-n-butylphenyl)-N1,N3,N5-triphenylbenzene-1,3,5-triamine", + "Au; NiO", + "IEICO; PBDTTT-E-T", + "HPB-Ome", + "V911", + "Bis-amide-TTF", + "Aminothiazolium iodide | P3HT", + "S5", + "NiO-c | NP-BC", + "TFB | P3HT", + "PEDOT:PSS | PTPAFSONa", + "M2", + "PVP | Spiro-MeOTAD", + "BTTP-CN", + "X36", + "TiS2-np", + "YK2", + "PEDOT:PSS | PEI", + "PEDOT:PSS | CrO3", + "ZnMe2Pc", + "NiO-c | PFN-P2", + "Poly(TA) | Spiro-MeOTAD", + "2\u2010aminoterephthalic acid | Spiro-MeOTAD", + "Co0.39Cu0.61O", + "Ethyl acetate; I2; LiI; NMBI; Urea", + "H-Z2", + "MeO-2PACz", + "PEDOT:PSS; PEI | PEDOT:PSS", + "DTB", + "CuMePc", + "3-hydroxypyridine | Spiro-MeOTAD", + "TPB(2-MeOTAD)", + "Mo(tfd-COCF3)3 | SWCNTs | Spiro-MeOTAD", + "Spiro-MeOTAD | Rubrene", + "CA-Br; TPA-PT-C6", + "PEDOT:PSS; V2O5", + "Z28", + "CISZ-QDs", + "PTB7", + "LiNiO-c", + "A101", + "PVBT-TMA", + "SAF-5", + "M117", + "PBDTTT-E-T | MoO3", + "PD-10-DTTE-7 | Spiro-MeOTAD", + "4,4'-(1,3,4-Oxadiazole-2,5-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)", + "WY-3", + "X55", + "BL25", + "pBDT-BODIPY | PFN", + "CuGaO2-np", + "NiO-np | PSS", + "pDPA-DBTP", + "BL52", + "CuCo2O4", + "PEDOT:PSS | PBDB-T:ITIC", + "HFB-OMeDPA", + "VOx | PEI", + "ATT-OHex", + "N-CuMe2Pc", + "PEDOT:PSS | Au-nw; VOx", + "CrO2", + "CoO", + "P5", + "M102", + "V1013", + "BX-OMeTAD", + "PEDOT:PSS; Graphene oxide", + "TAE4", + "TPADPP-2", + "3-F-br-4C", + "MoS2-QDs; rGO-flakes | Spiro-MeOTAD", + "Polyacrylonitrile-grafted rGO", + "D101", + "V2Ox", + "TbT-2", + "PEDOT:PSS | NiO-c", + "IDT-TPA", + "NaYF4:Yb:Tm-np | Spiro-MeOTAD", + "PBDTTT-CT | Spiro-MeOTAD", + "CzPAF\u2010SBF", + "BTT(DPP-Th)3-EH", + "PTZ-TPA", + "PBDTT-FTTE", + "SGT-420", + "P2Z1", + "C6TBPH2", + "PMMA | DTPC8-ThTPA", + "PEDOT:PSS | X-QUPD", + "V1209", + "HBT-ZnPc", + "CuInS2@ZnS-QDs", + "PEDOT:PSS | Au-nanobipyramide; VOx", + "ZnPcNO2-OPh", + "Rubrene", + "tert-CuBuPc", + "PCBM-60", + "SM01", + "X51", + "P3HT; Spiro-MeOTAD", + "OMe-TATPyr", + "Azomethine", + "DCZ-OMeTPA", + "SWCNTs | P3HT", + "Co0.817Cu0.183O", + "Y3", + "N2,N,N8,N8-tetrakis[2,2-bis(4-methoxyphenyl)ethenyl]-4,10-dimethyl-6H,12H-5,11-methanodibenzo[b,f][1,5]diazocine2,8-diamine", + "PEDOT:PSS | AuAg@SiO2-np", + "PZn-TPA", + "TPD", + "Ph-TPA-4A", + "IDTT-TPA", + "TRUX1", + "Ta2O5 | Spiro-MeOTAD", + "2mF-X59", + "YC-1", + "PMMA | Spiro-MeOTAD", + "LHTM-2", + "In2O3", + "TSHBC-CF3", + "PTAA | PFN", + "Spiro-TBB", + "HPPHT", + "Poly[4,8-bis(2-(4-(2-ethylhexyloxy)phenyl)-5-thienyl)benzo[1,2-b:4,5b\u2019]dithiophene-alt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione", + "SFX-TPA", + "PEDOT; Graphene", + "3,6-Cbz-EDOT", + "TPE-2,7-Carbazole W4", + "Choline chloride | Spiro-MeOTAD | SWCNTs", + "H-Z1", + "PEDOT:PSS | Dex-CB-MA", + "TTB2", + "COPV4", + "Cu0.8Cr0.2O2", + "Cz-OMeTAD", + "Cu3PS4-np", + "PDPPDBTE", + "NO2-PEIA | Spiro-MeOTAD", + "P3HT; SWCNTs; Spiro-MeOTAD", + "BL38", + "PEDOT:PSS | V2Ox", + "Co0.939Cu0.061O", + "Carbon-nt | PEDOT:PSS", + "DM2", + "CuI-np", + "PCz", + "H-3,4", + "TPA-ZnPc", + "TTz-1", + "Z1012", + "NH2-POSS | Spiro-MeOTAD", + "EP02", + "Triazine | Spiro-MeOTAD", + "Z7@MWCNTs", + "N3,N3,N9,N9\u2010tetrakis(4\u2010methoxyphenyl)xantheno[2,1,9,8\u2010klmna]xanthene\u20103,9\u2010diamine", + "H65", + "ZnPc | Spiro-MeOTAD", + "AS44", + "2FBTA-1", + "V886", + "PFB", + "IEICO; PBDB-T", + "NiO | CuSCN", + "PSQ1", + "M109", + "TRUX2", + "Spiro-MeOTAD | NaYF4", + "Poly-N-vinylcarbazole | Spiro-MeOTAD", + "Azu-Hex", + "p-DTS(FBTTh2)2", + "NiO-c | PCDTBT", + "TCP-OH", + "CuIn1.5Se3-QDs", + "3,6-cbz-EDOT", + "SO9", + "DOR3T-TBDT; PCBM-70", + "TPD | HAT-CN", + "AZ2", + "CuPcNO2-OPh", + "TPAC-SAM", + "Yih-1", + "V885", + "NiS", + "IT-4F; PBDB-T-SF", + "CuO", + "HBZ-70", + "NiO-np | ME2", + "OCNR; PEDOT:PSS", + "M:ON", + "P1-2", + "WY-1", + "TZ1", + "pBBTa\u2010BDT2", + "mm-SFX-3PA", + "EHCz-2EtCz", + "VB-Me-FDPA", + "TPA1C", + "H6-ZnPc", + "Fluorene-dithiophene", + "quart-p-phenylene1", + "NiO-c | NiO-c", + "PDTSTTz", + "PDCBT | MoO3", + "Graphene oxide | PMMA", + "H-FL", + "none", + "BTF3", + "YC02", + "Carbon-nt; P3HT | PEDOT:PSS", + "Al2O3-c | Spiro-MeOTAD", + "PEDOT:PSS | PDPP-DTT", + "Spiro-MeOTAD | Al2O3", + "Tris(4-(5-hexylthiophen-2-yl)phenyl)amine", + "NBNDD", + "TAZ-[MeOTPA]2", + "TPB-2-MOTPA", + "N,N\u2010di\u2010p\u2010methylthiophenylamine", + "TPC", + "SrGO", + "PEH-8", + "2PACz | MeO-2PACZ", + "PEDOT:PSS | PEI-HI", + "HL-1", + "Zn-Chl", + "POZ3", + "CZTS; rGO", + "PEDOT:PSS | Ethylene glycol", + "HT-ZnPc", + "LiMgNiO", + "BTTI-C8", + "X60(TFSI)2", + "CZTSe-QDs", + "RCP-BTT", + "NiO-c | YC-1", + "NiO-np | NaCl", + "PEO; KI; I2", + "rGO | PEDOT:PSS", + "KR133", + "Cz-N", + "CuI | Cu@CuI-nw", + "styryl-functionalized GO", + "H18", + "CuPc\u2010OTPAtBu", + "KR122", + "IDTC4-TPA", + "Vox | X-DVTPD", + "N2,N2,N2',N2',N7,N7,N7',N7'-octakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,2',7,7'-tetraamine", + "ZnPc-th-ZnPc", + "Tetrakis-Triphenylamine", + "CuPc-OBu", + "MeO-PPV | PFN-P2", + "J1", + "5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione)", + "N2,N2,N7,N7-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2,7-diamine", + "ZPPHT", + "Y2A2", + "BL50", + "LiI; I2; Methoxyacetonitrile", + "TPP-OMeTAD", + "Cu(In0.5Ga0.5)S2-np", + "PBTTT", + "PEDOT:PSS | NiPcS4", + "NiMgLiO-c", + "S2", + "TTA", + "FT37", + "PASQ-IDT", + "2D-PT", + "Graphene oxide | P3HT", + "PolyTPD | Al2O3-mp", + "PEDOT:PSS | PTPADCF3FSONa", + "CS03", + "MeO-PheDOT", + "1c @ triphenylamine modified azobenzene dyes", + "XY1", + "mp-SFX-2PA", + "F4-TCNQ | CuPc", + "PEDOT:PSS | NaI", + "TTB-TTQ", + "Rubene | P3HT", + "TPA-CN", + "4,4'-((2-Hexyl-2H-benzo[d][1,2,3]triazole-4,7-diyl)bis(thiophene5,2-diyl))bis(N,N-bis(4-methoxyphenyl)aniline)", + "M7-TFSI", + "DPA-ANT-DPA", + "CZTS-QDs", + "TAZ-[MeOTPATh]2", + "TPE-4DPA", + "LiCoO2", + "Graphene oxide; MoOx-np", + "TTA3", + "PTB9", + "iPrO-DATPA", + "PEH-2", + "EtO-DATPA", + "S,Si\u2010heteropentacene", + "XSln847", + "PFB | Al2O3-np", + "NiO-mp | Spiro-MeOTAD", + "PVCz-OMeDPD", + "MoO3 | TPTPA", + "CZTS0.75Se0.25; rGO", + "Graphene oxide | Spiro-MeOTAD", + "NiPcS4 | PEDOT:PSS", + "KR131", + "NiMgO | PVP", + "Adamantane | Spiro-MeOTAD", + "TAE3", + "PM-Spiro", + "PZn-3FTPA", + "TPBS", + "P3HT-MoS2", + "NiO-np | Graphene oxide", + "Al2O3 | CuPc(tBu)4", + "V1036:C2", + "Al2O3 | Sym-HTPcH", + "VO", + "Y4", + "Cu2O", + "GeO2", + "JY5", + "N 4 ,N 4'-(4,10-dimethyl-6H,12H-5,11-methanodibenzo[b,f][1,5]diazocine-2,8-diyl)bis(N 4 ,N 4' ,N 4' - tris(4-methoxyphenyl)-[1,1'-biphenyl]-4,4'-diamine)", + "2TPA-4-DP", + "Cu2O | PEDOT:PSS", + "TTBCPE", + "PEAI | Spiro-MeOTAD", + "CuO-nw | PEDOT:PSS", + "Cu0.5Cr0.5O2", + "Q216", + "M112", + "Co0.878Cu0.122O", + "Chl\u20101", + "C8Br | Spiro-MeOTAD", + "Al2O3 | CuSCN", + "Zr(acac)4", + "THY-5", + "M104", + "2,7-Ben", + "XMP", + "BTT-OMe", + "CuInSe2-QDs", + "1,2-Bis[3,6-(4,4`-dimethoxydiphenylamino)-9H-carbazol-9-methyl]benzene", + "MC-43", + "CuPc(tBu)4", + "MoO3 | NPB", + "CW5", + "mGO | P3HT", + "PEDOT:PSS | PCDTBT", + "Cu2BaSnS4", + "CuFeO2-np", + "PPyra-ACD", + "P3CT-K | CuZnS", + "NiO-mp", + "P1Z2", + "X1", + "H-Tri", + "Hexakis[4-(N,N-di-p-methoxyphenylamino)phenyl]benzene", + "PMMA | DTPC13-ThTPA", + "CS02", + "BDTS-2DPP", + "XPP", + "CuMePy", + "CH3-PEIA | Spiro-MeOTAD", + "P:OO", + "Spiro-MeOTAD | Cu9S5-np", + "2-(3,5-bis(5-(5-hexylthiophen-2-yl)thiophen-2-yl)thiophen-2-yl)-3,5-bis(5-(5-hexylthiophen-2-yl)thiophen-2-yl)thiophene", + "PZn-DPPA-O", + "MEH-PPV | PEDOT:PSS", + "4-(5-(5-(5-(5-(5-hexylthiophen-2-yl) thiophen-2-yl) thiophene-2-yl) thiazolo[5,4-d]thiazol-2-yl) thiophene2-yl)-N,N-diphenyl-benzenamine", + "Graphene", + "V1091", + "3,6-2,7-PCzTPA", + "PEDOT:PSS | Au@SiO2-np", + "Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3,5-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b']dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione", + "FeS2", + "NiO | Spiro-MeOTAD", + "Ome-DPA-CuPc", + "PTPD | Spiro-MeOTAD", + "NiO-np | M2", + "Bi2Te3 | Spiro-MeOTAD", + "DPEDOT-B[BMPDP]2", + "Florinated polymer | Spiro-MeOTAD", + "DA-PEDOT:PSS", + "Poly(ethylene oxide)", + "BChl-3", + "H-Tetra", + "Graphene oxide | PTFTS", + "PbPc", + "benzo[1,2b:4,5b\u2032]-dithiophene", + "SGT-410", + "P3HT | Carbon-nt", + "NiO-np | Glycerol", + "PEDOT:PSS | PTAA", + "HS-Ph-CN | Spiro-MeOTAD", + "Theobromine | Spiro-MeOTAD", + "NiMgLiO | 5-AVA", + "PTB7-TH; PFN", + "P6", + "[BMMIm]Cl", + "NiO-np | CuSCN", + "M106", + "SM-1", + "VOx | APPA", + "PEDOT:PSS | PEG", + "CJ-01", + "sGO", + "C4Br | Spiro-MeOTAD", + "Graphene oxide | PEDOT:PSS", + "(2Z,2'Z)-2,2'-((10-(2-ethylhexyl)-10H-phenothiazine-3,7-diyl) bis(4,1- phenylene)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile", + "SWCNTs | Graphene oxide | PMMA", + "Z9", + "TAPC", + "V1102", + "Ph-TPA-6A", + "nPrO-DATPA", + "2,5-bis (5-(5-(5-hexylthiophen-2-yl)thiophen-2-yl) furan-2-yl) thiazolo[5,4-d] thiazole", + "TBP", + "TSHBC-tBu", + "(OctPhO)8ZnPc2", + "NiO-c | Al2O3-mp", + "TB(MA)", + "P2", + "ZnBChl", + "PEDOT:PSS | GeO2", + "PPN", + "OMeTP-SAM", + "PEO | Spiro-MeOTAD", + "PEDOT:PSS | PFI", + "TQ1d", + "NiO-np", + "V1021", + "CoOx", + "P3HT | SWCNTs | PMMA", + "5,6,11,12-Tetraphenylnaphthacene", + "Spiro-MeOTAD | PEDOT:PSS", + "Black phosphorous nanosheets", + "MC6Cz-TPA", + "CsSnI3-QDs", + "CuPc | PEI", + "ETH44", + "O5H-OMeDPA", + "HTM-3", + "PTB7-Th | MoOx", + "r-GO-HBS", + "PHPT-py", + "TET", + "NO HTL", + "PTAA | PEDOT:PSS", + "NiO-c | PEDOT:PSS", + "[Fe(bpyPY4)](OTf)2.5", + "Diketopyrrolopyrrole", + "F101", + "CPE-Na", + "ZnChl-2", + "3-Dodecylthiophene | Spiro-MeOTAD", + "BL08", + "PBDB-T | Spiro-MeOTAD", + "CuGaO2-mp", + "CuInS | Spiro-MeOTAD", + "MEH-PPV", + "TAE1", + "CL1-2", + "PII2T8T", + "NiO-c | SY4", + "3,8,13-tris[2,2-bis(4-methoxyphenyl)ethenyl]-5,10,15-triethyl-10,15-dihydro-5H-indolo-[3,2-a:3\u2032,2\u2032-c]carbazole", + "5,7-bis(9-ethyl-9H-carbazol-3-yl)-2,3-dihydrothieno[3,4-b][1,4]dioxine", + "H-Z3", + "PZn-FTPA", + "Ni | NiMgO", + "CZTS0.25Se0.75; rGO", + "FA-MeOPh", + "PTEG", + "Me-QTPA", + "MeO-PPV", + "H112", + "MoOx | PEDOT:PSS", + "CzPAF\u2010SBFN", + "4,4\u2032-(9-Methyl-9H-naphtho[2,1-c]carbazole-2,12-diyl)bis(N,N-bis(4-methoxyphenyl)aniline)", + "NiO-np | M3", + "PEDOT:PSS | Carbon-nt", + "Au@SiO2-nw | Spiro-MeOTAD", + "Pyridine | Spiro-MeOTAD", + "PEDOT:PSS | PTPD", + "PARA1", + "PEDOT:PSS | PCP-Na", + "AgI-QDs", + "TTPA-BDT", + "M7-Br", + "PANI-PAMPSA", + "C13-FAS | Spiro-MeOTAD", + "B1", + "LD29", + "SM09", + "ZnPc-flu-ZnPc", + "BTT(DPP)3-C8", + "KR360", + "Si-PO-2CN", + "IEICO-4F | Spiro-MeOTAD", + "SWCNTs | PMMA", + "HfO2 | PTAA", + "BzTA", + "DR3TBDTT; PDMS", + "TPA-QA-TPA", + "Cu0.33Cr0.67O2", + "CuSCN | NPB", + "H1", + "P3HT | P3HT; PMMA", + "TPAC0M", + "CZ-TA", + "V2O5 | P3CT-K", + "KR353", + "Spiro-MeOTAD | CuI", + "X61", + "CuS-np", + "Z8", + "NiO-c | CuGaO2-mp", + "C12-carbazole", + "CA-Br", + "Carbon-nt; P3HT", + "ZnChl", + "PDPP-3T", + "pp-TPE-4DPA", + "Triazine-Ph-OMeTPA", + "TIPS-pentacene", + "V1000", + "NiO-np | ME1", + "PIDT-DFBT", + "PCT", + "NiPcS4", + "SiO2", + "CTAB | Spiro-MeOTAD", + "TPA-BP-TPA", + "PPyra-TXA", + "r-GO-BH", + "Crosslinked TCTA-BVP", + "Sym-HTPcH", + "VB-DAAF", + "Spiro-MeOTAD | V2O5", + "OMeTPA-TPA", + "TPA-OMeTPA", + "PCA-1", + "OMeTPA-FA", + "POZ10", + "CuInS2-QDs", + "PAF-86", + "DMFA-FA", + "TATCz3", + "Carbon; NiS", + "BDT2FMeDPA", + "c-TCTA", + "Spiro-MeOTAD-I", + "OMETPA-DPP", + "Z1", + "TFAP", + "NiO-np | PAS", + "Ethyl acetate; I2; LiI; TBP", + "N3',N3',N6',N6'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-3',6'-diamine", + "H4", + "Carbon-QDs | Spiro-MeOTAD", + "M4; PCBM-60", + "X23", + "ITIC", + "HMPDI", + "Au-np; P3HT", + "Graphene | Spiro-MeOTAD", + "TPA-BP-OXD", + "PEDOT:PSS | MoS2", + "c-OTPD", + "Porphyrin-H1", + "2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(3-hexylthien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile", + "CuHePc", + "CBP", + "S9", + "ACR-TPA", + "PBTTTV-h", + "PDVT-10", + "SGT-422", + "ZnPc-p-ZnPc", + "CI-GO | PTAA", + "NiO-c | Cysteine", + "DMFA-TPA", + "Alkoxy-PTEG", + "TATF8HBP", + "Ph-OMeTPA", + "Y1", + "FTA1", + "VOx | Cu phtalocyanine", + "TBASBP", + "V1061", + "Spiro-029", + "Cu12Sb4S13", + "PTB-DCB21", + "n-CuBuPc", + "DAHI | Spiro-MeOTAD", + "HTM-1", + "CuAlO2; CuO", + "PEDOT:PSS | Au@poly(4-styrenesulfonate)", + "Au@CuZnSnSe-np", + "M110", + "TFDIB | Spiro-MeOTAD", + "NaYF4:Yb:Er-np | Spiro-MeOTAD", + "Bp-OMe", + "PEDOT:PSS | 5,6,11,12-Tetraphenylnaphthacene", + "BP-DC", + "CuS", + "P3", + "C8-BTBT", + "Ome-TPA-CuPc", + "NiO-c | SY3", + "asy-PBTBDT", + "HS-Ph-SCH3 | Spiro-MeOTAD", + "Poly-N-vinylcarbazole | SP-11", + "PB2T-SO", + "SFX-TPAM", + "BTT(DPP)3-EH", + "V862", + "T40P", + "Z1011", + "1,3,6,8-tetrakis-(N,N-di-p-methoxyphenylamine)pyrene", + "MPA-BTI", + "DTP-C6Th", + "CS01", + "M1", + "Poly(2-ethyl-2-oxazoline); PEDOT:PSS", + "TPA4C", + "M103", + "TbT-1", + "MFGO", + "c-OTPD; TPACA", + "s-PANI:PSS", + "WT3", + "A102", + "Spiro-MeOTAD | ODA-FeS2-np", + "EHCz-MeFl", + "LD22", + "ZnPc", + "BTT-4", + "M115", + "Triazine-InT", + "Carbon-nt; Graphene oxide", + "MC6Cz-9-NPC", + "XDB", + "WOx", + "YN2", + "Bifluo", + "PEDOT:PSS | TS-CuPc", + "FH-3", + "Graphene oxide | Carbon-np", + "IDT2", + "PMAA; Spiro-MeOTAD | Spiro-MeOTAD", + "X50", + "NiO-np | Choline chloride", + "DEPT-SC", + "Spiro-MeOTAD | MoO3 | CuPc", + "ZnPc(tBu)4", + "BTPA-3", + "H16", + "TTPA-DBQT", + "PEDOT:PSS | PbI2", + "NiO-np | Al2O3-mp", + "L-f", + "Me-BPZTPA", + "Oleic-acid | P3HT", + "SP-01", + "2,2'-[(4,5-Bis(2-ethylhexyl)-dithieno[2,3-d:2',3'-d']thieno[3,2-b:4,5-b']dipyrrole-2,7-diyl)-bis(4,3'-dihexyl-2,2'-bithien-5,5'-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile", + "NiCo2O4", + "Py-C", + "T101", + "BEDN", + "SO7", + "NP-SC6-TiOPc", + "PTT | Spiro-MeOTAD", + "CdZnSe@ZnSe-QDs", + "Py-COF | PTAA", + "Li-TFSI; TBP", + "XSln1453", + "2,8-bis-[2,2-bis(4-methoxyphenyl)ethenyl]-5,11-diethyl-5,11-dihidroindolo[3,2-b]carbazole", + "Polymer4", + "PolyTPD | PFN", + "SM13", + "2,5\u2010bis(4,4\u2032\u2010bis(methoxyphenyl)aminophen\u20104\u2032\u2032\u2010yl)\u20103,4\u2010ethylenedioxythiophene", + "Z3", + "2-((2-(4-(2-ethylhexyl)-4H-dithieno[3,2-b:2\u2032,3\u2032-d]pyrrol-2-yl) thiazol-5-yl)methylene) malononitrile", + "H7", + "Theophylline | Spiro-MeOTAD", + "BPAPF", + "Acetonitrile; B2; LiBr", + "OMETPA-BDT", + "CF-BTz-ThR", + "SDTFCz2", + "Si-OMeTPA", + "EGO-PPV | PFN-P2", + "PANI-PAMSA", + "SP-12", + "Ethyl acetate; I2; LiI; TBP; Urea", + "TPTPA | MoO3", + "MC8-TPA", + "CZTS-np", + "1,4-di(1H-imidazol-2-yl)benzene-C6", + "PbS-QDs | Spiro-MeOTAD", + "Spiro p-xylene", + "PEDOT:PSS | 4-bromobenzenediazonium tetrafluoroborate", + "3,6-Cz-TPA", + "TPTPA | TPTPA; MoO3", + "CuInS2 | ZnS-QDs", + "V1050", + "tri-TPA", + "H6", + "CzP", + "CuPc", + "F23", + "CsBiBr3-QDs", + "NiO-np | Spiro-MeOTAD", + "Triazine-Flu", + "PMMA; rGO", + "TB4-ZnPc", + "2,7-Bis(4,4\u2032-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluorene", + "YT2", + "PhNa-1T", + "Ag:CuO-nanofibers | PEDOT:PSS", + "Chl\u20102", + "cyclopenta[2,1-b; 3,4-b\u2032]dithiophene", + "COPV6", + "PTAA | TFPPy-ETTA", + "DBFMT", + "Pt-np", + "BDT0FMeDPA", + "PtMePy", + "H-Bi", + "3,6-di(2H-imidazol-2-ylidene)cyclohexa 1,4-diene-C6", + "Z2", + "PDPP3T", + "NiO-c | Sn2O3-qd", + "MC8-9-NPC", + "PTAA-1F", + "HTM5", + "NiO-np | TPI-2MEO", + "Spiro-MeOTAD | CANP | Spiro-MeOTAD", + "br-4C", + "Carbozole @ S12", + "IDF-DiDPA | MoO3", + "TPE-S", + "CsPbBr3-np | Spiro-MeOTAD", + "Rubrene | PEDOT:PSS", + "HA2", + "V2Ox | PEDOT:PSS", + "TP-FTzF-TP", + "SFT-TPA", + "3,6-Ben", + "NH-2,6", + "FU7", + "MoS2-QDs | Spiro-MeOTAD", + "PCDTBT", + "NiO-c | MoOx", + "Polymer2", + "NiO-c | n-Butylamine", + "MoO3 | PTAA", + "TOPO", + "HBZ-71", + "DFBT(DTS-FBTTh2)2", + "Cobalt\u2013porphyrin", + "TPA-ANR-TPA", + "Spiro-OEtTAD", + "TTE-2", + "NiO-c | NiO-nw", + "MEH-PPV-20", + "PEH-3", + "CsSnBr3-QDs", + "3,6-PCzTPA", + "NiO-c | Mercaptoethylamine chlorate", + "HPB-OMeDPA", + "PTh; Graphene", + "SCZF-5", + "Titanylphthalocyanine", + "NiMgLiO", + "BTTP", + "Spiro-TAD", + "3-Butylthiophene | Spiro-MeOTAD", + "Graphene oxide; NiO-c", + "BDT-PTZ", + "PMA", + "Cu3SbS4-np", + "Ni-acetate", + "TcTa", + "Ph-TPA-2A", + "P1", + "D205 | Spiro-MeOTAD", + "PDPPT-TT", + "ATT-ODec", + "Spiro-CPDT", + "P3HT; PFN", + "CuPcNO2-OMFPh", + "BChl-1", + "Spiro-OPrTAD", + "Al2O3-c", + "Carbon", + "PDTSTTz-4", + "Spiro-MeOTAD | MWCNTs; Spiro-MeOTAD", + "2,7-triphenylamine-carbazole", + "NiO-c | Ni", + "V859", + "DPBTD-B[BMPDP]2", + "CuSCN | rGO", + "2,2\u2032-[(4,5-Bis(1-octylnonyl)-dithieno[2,3-d:2\u20323\u2032-d]thieno[3,2-b:4,5-b\u2032]dipyrrole-2,7-diyl)bis(thien-5,5\u2032-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile", + "F4-TCNQ", + "PyThTPA", + "PSS-g-PANI:PFI", + "Spiro-TBB | Spiro-TBB", + "PDMS", + "NiO-np | TPI-6MEO", + "Lignosulfonate; PEDOT:PSS; PDA", + "TAPbI3 | Spiro-MeOTAD", + "Spiro-MeOTAD | WO3", + "DPPZnP-TSEH; PCBM-60 | BCP", + "BI25", + "PANI", + "T80P", + "CDTh 1", + "Au-np; PEDOT:PSS", + "4-(4-Phenyl-4-alfa-naphthylbutadienyl)-N,N-di(4-tolyl)-phenylamine", + "FBA3", + "Spiro-MeOTAD | WOx", + "LCS01", + "MeO-FDPA", + "TiO2-np | NiO-np", + "BTT-TPA", + "Cu0.67Cr0.33O2", + "P(VDF-TrFE) | Spiro-MeOTAD", + "NPB", + "TQ2", + "alkylammonium bromide | Spiro-MeOTAD", + "TPE-2,7-Carbazole W1", + "H64", + "BTTI-C6", + "Z30", + "CZTPA-2", + "PCBM-60 | bis-C60", + "TPASB", + "NiO-np | PTAA", + "KTM3", + "S197", + "Au-np; Graphene oxide", + "JY6", + "NiO-c | CuGaO2-c", + "TCPBr | Spiro-MeOTAD", + "PET-OMeDPA", + "AIGS-QDs", + "Polyrotaxane", + "PSQ2", + "KM05", + "CPE-K", + "NiO-np | ME3", + "Unknown", + "TPL", + "pTPA-DBTP", + "OAI | DM", + "NPB; PTAA", + "PEDOT:PSS | Al2O3-mp", + "PO-Spiro-OMeTAD", + "Carbon-nt | Spiro-MeOTAD", + "CON-16 | PEDOT:PSS", + "LHTM-1", + "CuGaO2", + "COPV3", + "PFO", + "CIGS", + "NiMgO-c", + "P3TAA", + "Carbon-nt", + "PffBT4T-2OD | WOx", + "C12H10B2O4 | Spiro-MeOTAD", + "NTPA", + "PBT", + "Li4Ti5O12 | Spiro-MeOTAD", + "2,2\u2032-[(4,5-Bis(1-octylnonyl)-dithieno[2,3-d:2\u20323\u2032-d]thieno[3,2-b:4,5-b\u2032]dipyrrole-2,7-diyl)bis(2,3-dihydrothieno[3,4-b][1,4]dioxin-5,5\u2032-diyl)bis(methane-1-yl-1-ylidine)]dimalononitrile", + "CuP", + "YN3", + "ZnChl-4", + "Carbon-np; PEDOT:PSS", + "2PACz", + "Spiro-MeOTAD | PbS", + "BTT-1", + "BTF4", + "PTAA; Spiro-MeOTAD", + "Y2", + "DNA", + "NiO-c | SDBS", + "PTZ2", + "NP2", + "IEICO; PBDTTT-E-T | MoO3", + "OIPC-I", + "2-F-br-4C", + "T1", + "B3", + "B63", + "COPV7", + "PCDTBT1", + "PBDTT-SeDPP; PCBM-70", + "Graphene oxide", + "DMZ", + "PMMA", + "Yih-2", + "ZnNc", + "PEDOT:PSS | PFN-P1", + "TTE-1", + "PbS", + "DH-MeO-FDPA", + "TPP-SMeTAD", + "DTS", + "SGT-409", + "S,N-heteropentacene", + "Poly-N-vinylcarbazole | SP-12", + "Spiro-MeOTAD | SWCNTs", + "1F-SAM | PEDOT:PSS", + "CPEPh-Na", + "KR216", + "TaTm | MoO3", + "SFXDAnCBZ", + "Carbon-nt | PMMA", + "PTAA | Spiro-MeOTAD", + "CuCrO2", + "NiO-c | N749", + "NiO-c | PhNa-1T", + "TQ1", + "PbS-QDs", + "DM", + "DIPO-Ph4", + "DTh101", + "PPyra-XA", + "IDF-TeDPA | MoO3", + "NiPc | V2O5", + "HTM1", + "NiO-c | NiO-mp", + "CuSeCN", + "PTQ10 | PTAA", + "Th101", + "PolyTPD", + "PBDTT-SeDPP", + "EDOT-MPH", + "2,7-Cbz-EDOT", + "DR3TBDTT", + "V1221", + "BTT-3", + "P3HT; SWCNTs | Spiro-MeOTAD", + "Ni | NiMgO | PVP", + "2F-SAM | PEDOT:PSS", + "BDT:TT", + "AQ | Spiro-MeOTAD", + "Poly(1,4-phenylenevinylene)", + "PCPDTBT", + "PEDOT:PSS | Al2O3-np", + "2,7-Pyr", + "JK-216D", + "BTSe-1", + "S:DIB", + "KR321", + "Spiro-TTB", + "PEDOT:P(SS-co-TFPMA)", + "X62", + "(BMPA-EDOT)3-TPA", + "TPA-BPFN-TPA", + "CoTh-TTPA", + "THY-4", + "Fu-OMeTPA", + "PEDOT:PSS-NH2-OH", + "VOx", + "TPADPP-1", + "M6", + "WO3-nw@PEDOT | PEDOT:PSS", + "Al2O3-c | PEDOT:PSS", + "HfO2 | Acetonitrile; I2; LiI; TBP", + "T60P", + "Graphene oxide | PFNBr", + "Spiro-MeOTAD | rGO", + "Al2O3-mp | MeO-DATPA", + "NiO-c | BBA", + "YT1", + "BAI | DM", + "3F-SAM | PEDOT:PSS", + "P3HT | Al2O3-mp", + "SY1", + "Triazine-Th-OMeTPA", + "Co3O4", + "SGT-411", + "NiO-c | FDA", + "BDT-POZ", + "J61-ITIC", + "SWCNTs | Graphene oxide", + "Spiro-MeOTAD | MoO3", + "CuInSe2-QDss", + "P3OT", + "T(EDOT-TPA)2", + "H5", + "apv-T", + "Graphene | PEDOT:PSS", + "FB-OMeTPA", + "TT80", + "BDT-4MeOTPA", + "CGS", + "2,4-spiro", + "TSHBC", + "TCP-OC8", + "YC04", + "SGT-404", + "P1Z1", + "Nafion; PEDOT:PSS", + "T5H-OMeDPA", + "(n-BuO)4ZnPc", + "SBFCz2", + "Polymer1", + "M3; PCBM-60", + "CzPF", + "PEDOT:PSS | SrGO", + "n-octylammonium iodide | Spiro-mF", + "CuSCN-nw", + "Py | Spiro-MeOTAD", + "PTAA | MoS2", + "B186", + "P3HT; SWCNTs | PEDOT:PSS", + "Al2O3 | Spiro-MeOTAD", + "ZnO-nw | PEDOT:PSS", + "NiO-c | Mg(AcO)2", + "HTM", + "Au-nw | Spiro-MeOTAD", + "NiO | PS", + "NiO-c | EPA", + "MeO-TPD", + "PTB7-Th", + "CuI | PbPc", + "Cu0.2Cr0.8O2", + "1\u2010adamantylamine | Spiro-MeOTAD", + "NiO-c | DEA", + "Imidazolium iodide | P3HT", + "Graphene; TSHBC @ 5:1", + "TFM", + "YC01", + "PEDOT:PSS | NPB", + "BTPA-6", + "S,N-Heteroacene 2", + "Ag-np; PEDOT:PSS", + "COTT-1 | COTT-2", + "S7", + "WO3-nw", + "PdMe2Pc", + "PDCBT | WOx", + "PPDT2FBT", + "SWCNTs | Spiro-MeOTAD", + "CAS", + "Graphene; P3HT", + "Pentacene", + "Q219", + "Polythiophene", + "S,N-Heteroacene 1", + "CT3", + "MnS", + "PTAA | LiF", + "NiCoO", + "CuSCN | Spiro-MeOTAD", + "PDI", + "Tetrakis(4-methoxyphenyl)spiro[cyclopenta[1,2-b:5,4-b']dipyridine-5,9'-fluorene]-2',7'-diamine", + "V1207", + "Dispiro-OMeTAD", + "Au-np | Spiro-MeOTAD", + "PEDOT", + "SnS", + "NiO-np | Choline chloride; Glycerol", + "BEDCE | Spiro-MeOTAD", + "PZn-TPA-O", + "PTAA | PFN-Br", + "PP-Spiro", + "CuO2", + "MoO3 | TaTm", + "Phenethylamine | Spiro-MeOTAD", + "CdSe-QDs | Spiro-MeOTAD", + "PEDOT:PSS | MoO3", + "p-PFP-O | PTAA", + "PBTI-C", + "PTAA; TPFB", + "F6-TCNNQ; TaTm", + "NiO-c | SY1", + "TZ2", + "mDPA-DBTP", + "Montmorillonite | Spiro-MeOTAD", + "PCA-2", + "InP-np | Spiro-MeOTAD", + "TPA", + "H2", + "IEICO | MoO3", + "CsCuBr3-QDs", + "PolyTDP", + "NiPc-Cou", + "IDT1", + "TBC-1", + "PCPDTBT | PEDOT:PSS", + "Q197", + "P3HT | PEDOT:PSS", + "F16CuPc | Spiro-MeOTAD", + "TPB-4-MOTPA", + "TATSFHBP", + "ZnPc-p-ZnPc 1", + "HL-2", + "Tetracene | Spiro-MeOTAD", + "XOP", + "2,7-PCzTPA", + "SY4", + "TPDI", + "C60", + "BTTI-C12", + "Q205", + "YK1", + "PTB7:Th", + "ZnChl-1", + "NiO-c | PTAA", + "iDM1", + "THY-2", + "mp-SFX-3PA", + "CZ-STA; CZ-TA", + "AS37", + "TaTm", + "CuInS2 | Al2O3-np", + "P3HT | WOx", + "Azu-Oct", + "Imidazonium iodide | Spiro-MeOTAD", + "PEDOT; Spiro-MeOTAD", + "Al2O3-np | TPA-ZnPc", + "P3HT; SWCNTs-PhOMe", + "ADAHI", + "JW8", + "COPV5", + "NiO-c | PEAI", + "PTAA-2F", + "Cu2CoSn4-np", + "PBDT(2F)T", + "PEDOT:PSS | Black phosphorous QDs", + "PEDOT:PSS | VOx", + "BTT-2", + "Pentafluorobenzenethiol | Spiro-MeOTAD", + "TFB | Al2O3-np", + "CMO", + "NiCo2O4-np | Spiro-MeOTAD", + "TBC-2", + "1,3,6-tris-(N,N-di-p-methoxyphenylamine)pyrene", + "CuSCN | Graphene", + "C12-silane-SAM | Spiro-MeOTAD", + "Theophylline | PTAA", + "ZnPy", + "MPA-BTTI", + "Z1013", + "Ni | Au", + "P8TTT", + "CuSCN", + "P3OFHT", + "NH-2,7", + "NiO-c | CuGaO2", + "NiO-c | PMMA", + "PANI:PSS", + "P3HT | MoO3", + "CuAlO2 | PEDOT:PSS", + "CuSCN | Ta:Wox-np", + "No HTM", + "TPD-4EtCz", + "L-H", + "PT-DC", + "PDQT", + "DNA-CTMA", + "2EGO-PPV", + "Co0.695Cu0.305O", + "PDMS | CuSCN", + "PB2T-O", + "NiO-c", + "GO-nanoribbons", + "CMP", + "Azu-Me", + "Ag-nw; PEDOT:PSS", + "Ppy", + "YC06", + "TPD-4MeTPA", + "LGC-D013", + "NiO-np | KCl", + "M108", + "SiTP-OMeTPA", + "TBC-3", + "Cz-Pyr", + "PEDOT:PSS | PEDOT:PSS", + "10-butyl-3,7-diphenylphenoxazine", + "HTM-P1", + "apv-EC", + "Grafted rGO; Polyacrylonitrile", + "4C", + "CuI; CuSCN", + "P3HT; SWCNTs", + "JK-217D", + "NiO", + "ATT-OBu", + "DFH", + "NiO-c | SY2", + "HfO2 | CuI", + "DFTAB", + "0F", + "TAT-t BuSty", + "NiO-c | PTZ-1", + "DOR3T-TBDT", + "SWCNTs | PEDOT:PSS", + "PABA | Spiro-MeOTAD", + "BTBDT", + "PTAA | PMMA", + "PTZ1", + "M3", + "Cu2ZnSn4-np", + "KR374", + "P4", + "SGT-421", + "Al2O3-mp | Spiro-MeOTAD", + "V841", + "CuCrO2-np", + "BTX-OMeTAD", + "N1,N1',N1'',N1'''-(ethene-1,1,2,2-tetrayltetrakis(benzene-4,1-diyl))tetrakis(N1-(4-(dimethylamino)phenyl)-N4,N4-dimethylbenzene-1,4-diamine)", + "H-Ca", + "PTAA | Car-ETTA", + "TPA-BPV-TPA", + "MWCNTs; Spiro-MeOTAD", + "M107", + "PEDOT:PSS | Rubrene", + "H111", + "OTPA-ZnPc", + "PTPD | PFN", + "Azu-Bu", + "PEDOT:PSS | VB-DAAF", + "TRUX-E-T", + "DR3T", + "PEDOT:GSL", + "Fused-F (Tris[[4-[3,3'-dihexylsilylene-2,2'-bithiophene]-7-[5\u2032\u2032-n-hexyl-(2,2\u2032; 5\u2032,2\u2032\u2032-terthiophen\ne)-5-yl]-benzo[c]-[1,2,5]thiadiazole]-2,6,10-yl]-4,4,8,8,12,12-hexamethyl-4H,8H,12\nHbenzo[1,9]quinolizino [3,4,5,6,7,-defg]acridine )", + "PVDF-HFP | Spiro-MeOTAD", + "PEAI | PTAA", + "TS-CuPc", + "CsOAc | Spiro-MeOTAD", + "Ph-TPA-8A", + "ATT-OMe", + "PEDOT:PSS | PCPDTBT", + "PFN; PTPD", + "HPDI", + "PNP-BC", + "Oleylamine | Spiro-MeOTAD", + "CuOx", + "Z26", + "TPB(2-TPTZ)", + "P3CT-CH3NH2", + "CuMe2Pc", + "G2", + "KM07", + "JW6", + "MoO3 | TPA-2,7-FLTPA-TPA", + "HS-Ph-NO2 | Spiro-MeOTAD", + "DM1P", + "N2,N2,N12,N12-Tetrakis(4-methoxyphenyl)-9-methyl-9H-naphtho[2,1-c]carbazole-2,12-diamine", + "r-GO-NH", + "Ph-inv-OMeTPA", + "KR145", + "ZnP", + "3,6-triphenylamine-carbazole", + "Co-Porphyrin", + "D102", + "H-PheDOT", + "P-OR", + "Z33", + "Polypseudorotaxane", + "TDAB", + "Z29", + "TPA\u2010ANT\u2010TPA", + "SYN1", + "G1", + "HfO2 | Spiro-MeOTAD", + "V2O5 | PEDOT:PSS", + "CrO3", + "BV-FNPD", + "V1036:C4", + "Si-QDs | Spiro-MeOTAD", + "pDPP5T-2 | WOx", + "(2Z,2'Z)-2,2'-(((2,4-dimethylphenyl) azanediyl) bis([1,1'-biphenyl]-4',4-diyl)) bis(3-(4-(diphenylamino) phenyl) acrylonitrile", + "EH44", + "H2Pc-1", + "DPIE", + "DAI | DM", + "AZ1", + "D103", + "N-CuMe2Pc; P3HT", + "Cu2NiSn4-np", + "TT-3,6-TPA", + "Asy-PBTBDT", + "PTAA | PPNBr", + "PTA", + "CuPrPc", + "HA1", + "TPAC2M", + "M:OO", + "Cu:Ni acetate", + "YN1", + "ACE-QA-ACE", + "Spiro-OiPrTAD", + "PDCBT | Ta-Wox", + "tetra{4-[N,N-(4,4'-dimethoxydiphenylamino)]phenyl}ethene", + "Q222", + "DPP-Ome", + "P3CT-Na", + "PFN; TT", + "Spiro-MeOTAD | MoOx", + "CdSe-Qd | CsPbI3-QD | Spiro-MeOTAD", + "CoPcNO2-OPh", + "CW4", + "Selenium", + "3,6 \u00b4-BCz-OMeTAD", + "SAF\u2010OMe", + "2TPA-2-DP", + "LiF | PEDOT:PSS", + "NiO-c | PTZ-2", + "DM1", + "DPIO", + "PST1", + "PBDTP-DTDPP", + "BTPA-4", + "CsSnI2.95F0.05", + "P3TAA-co-P3HT", + "IDTC6-TPA", + "PBDTTT-C", + "2TPA-1-DP", + "NiO-c | Al2O3-mp; Au@SnO2-nw", + "4,4'-(5,10,11-Trihexyl-10,11-dihydro-5H-thieno[2\u2032,3':4,5]pyrrolo [3,2-g]thieno[3,2-b][1,2,3]triazolo[4,5-e]indole-2,8-diyl)bis(N,N-bis(4- methoxyphenyl)aniline)", + "FT55", + "BAI | Spiro-MeOTAD", + "Poly TPD-NPD", + "pentaerythritol tetrakis(3-mercaptopropionate) | Spiro-MeOTAD", + "C6Br | Spiro-MeOTAD", + "Spiro-MeOTAD | TS-CuPc", + "TT-2,5-TPA", + "DBC-OMeDPA", + "DPA-QA-DPA", + "PTB7-TH", + "Co(II)P", + "P1C1", + "MTDATA", + "CW3", + "V1225", + "FBA1", + "Spiro-MeOTAD", + "DTS(IIThThHEX)2", + "KR378", + "P3HT | WO3", + "EtheneTTPA", + "M105", + "CT4", + "VB-MeO-FDPA", + "THY-3", + "NiPc", + "MoS2 | Spiro-MeOTAD", + "pBBTa\u2010BDT1", + "Py-OMe", + "Cu:NiO-np", + "HTM-M1", + "CuSCN-2D", + "TT0", + "P3CT-Na | PASP", + "Spiro-MeOTAD | Cu2O", + "Graphene | AuCl3 | PEDOT:PSS", + "PTAA | CuSCN", + "rGO | PTAA", + "J2", + "DTPC8-ThDTPA", + "CF-Sp-BTh", + "TaTm | F6-TCNNQ; TaTm", + "PEDOT:PSS | Au@SiO2-nw", + "NiCo2O4-np", + "FH-0", + "FEH", + "IrTiOx-c", + "m-MTDATA", + "TPA-TPM", + "Spiro-OBuTAD", + "MoOx | Spiro-MeOTAD", + "Co(II)P; Co(III)P", + "H2Pc", + "Co(III)P", + "NiO-c | UiO-66", + "PQT-12", + "N,N-bis-[7-(4,4\u2032-dimethoxydiphenylamine)-9- (bis(methylsulfanyl)methylene)fluoren-2-yl]-4-methoxyaniline", + "CJ-02", + "M111", + "PVK", + "C202", + "MoO3 | TPA-3,6-FLTPA-TPA", + "P(BDTT-tPPD)", + "PTB7 | WOx", + "DIB; SeS2", + "Polyacrylonitrile", + "rGO | CuSCN", + "TT1", + "PTAA | NiO-c", + "MEH; PPV", + "PTAA | CuGaO2-mp", + "SnS-np | NiO-np", + "PEDOT:PSS | PFN", + "CuPc | PTAA", + "PBTTT-14", + "V1160", + "B2", + "PTB8", + "CuI", + "5,5',5''-(5,5',5''-(nitrilotris(benzene-4,1-diyl))tris(furan-5,2-diyl))tris(2-octylisoindoline-1,3-dione", + "1,6-di{3-[2-(4- methylphenyl)vinyl]carbazol-9-yl}hexane", + "RCP", + "PCBM-60 | BCP", + "Azu-EH", + "CuPs-TIPS", + "InP-np", + "Hexamethyl-substituted subphthalocyanine", + "Poly[4,8-bis(2-(4-(2-ethylhexyloxy)3-fluorophenyl)-5-thienyl)benzo[1,2-b:4,5-b'] dithiophenealt-1,3-bis(4-octylthien-2-yl)-5-(2-ethylhexyl)thieno[3,4-c]pyrrole-4,6-dione", + "HfO2 | Acetonitrile; I2; LiI; PMII; Propylene glycol; TBP", + "BPZTPA", + "PDO2", + "CrOx", + "Z35", + "F6-TCNNQ; TaTm | TaTm", + "ZnPor", + "TPA-NADT-TPA", + "Black phosphorous nanosheets | Spiro-MeOTAD", + "SP-02", + "PCBM-60 | Carbon", + "Spiro-N", + "PEDOT:PSS | TPD", + "3-Ethylthiophene | Spiro-MeOTAD", + "Spiro-E", + "CuAlO2", + "PdMePy", + "NDT", + "HS-Ph-OCH3 | Spiro-MeOTAD", + "TPE-2,7-Carbazole W2", + "CsSnBrI2-QDs", + "PEDOT:PSS | VB-MeO-FDPA", + "TTA2", + "TPA2C", + "BDT-2D", + "Vox", + "YC-2", + "Spiro-s", + "PII2T8TSi", + "PEDOT:PSS | CuSCN", + "SrCl2 | Spiro-MeOTAD", + "V852", + "2H-MoS2 | Spiro-MeOTAD", + "V866", + "ZnPc-DPP-ZnPc", + "PEA2PBI4", + "PTPAANT", + "FA-CN", + "Diazo-OMeTPA", + "EVA; SWCNTs | Spiro-MeOTAD", + "H3", + "Red Phosphorous-QDs", + "3EGO-PPV", + "Pyrmidine | Spiro-MeOTAD", + "WY-2", + "NiO-c | MOF-808", + "FDT", + "POSS-NH2 | Spiro-MeOTAD", + "MEH-PPV; PFN", + "dly-1", + "Spiro-MeOTAD | VOx", + "COPV2", + "ODA-FeS2-np", + "PEDOT:PSS | Pyrene", + "F8T2e", + "P3HT; PCBM-60", + "SM", + "N2',N2',N7',N7'-tetrakis(4-methoxyphenyl)spiro[fluorene-9,9'-xanthene]-2',7'-diamine", + "PPV", + "1-Donecyl Mercaptan | Spiro-MeOTAD", + "X25", + "PEDOT:PSS | Ca", + "F22", + "DPPS | Spiro-MeOTAD", + "TPA-MeOPh", + "BT41", + "NiO-nanowalls | Diethanolamine", + "S101", + "P3TI", + "3-Methylthiophene | Spiro-MeOTAD", + "H-Di", + "X26", + "NiO-np | Br-BPA-SAM", + "COPV1", + "MeO-BPZTPA", + "PEDOT:PSS | PTMA-BP", + "C5PcH2 | MoOx", + "BL07", + "Porphyrin", + "JW7", + "PEDOT:PSS | Na3C6H5O7", + "tetra-substituted azulene", + "X18", + "P-R", + "BDT-C1", + "Phosphor-QDs", + "PCBZANT", + "TPD-4MeOTPA", + "MoO3 | TPBi | TaTm", + "Bifluo-OMeTAD | MoO3", + "ACE\u2010ANT\u2010ACE", + "Cu2ZnSnS4", + "CIGGSe-np", + "DMF; I2; PVA; TBAI", + "PAH 1", + "NiO-c | Al2O3-mp; Au@SnO2-np", + "DORDTS\u2013TFBT", + "PEDOT:PSS | Graphene oxide; PEG", + "PEDOT:PSS | Graphene oxide", + "TPA-TVT-TPA", + "I2-electrolyte", + "PDBD-T", + "WO3 | Spiro-MeOTAD", + "TPA-AZO", + "YT4", + "Cs-oleate | Spiro-MeOTAD", + "TPDCN", + "YD2-o-C8 | Spiro-MeOTAD", + "Porphyrin-H2", + "PEDOT:PSS | PolyTPD", + "Th-OMeTPA", + "PDCBT | Ta:WOx", + "MoO3 | PEDOT:PSS", + "PVAc", + "Ph-TPM", + "CuPc | Spiro-MeOTAD", + "CuEtPc", + "TTA1", + "3,6-Pyr", + "CuGaO2-np | CuSCN", + "TPFPB | Spiro-MeOTAD", + "PhCz-4MeOTPA", + "EtheneDTPA", + "CDTh-EtHex 2", + "PZn-2FTPA", + "X22", + "NiO-c | PS", + "2F", + "PS | Spiro-MeOTAD", + "C101", + "NiO-nanowalls" + ] + } + } + ] + }, + "name": "stack_sequence", + "description": "The stack sequence describing the hole transport layer. Use the following formatting guidelines\n- With the HTL, we refer to any layer between the substrate and the perovskite in a pin-device, and any layer between the perovskite and the back contact in a nip-device.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- If no hole transport layer, state that as \u2018non\u2019\n- Use common abbreviations when appropriate but spell it out if risk for confusion.\n- If a material is doped, or have an additive, state the pure material here and specify the doping in the columns specifically targeting the doping of those layers.\n- There is no sharp well-defined boundary between when a material is best considered as doped or as a mixture of two materials. When in doubt if your material is best described as doped or as a mixture, use the notation that best capture the metaphysical essence of the situation.\n- There are a lot of stack sequences described in the literature. Try to find your one in the list. If it is not there (i.e. you may have done something new) define a new stack sequence according to the instructions.\nExample:\nSpiro-MeOTAD\nPEDOT:PSS\nnone\nNiO-c\nPTAA", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "7.8", + "nan | 250.0", + "2.5 | 30.0", + "15.0 | 10.0", + "89.0", + "90.0", + "2.0 | 50.0", + "250.0 | 70.0", + "100.0 | 10.0", + "40.0 | nan", + "325.0", + "50.0", + "220.0", + "50.0 | 200.0", + "137.0", + "180.0", + "45.0", + "20.0 | 40.0", + "nan | 130.0", + "167.0", + "nan | 33.0", + "168.0", + "nan | 160.0", + "803.0", + "0.0", + "10.0 | 6.0 | 1.0", + "259.0", + "10.0 | 160.0", + "300.0 | 15.0", + "15.0 | 150.0", + "65.0 | 1400.0", + "35.6", + "60.0 | 10.0", + "14.0 | 3.0", + "300.0 | 5.0", + "25.0 | 4.0", + "95.0", + "nan | 44.0", + "2.4", + "5.0 | 2.0", + "87.0", + "10.0 | 90.0", + "70.0", + "41.0", + "127.0", + "193.0", + "150.0 | 40.0", + "11.0", + "25.0 | 260.0", + "5.7", + "500.0", + "5.0 | nan", + "2000.0 | nan", + "73.0", + "184.0", + "4.0 | nan", + "76.0", + "True", + "2000.0", + "1.0", + "54.0", + "234.0", + "10.0 | 5.0", + "0.7 | nan", + "260.0", + "175.0", + "267.0", + "20.5", + "2.0 | 400.0", + "240.0", + "50.0 | 50.0", + "2.5 | 20.0", + "9.0 | nan", + "35.0 | 8.0", + "600.0 | nan", + "1.5 | 180.0", + "330.0", + "810.0", + "21.0", + "80.0 | 280.0", + "26.0", + "101.0", + "809.0", + "85.0", + "250.0 | 40.0", + "321.0", + "30.0 | 40.0", + "80.0 | 120.0", + "nan | 150.0", + "9.0", + "12.0 | 3.0", + "5.0 | 40.0", + "176.0", + "136.0 | 5.0", + "8.0", + "10.0 | 7.0", + "nan | 8.0", + "nan | 3.0", + "278.0", + "13.0", + "56.0", + "nan | 80.0", + "35.0 | 10.0", + "nan | nan | nan", + "650.0", + "49.4", + "20.0", + "136.0", + "20.0 | 10.0", + "295.0", + "52.0", + "265.0", + "165.0", + "70.0 | nan", + "40.4", + "200.0 | nan", + "82.0", + "nan | 6.5", + "36.0", + "6.5", + "239.0", + "14.0", + "20.0 | 2.0", + "1.5 | nan", + "nan | 100.0", + "250.0", + "2.0 | 60.0", + "21.6 | nan", + "10.0 | 10.0", + "65.0", + "9.2 | 10.0", + "16.0 | 200.0", + "150.0", + "42.4 | nan", + "100.0 | 7.0", + "7.0 | 10.0", + "47.35", + "108.0", + "9.0 | 200.0", + "14.0 | 7.0", + "110.0 | 7.0", + "811.0", + "25.0 | 15.0", + "nan | 140.0", + "7.9", + "12.0 | 7.0", + "nan | 20.0", + "nan | 150.3", + "33.1", + "15.0 | nan", + "232.0", + "2.5 | 40.0", + "5.0 | 20.0", + "10.0 | 2.0", + "1.0 | 180.0", + "33.5", + "244.0", + "50000.0", + "40.0 | 10.0", + "47.0", + "nan | 7.0", + "35.0", + "111.0", + "750.0", + "57.0", + "135.0", + "2.0 | nan", + "805.0", + "1.0 | nan", + "30.0 | 10.0", + "258.0", + "33.0", + "nan | 2.0", + "51.0", + "2.5", + "282.0", + "uknnown", + "60.0 | nan", + "807.0", + "2.0 | 20.0", + "160.0 | nan", + "183.0", + "80.0 | 350.0", + "35.2 | nan", + "20.0 | 20.0", + "49.0", + "200.0 | 10.0", + "23.0", + "59.0", + "285.0", + "90.0 | 80.0", + "25.0", + "2.8 | nan", + "7.5", + "40.0 | 350.0", + "80.0 | 20.0", + "40.0", + "98.0", + "35.0 | nan", + "nan | 150.1", + "16.0 | 250.0", + "230.0", + "75.0", + "20.0 | 5.0", + "10.0 | nan", + "37.5", + "60.0 | 5.0", + "40.0 | 200.0", + "28.0", + "480.0", + "190.0", + "50.0 | nan", + "nan | 180.0", + "nan | 300.0", + "3.0 | nan", + "8.0 | 4.0", + "0.8 | 180.0", + "15000.0", + "10.0 | 325.0", + "380.0", + "700.0", + "155.0", + "211.0", + "14.0 | 14.0", + "22.0", + "10.0 | 40.0", + "145.0", + "131.0", + "63.0", + "60.0 | 3.0", + "34.0", + "0.8", + "1500.0", + "37.0", + "60.0 | 7.0", + "280.0", + "60.0", + "5.0", + "125.0", + "nan | 30.0", + "7.0", + "804.0", + "160.0 | 8.0", + "400.0", + "143.0", + "10.2", + "25000.0", + "nan | 15.0", + "71.0", + "115.0", + "2.0", + "30.0 | 14.0", + "20.0 | nan", + "250.0 | 50.0", + "130.0 | 10.0", + "315.0", + "4.0", + "50.0 | 150.0", + "253.0", + "15.0 | 40.0", + "34.4", + "242.0", + "40.9", + "352.0", + "nan | 200.0", + "12.0", + "600.0", + "300.0 | 8.0", + "100.0", + "105.0", + "8.0 | nan", + "485.0", + "120.0 | 350.0", + "252.0", + "48.0", + "96.0", + "10.0 | 2.0 | 5.0", + "200.0", + "70.0 | 10.0", + "150.0 | nan", + "113.0", + "80.0 | 8.0", + "24.0 | 3.0", + "1.2", + "350.0", + "290.0", + "8.0 | 130.0", + "3.0", + "178.0", + "10.0 | 30.0", + "50.0 | 100.0", + "10.0 | 120.0", + "200.0 | 350.0", + "nan | nan", + "48.3", + "0.0 | 700.0", + "806.0", + "340.0", + "35.0 | 210.0", + "94.0", + "181.0", + "160.0", + "38.0", + "nan | 15000.0", + "100.0 | 8.0", + "nan | 50.0", + "nan | 14.0", + "270.0", + "170.0", + "200.0 | 0.0", + "7.0 | 115.0", + "2.5 | 10.0", + "15.0 | 45.0", + "nan | 170.0", + "55.0", + "0.4 | 180.0", + "25.71", + "7.0 | 2.0 | 10.0", + "6.0", + "80.0 | nan", + "66.52", + "20.0 | 100.0", + "7.0 | nan", + "60.0 | 1.0", + "250.0 | 60.0", + "nan | 9.0", + "200.0 | 700.0", + "17.0", + "44.0", + "5.5 | 10.0", + "293.0", + "6.0 | 200.0", + "12.0 | 200.0", + "550.0", + "15.0", + "25.0 | 250.0", + "215.0", + "300.0", + "nan | 150.2", + "245.0", + "10.0 | 5.0 | 5.0", + "185.0", + "120.0", + "180.0 | 160.0", + "450.0", + "18.0", + "130.0", + "153.0", + "39.0", + "nan | 350.0", + "110.0", + "20.0 | 15.0", + "310.0", + "23.8", + "808.0", + "11000.0", + "58.0", + "345.0", + "5.3", + "3.0 | 10.0", + "31.6", + "1000.0", + "25.0 | nan", + "27.0", + "188.0", + "66.0", + "225.0", + "261.0", + "46.2", + "235.0", + "60000.0", + "nan | 4.0", + "802.0", + "1200.0", + "70.0 | 20.0", + "390.0", + "10.0", + "43.0", + "90.0 | 7.0", + "0.2 | 180.0", + "1.8 | 180.0", + "30.0 | nan", + "432.0", + "nan | 11.0", + "173.0", + "210.0", + "397.0", + "10.0 | 240.0", + "2.5 | nan", + "800.0", + "nan | 190.0", + "198.0", + "80.0 | 7.0", + "271.0", + "32.0", + "5.0 | 10.0", + "25.0 | 20.0", + "nan | 295.0", + "163.0", + "50.2", + "24.0", + "5.2", + "40.0 | 20.0", + "72.0", + "nan | 10.0", + "99.0", + "20.0 | 60.0", + "200.0 | 5.0", + "97.0", + "196.0", + "30.0", + "nan | 22.0", + "18.3 | 10.0", + "1.6", + "2.0 | 180.0", + "470.0", + "680.0", + "333.0", + "35.0 | 348.0", + "174.0", + "158.0", + "21.5", + "24.0 | 7.0", + "67.5", + "35.0 | 475.0", + "150.0 | 9.0", + "116.0", + "140.0", + "100.0 | nan", + "80.0", + "801.0", + "nan | 5.0", + "46.0", + "320.0", + "138.0", + "nan | 400.0", + "45.6", + "10.0 | 5.0 | 2.0", + "70.0 | 7.0" + ] + } + } + ] + }, + "name": "thickness_list", + "description": "A list of thicknesses of the individual layers in the stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous filed.\n- State thicknesses in nm\n- Every layer in the stack have a thickness. If it is unknown, state this as \u2018nan\u2019\n- If there are uncertainties, state the best estimate, e.g write 100 and not 90-110\nExample\n200\nnan |250\n100 | 5 | 8", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Li-TFSI; PEG; TBP", + "Co2f; Li-TFSI; TBP", + "FK209; Li-TFSI; Rutin-Ag-np; TBP", + "AMH", + "AgNO3", + "D102; Li-TFSI; TBP", + "Cu | Ag; Cu", + "2,6-ludidine; Li-TFSI", + "Graphene Oxide", + "TBA-PF6", + "Ag-TFSI; Li-TFSI; TNP", + "Poly(ethylene glycol) tridecyl ether", + "Tb", + "Li(CF3SO2)2N; TBP", + "Co1f; Li-TFSI; TBP", + "NDP9", + "PSS-Na", + "TBP; Triphenylamine", + "B", + "Pb", + "DMPS", + "Zn(TFSI)2", + "Diethylene glycol", + "TBP | Unknown", + "rGO-PhOHex", + "EMIC", + "Unknown | T4-TCNQ", + "Carbon-nano onions", + "Pyridine", + "Y", + "Undoped | Undoped", + "Ag-TFSI; Li-TFSI; TBP", + "Unknown | FK209; Li-TFSI; TBP", + "Ni", + "Ag", + "LiN(SO2CF3)2; t-BtPy", + "Cu-2Cl; Li-TFSI; TBP", + "Mg", + "Pd-PVP", + "AgI; Li-TFSI; TBP", + "Co-TFSI; TBP", + "FK209; Li-TFSI; TBP; POM@Cu-BTC", + "2-6-lutidin; Li-TFSI", + "Unknown | Zn", + "Cs", + "Silane", + "MoS2", + "Li-TFSI; TPB", + "NH3", + "CSA", + "Mo(tfd-COCF3)3", + "NiOx", + "Undoped | Li-TFSI; TBP", + "Unknown | Li-TSFI; TBP", + "Li-bis; Li-TFSI; TBP", + "TFMS | Li-TFSI; TBP", + "Urea", + "BF4; TBP; TEMPO", + "Chlorobenzol; Li-TFSI; TBP", + "EDTA", + "K102; Li-TFSI", + "PTAA", + "Ethanolamine", + "FK209; Li-TFSI; TBP; CuPc", + "PEO", + "Ti", + "Unknown | 2-Py; Li-TFSI", + "BuPyIm-TFSI", + "FK269; Li-TFSI; nan; TBP", + "Sr", + "FK211", + "TBP; Li-TFSI; Co(III) TFSI", + "KMnO4; Li-TFSI; TBP", + "f-SWCNTs", + "acetylacetone", + "PSSH", + "GeO2-np", + "Co(PyPyz)3[TFSI]3; Li-TFSI; TBP", + "JQ3; Li-TFSI; TBP", + "Li-TFSI; PMo11V; TBP", + "aYF4:Yb,Er@NaYF4; Li-TFSI; TBP", + "PVA", + "Li-TFSI; Polystyrene; TBP", + "LiN(CF3SO2)2N; TBP", + "Li@C60-TFSI; TBP", + "CuSCN", + "Li-TFSI; TBP | Undoped | Li-TFSI; TBP", + "Nd", + "NaLuF4:Yb,Er@NaLuF4; Li-TFSI; TBP", + "FK212", + "TiO2@MoO3-np", + "ethanolamine", + "LiNO3", + "FK209; FN-Br; TBP", + "WOx", + "CMP", + "F8BT", + "nan | DPITPFB", + "Co-TFSI; Li-TFSI; TBP", + "TMAH", + "PFI", + "MoO3-np", + "Graphene; Li-TFSI; TBP", + "Co-TFSI", + "acetylacetonate", + "Co-TPTB; Li-TFSI; TBP", + "FK209; Li-TFIS; TBP", + "Rb", + "TCNQ | Unknown", + "Li-TFSI; TBP; FK102(II)PF6", + "Li", + "Ag-TFSI; TBP", + "Ag; Li", + "Tetrafluoro-tetracyanoquinodimethane", + "Li-TFSI; TBP", + "PZ0.020", + "F6-TCNNQ", + "Er; Yb | Li-TFSI; TBP", + "FK102", + "FK209; H3BTC; Li-TFSI; TBP; nan", + "Eu", + "PFN-P2", + "Li-TFSI; TBP; TEMPO", + "D2; Li-TFSI; TBP", + "Graphdiyne", + "NaYF4:Yb,Er; Li-TFSI; TBP", + "CNT", + "Li-TFSI; Ni-nanobelts; TBP", + "Li-TFSI; TPBA", + "AgOTf-doped GO", + "Cu(bpcm)2; Li-TFSI; TBP", + "TPFB", + "PMPS", + "TS-CuPc", + "Cu | Unknown", + "Yb", + "Li-TFSI; TBP; FK102", + "F-graphene", + "SrCl2", + "FK209; Li-TFSI; TBP | N", + "CZTS-np", + "C3-SAM", + "D-TBP; Li-TFSI", + "WO3-np", + "Li-TFSI", + "Li-TFSI; PTAA; TBP", + "ox-Carbon-nano onions", + "Thiourea", + "4-Py", + "TBFB", + "HCl", + "Li-TFSI; SpiroTFSI2; TBP", + "BCF", + "PFPPY", + "Li-bisLi-TFSI; TBP", + "Li; Co", + "FK209; 3PO4; Li-TFSI; TBP", + "NE", + "CrO3", + "D1; Li-TFSI; TBP", + "Undoped; Unknown", + "Sc3N@C80", + "DIO", + "Co(II)(dpzpyr)2; Li-TFSI; TBP", + "NaCl", + "Glycerol", + "Benzoyl peroxide", + "Glucose; Graphene oxide", + "EDA", + "PDA", + "Butylamine", + "Co(III)(pztbpy)3; Li-TFSI; TBP", + "Unknown | TPFB", + "Li-TFSI; MoS2; TBP", + "LAD", + "I2; Li-TFSI; TBP", + "H-TFSI; TBP", + "Zn(TFSI)2; TBP", + "nan | Graphene oxide", + "Ag-np", + "Cu; Li", + "Cu(Oac)2", + "F4-TCNQ | Undoped", + "Fe", + "Cu", + "Zn", + "EHCz-2EtCz-ox", + "DOPA", + "Unknown | Ta", + "GeO2", + "WOx | Unknown", + "Undoped", + "FK209; Li-TFSI; rGO; TBP", + "BMPyTFSI", + "TPACA", + "D-sorbitol", + "FK209; Li-TFS; TBP", + "Li-TFSI; TBP; V2O5", + "FK209; Li-TFSI", + "F4-TCNQ", + "LiClO4", + "2-amylpyridine; Li-TFSI", + "Ca", + "Unknown | Undoped", + "Glucose", + "MoO3", + "PDMS", + "Li; Mg", + "Cu9S5-np", + "DOBD", + "Polydopamine", + "Carbon-nt-G; Li-TFSI; TBP", + "FK209; Li-TFSI; TBP | Er3+; Yb3+", + "Co-LTFSI; Li-LTFSI; TBP", + "Ce", + "Diphenyliodonium-hexafluorophosphat", + "PEG", + "Li-TFSI; Li(Gd, Y)F4-Yb; TBP", + "Li-TFSI; TBA", + "Li; Pb", + "NPB", + "Pd", + "IrCp*Cl(PyPyz)[TFSI]; Li-TFSI; TBP", + "Unknown | AgSbF6", + "F4-TCNQ | Unknown", + "Li-TFSI; TBP; FK209", + "Co3f; Li-TFSI; TBP", + "Unknown | Li", + "CuH; Li-TFSI; TBP", + "Unknown | FK269; Li-TFSI; TBP", + "Unknown", + "FK209", + "Undoped | Cu", + "ClO4-", + "FK210", + "Undoped | glacial acetic acid", + "CuI; Li-TFSI", + "EHCz-MeFl-ox", + "CI", + "FK102; Li-TFS", + "K", + "Zonyl FS-300", + "GSL", + "Cu | Cu", + "Cu-2Cl; Li-TFSI", + "FK209; LiNO3", + "Graphene", + "F2-TCNQ | Unknown", + "FK209; Li-TFSI; TBP", + "EDT", + "Co; Li-TFSI; TBP", + "Mo(tfd-CO2Me)3", + "FK209; Zn(TFSI)2; TBP", + "EHCz-3EtCz-ox", + "Li-TFSI; TBP | D-sorbitol", + "Ba", + "Carbon-nt; Li-TFSI; TBP", + "Co(III)(pztbpy)3; LiNTf2; TBP", + "4-isopropyl-4\u2032-methyldiphenyliodonium tetrakis(pentafluorophenyl)borate", + "Au-np; Li-TFSI; TBP", + "JQ1; Li-TFSI; TBP", + "La", + "In10-2,4,6; Li-TFSI; TBP", + "FK102; Li-TFSI; TBP", + "CuPc; Li-TFSI; TBP", + "2-Py", + "Li-TFSI; O2; TBP", + "n-Butylamine", + "sGO", + "nan | Li-TFSI; TBP", + "CuI", + "Li-TFSI; TBP; TeCA", + "PMMA", + "P3HT | Unknown", + "Fe(ttb)(TFSI)3; Li-TFSI; TBP", + "Co-TFSI; Li-TFSI", + "N", + "Lithium acetate", + "TAPC", + "Unknown | MoO3", + "Co", + "Li-TFSI; TBP | Undoped", + "TPE-NM3; Mo(tfdCOCF3)3", + "JQ2; Li-TFSI; TBP", + "TBP", + "Unknown | TBP", + "FK102; TBP", + "Unknown | Et4N-TFSI; H-TFSI", + "D4; Li-TFSI; TBP", + "Unknown | JQ1; Li-TFSI; TBP", + "FK209; Li-TFSI; TBP | Undoped", + "CuAlO2", + "FK209; H2SO4; Li-TFSI; TBP", + "Li-TFSI; TBP | Undoped | Unknown", + "rGO", + "FK269; Li-TFSI; TBP", + "Unknown | VOx", + "HA", + "Unknown | Unknown | TBP", + "CF3PA; FK209; Li-TFSI; TBP", + "Li-TFSI; TBP | Cu2O", + "O2", + "Li-TFSI; Si NPs", + "FN-Br", + "CsI", + "TBA-BF4", + "N2", + "Ethylene glycol | Unknown", + "PolyTPD", + "Triethanolamine", + "Unknown | FK209; Li-TSFI; TBP", + "Carbon-QDs", + "Alanine", + "2-Py; Li-TFSI", + "Spiro-(TFSI)2; TBP", + "AuAg-np", + "Au-np", + "Li-TFSI; TBP; acetonitrile", + "Br-BA", + "NPh2O2C2H6", + "Unknown | FK102; Li-TFSI; TBP", + "DPITPFB", + "Cu-Bix; Li-TFSI; TBP", + "Amonia | Unknown", + "SrCl2 | Undoped", + "Li-TFSI; TBP | Li-TFSI; TBP", + "VOx", + "Spiro-(TFSI)2", + "Mo(tfd-COCF3)3; TBP", + "H2O2", + "Triton-X", + "Oleylamine | Li-TFSI; TBP", + "FK209; TBP", + "Sodium Citrate", + "PS", + "CTAB", + "RbCl", + "[In2(phen)3Cl6]CH3CN; Li-TFSI; TBP", + "BCF; Li-TFSI; TBP", + "Ox-SWCNTs", + "PCBTBT", + "SiO-np", + "Carbon-nt@G; Li-TFSI; TBP", + "Cu9S5@SiO2-np", + "FK209; Li-TFSI; Pb(NO3)2; TBP", + "PCDSA", + "Li-TFSI; TBP; MWCNTs", + "Graphydine-QDs; Li-TFSI; TBP; nan", + "Sb", + "FK102; Li-TFSI", + "Li-TFSI; TBP | Unknown", + "Li-TFSI; P4VP; TBP", + "Cu(TFSI)2", + "TEMPOL", + "FK209; Li-TFSI; Pb-MOFs; TBP", + "D3; Li-TFSI; TBP", + "PZ0.025", + "Li-TFSI; TBP; V2O5 | Undoped", + "Unknown | TBA", + "AcOH; FK209; Li-TFSI; TBP", + "F6-TCNNQ | Unknown", + "Cu-2Cl", + "DIO; PCDTBT", + "I2", + "DMC; F4-TCNQ", + "TPFPB", + "DPPS", + "PZ0.030", + "NaLuF4:Yb,Er; Li-TFSI; TBP", + "DMSO", + "FeCl3; Li-TFSI; TBP", + "D-TBP", + "Unknown | Cu", + "NiPcS4", + "rGO-PhBiTh", + "ETH44-ox", + "Unknown | TBP | Unknown", + "Unknown | Li-TFSI; TBP", + "GD-QDs; Li-TFSI; TBP", + "TBA-TFSI" + ] + } + } + ] + }, + "name": "additives_compounds", + "description": "List of the dopants and additives that are in each layer of the HTL-stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous fields.\n- If several dopants/additives, e.g. A and B, are present in one layer, list the dopants/additives in alphabetic order and separate them with semicolons, as in (A; B)\n- If no dopants/additives, state that as \u201cUndoped\u201d\n- If the doping situation is unknown, stat that as\u2018Unknown\u2019\nExample\nLi-TFSI; TBP\nFK209; Li-TFSI; TBP\nF4-TCNQ\nUndoped\nCu | Ag; Cu", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.1 %; nan", + "2 mg/ml; 520 mg/ml; 0.036 vol%", + "520 mg/ml; 0.036 mL", + "9 uL(520mg/mLACN); 15 uL", + "6.76 mg/ml; 0.5 vol%", + "1 %; nan", + "1.79 vol%; 2.5 vol%", + "0.90 vol%; 2.07 vol%; 3.60 vol%", + "11.4 mg/ml; 36 \u00b5l/ml", + "35 uL(260mg/1mLACN); 30 uL/mL", + "35 uL(260mg/mLACN); 30 uL", + "3 %", + "nan | 2 uL/mL", + "2.85 vol%; 1.75 vol% | nan", + "520 mg/ml; 2.88 vol%", + "11.7 mg/ml; 36 \u00b5l/ml", + "520 mg/ml; 0.0338 vol%", + "0.064 M; 0.198 M", + "0.6 %", + "8.7 mg/ml; 8.7 mg/ml; 2.88 vol%", + "0.064; 0.198 M; nan", + "50 vol%", + "nan | 1 vol%", + "0.29 vol%; 1.75 vol%; 2.88 vol%", + "0.2", + "17.5 uL(300mg/1mLACN); 28.8 uL", + "3 mol%; 50 mol%; 330 mol%", + "9.1 mg/ml; 30 \u00b5l/ml", + "67 vol%", + "30 mM; 30 mM", + "0.6 vol%", + "5 mg/ml; 520 mg/ml; 0.036 vol%", + "8 %", + "0.03 M; 0.5 M; 3.3 M", + "7 %", + "10 %; nan", + "32 mM; 28.5 \u00b5l/ml", + "33 vol%", + "0.029 vol%; 28.3 mg/ml; 0.0288 vol%", + "1.75 vol%; 2.85 vol%", + "6.24 mg/ml; 8 \u00b5l/ml", + "6 mol%", + "0.6 mg/ml", + "30 mM; 200 mM", + "0.32 mg/ml", + "10.4 mg/ml; 0.03 ml/ml", + "0.1", + "0.5 %; nan", + "nan; nan; 1 mol%", + "520 mg/ml; 0.036 vol%", + "9.1 mg/ml; 0.029 ml/ml", + "9.1 mg/ml; 28.8 \u00b5l/ml", + "1.7 vol%; 2.0 vol%", + "nan; nan; 2 mol%", + "5.2 mg/ml; 0.02 ml/ml", + "15.08 mg/ml; 9.1 mg/ml; 28.8 \u00b5l/ml", + "2.88 vol%", + "5 wt%; 1 wt%", + "0.32 mg/ml | nan", + "0.5 vol%; 6.76 mg/ml; 0.5 vol%", + "1.5 %", + "0.035 M; 0.231 M", + "nan; 0.8 wt%; nan", + "5.3 mol%", + "30 mol%; 80 mol%", + "7 %; nan", + "2 vol%; nan; nan", + "10 mol%", + "9.1 mg/ml; 0.028 ml/ml", + "54 uL(10mg/mLACN); 11.2 uL", + "1 mg/ml; 520 mg/ml; 0.036 vol%", + "0.05 M; 0.5 M; 3.3 M", + "4 wt%", + "9.1 mg/ml; 0.03 ml/ml", + "17.5 uL(520mg/mLACN); 28.8 uL", + "17.5 uL(520mg/mLACN); 29 uL", + "0.05", + "0.5 mg/ml", + "nan; 0.6 wt%; nan", + "45 uL(2mg/mLACN); 10.2 uL", + "12 \u00b5l/ml", + "2 wt%", + "30 mM.200mM", + "0.075", + "nan; nan; nan", + "0.05 wt%", + "40 uL(40mg/mLACN); 23 uL(520mg/mLACN); 40 uL", + "520 mg/ml; 2.85 vol%", + "nan; 0.4 wt%; nan", + "0.025", + "300 mg/ml; 520 mg/ml; 0.028 vol%", + "2 mM; 2.88 vol%", + "0.15", + "0.015", + "500 mg/ml; 0.03 vol%", + "1 vol%; nan; nan", + "0.01 %; nan; nan", + "2.45 mM; 40 mM; 270 mM", + "nan | 1.75 vol%; 2.88 vol%", + "520 mg/ml; 0.0288 vol%", + "40 mol%", + "7.8 mol%", + "6 wt%", + "3.38 mg/ml; 22.5 \u00b5l/ml", + "7.5 mg/ml; 7.65 mg/ml; 0.01 ml/ml", + "10 mg/ml", + "10 wt%", + "32 mM; 195 mM", + "520 mg/ml; 334 mol%", + "3.0 vol%; 3.6 vol%", + "1.8 mM; 30 mM; 200 mM", + "2.88 vol%; 1.75 vol%", + "12.3 mol%", + "0.01 %; nan", + "17.5 uL(520mg/mlACN); 28.8 uL", + "20 mol%", + "50 %; nan", + "170 mg/ml; nan", + "5.6 mg/ml; 30 mg/ml", + "35 mM; 210 mM", + "0.4 %", + "4 mM; 30 mM; 200 mM | nan", + "0.3 wt%", + "0.007", + "18 uL(1MACN); 29 uL(1MCB)", + "2.2 mg/ml", + "12 %", + "1.44 vol%; 2.88 vol%", + "0.5 mg/ml; 0.5 vol%", + "8.7 mg/ml; 9.8 mg/ml; 0.029 ml/ml", + "11 %", + "1 %", + "10 uL(300mg/mLACN); 17.5 uL(520mg/mLACN); 28.8 uL", + "4 %", + "1.5 mM; 14 mM; 56 mM", + "4 mM; 30 mM; 200 mM", + "3.0 wt%", + "29 uL(300mg/mL); 18 uL(520mg/mLACN); 29 uL", + "0.0018", + "9 mM; 55 mM", + "11.4 mg/ml; 0.036 ml/ml", + "nan | nan", + "20 uL(517mg/1mLACN); 36 uL; 8 uL(375mg/mLACN)", + "6 %", + "5.4 mg/ml; 9.36 mg/ml; 0.028 ml/ml", + "18 uL(520mg/1mLACN); 30 uL; 29 uL(300mg/MLACN)", + "11.34 mg/ml; 0.0176 ml/ml", + "2.0 mg/ml", + "0.0056 M; 0.031 M; 0.19 M", + "30 mol%", + "520 mg/ml; 0.285 vol%", + "20 uL(517mg/mLACN); 36 uL; 8 uL(376mg/mLACN)", + "nan; nan; 4 mol%", + "0.44 M", + "170 mg/ml; 0.5 vol%", + "31.5 uL(300mg/mLACN); 17.5 uL(520mg/mL/ACN); 28.8 uL", + "8.7 mg/m; 9.1 mg/ml; 0.029 ml/ml", + "7.5 uL(170mg/mLACN); 4 uL", + "8.7 mg/ml; 9.1 mg/ml; 28.8 \u00b5l/ml", + "9.1 mg/ml; 28.8 \u00b5l/ml | 9.1 mg/ml; 28.8 \u00b5l/ml", + "1.6 vol%; 2.1 vol%; 3.6 vol%", + "0.0175 mL/mL; 0.0285 mL/mL", + "10.1 mol%", + "0.1 wt%", + "22.5 uL; 15 uL", + "0.5 vol%; nan; nan", + "9 %", + "0.0175 vol%; 0.0288 vol%", + "nan | 17.5 uL(520mg/mLACN); 28.8 uL", + "7.65 mg/ml; 1 vol%", + "1.75 vol%; 3.1 vol%", + "35 uL(520mg/mLACN); 60 uL", + "1.7 mg/ml; 7 \u00b5l/ml", + "0.0035", + "170 mg/ml; 0.004 vol%", + "2 %", + "1.75 vol%; 2.88 vol%", + "0.82 mg/ml; 2 \u00b5l/ml", + "3 %; nan", + "9.1 mg/ml; 0.0288 ml/ml", + "0.15 wt%", + "23 uL(90.9mg/mLACN); 39 uL", + "nan; nan; 3 mol%", + "2.5 %", + "17.5 uL(520mg/mLACN); 28.5 uL", + "18.2 mg/ml; 8 \u00b5l/ml", + "1.0 wt%", + "nan; 0.2 wt%; nan", + "nan | 2 vol%", + "520 mg/ml; 1.4 vol%", + "5 mol%", + "0.5 wt%", + "0.019 M; 0.007 M; 0.2 wt% | nan", + "8.8 mg/ml; 0.028 vol%; 0.035 vol%", + "nan | 20 vol%", + "30.2 uL(1756mg/mLACN); 9.7 uL", + "1.5 wt%", + "11.44 mg/ml; 36 \u00b5l/ml", + "0.5 mg/ml; 520 mg/ml; 0.036 vol%", + "1 wt%", + "70 uL(170mg/1mLACN); 20 uL", + "5.0 mg/ml", + "10 uL(520mg/mLACN); 28 uL; 35 uL(18.8mg/50mLACN)", + "17.5 uL(520mg/mLACN); 28.8 uK", + "1.5 mg/ml", + "30 uL(270mg/mLACN); 35 uL", + "3 wt%", + "5 at%", + "5 %", + "10 uL(170mg/mLACN); 5 uL", + "nan | 5 vol%", + "9.14 uL(0.25MACN); 21.02 uL(1.8MACN); 35.65 uL", + "5 wt%", + "8.67 mg/ml; 9.1 mg/ml; 28.8 \u00b5l/ml", + "6.8 vol%; 3.4 vol%", + "0.0052", + "0.03; 3.3; 0.5", + "12 mol%", + "5 %; nan", + "0.8 %", + "nan | 10 vol%", + "520 mg/ml" + ] + } + } + ] + }, + "name": "additives_concentrations", + "description": "The concentration of the dopants/additives.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If more than one dopant/additive in the layer, e.g. A and B, separate the concentration for each dopant/additive with semicolons, as in (A; B)\n- For each dopant/additive in the layer, state the concentration.\n- The order of the dopants/additives must be the same as in the previous filed.\n- For layers with no dopants/additives, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used.\n- The preferred way to state the concentration of a dopant/additive is to refer to the amount in the final product, i.e. the material in the layer. When possible, use on the preferred units\no wt%, mol%, vol%, ppt, ppm, ppb\n- When the concentration of the dopant/additive in the final product is unknown, but where the concentration of the dopant/additive in the solution is known, state that concentration instead. When possible, use on the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n5 vol%; nan | 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | 0.3 M", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Spin-coating | Spin-coating >> Spin-coating", + "CBD | Dipp-coating", + "Spin-coating >> Spin-coating", + "Roller coating", + "Spin-coating >> Unknown", + "Spray-coating | Spray-coating", + "Electropolymerisation", + "Spin-coating | Spin-coating", + "Spray-pyrolys | Screen printing", + "Slot-die coating", + "Brush painting", + "Lamination | Spin-coating | Spin-coating", + "Spin-coating | Evaporation", + "Evaporation | Spin-coating", + "Ultrasonic spray", + "Sputtering", + "Spin-coating >> MeOH wash", + "Sputtering | Unknown", + "Spin-coating | Spray-coating | Spin-coating", + "Evaporation | Co-evaporation", + "CBD | Spin-coating", + "Doctor blading | Spin-coating", + "Dropcasting | Spin-coating", + "Spin-coating | Sputtering", + "Spin-coating | Unknown", + "Electrodeposition | Spin-coating", + "Evaporation | ALD", + "Magnetron sputtering >> Gas reaction", + "SILAR", + "Inkjet printing", + "Electrospinning | Spin-coating", + "Evaporation >> Oxidation", + "RF sputtering", + "Spin-coating >> Spin-coating >> Spin-coating", + "Spin-coating | Spin-coating >> Spin-coating >> Spin-coating", + "Evaoration | Spin-coating", + "Spin-coating | Lamination", + "Pulsed laser deposition | Sputtering", + "Evaporation | Evaporation", + "Spin-coating | RF sputtering", + "Electropolymerization", + "Spin-coating | Spin-coating | Lamination", + "Air brush spray", + "Spin-coating | Spray-coating", + "Spin-coating | Doctor blading", + "Sputtering | Sputtering", + "Sprinkling", + "Spray-coating | Spin-coating", + "Spin-coating | Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating", + "Spin-coating | Spin-coating >> Lamination", + "Spin-coating | Spray-pyrolys", + "Spin-coating | Dipp-coating", + "Hydrothermal | Spin-coating", + "Spin-coating >> Blowing hot air", + "Lamination | Spin-coating", + "Spin-coating | Spin-coating | Spin-coating", + "Sputtering | Sputtering | Spin-coating", + "Magnetron sputtering | Spin-coating", + "Lamination", + "Evaporation >> Gas reaction", + "E-beam evaporation | Spin-coating", + "Evaporation | Evaporation | Evaporation", + "PVD", + "Press-transfer | Spin-coating | Spin-coating", + "Dipp-coating >> Spin-drying | Spin-coating", + "Dipp-coating", + "Cryo-controlled quasi-congealing spin-coating", + "Slot-die coating | Evaporation", + "Evaporation", + "Electrospraying", + "Spray-pyrolys", + "Unknown", + "CBD", + "DC Magnetron Sputtering | Spin-coating", + "Drop-infiltration", + "ALD | Spin-coating", + "CVD", + "Screen printing", + "Slot-die coating | Spin-coating", + "Centrifuge-casting", + "Doctor blading", + "Spin-coating | E-beam evaporation", + "Magnetron sputtering", + "Substrate vibration assisted dropcasting", + "Dropcasting | Lamination", + "Sputtering | Spin-coating", + "DC Sputtering >> Oxidation", + "E-beam evaporation", + "Spin-coating | Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating", + "Unknown | Spin-coating", + "Spin-coating | Dropcasting", + "Spray-pyrolys | Dipp-coating", + "Dropcasting", + "Spin-coating >> Spin-coating >> Spin-coating >> Spin-coating", + "Pulsed laser deposition", + "DC Magnetron Sputtering", + "Evaporation >> Gas-reaction", + "Blow-drying", + "Hydrothermal", + "Electrodeposition", + "E-beam evaporation | E-beam evaporation", + "Spray-pyrolys | Spin-coating", + "Dipp-coating | Spin-coating", + "Evaporation >> Polymerisation", + "RF magnetron sputtering", + "Dipp-coating | Evaporation", + "Slot-die coating | Slot-die coating", + "Anti-solvent quenching | Spin-coating", + "Gelation", + "Spin-coating", + "Spin-coating | ALD", + "Doctor blading | Doctor blading", + "Spray-coating", + "Spin-coating | Evaporation | Evaporation", + "ALD", + "Co-evaporation | Evaporation", + "Spin-coating | Drop-infiltration", + "Reactive magnetron sputtering", + "Electrospraying | Spin-coating", + "Hydrolys | Drop-infiltration" + ] + } + } + ] + }, + "name": "deposition_procedure", + "description": "The deposition procedures for the HTL-stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate them by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Thermal annealing is generally not considered as an individual reaction step. The philosophy behind this is that every deposition step has a thermal history, which is specified in a separate filed. In exceptional cases with thermal annealing procedures clearly disconnected from other procedures, state \u2018Thermal annealing\u2019 as a separate reaction step.\n- Please read the instructions under \u201cPerovskite. Deposition. Procedure\u201d for descriptions and distinctions between common deposition procedures and how they should be labelled for consistency in the database.\nExample\nSpin-coating\nSpin-coating | Spin-coating\nEvaporation\nSpray-pyrolys", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Solid", + "Liquid", + "Liquid | Liquid", + "Unknown", + "Liquid | Liquid | Liquid", + "Liquid | Liquid >> Liquid >> Liquid >> Liquid >> Liquid", + "Liquid >> Liquid", + "Gas", + "Gas >> Gas", + "Liquid | Liquid >> Liquid >> Liquid >> Liquid", + "Liquid | Liquid >> Liquid >> Liquid", + "Gas | Liquid", + "Gas | Gas", + "Liquid | Gas" + ] + } + } + ] + }, + "name": "deposition_aggregation_state_of_reactants", + "description": "The physical state of the reactants.\n- The three basic categories are Solid/Liquid/Gas\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the aggregation state associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Most cases are clear cut, e.g. spin-coating involves species in solution and evaporation involves species in gas phase. For less clear-cut cases, consider where the reaction really is happening as in:\no For a spray-coating procedure, it is droplets of liquid that enters the substrate (thus a liquid phase reaction)\no For sputtering and thermal evaporation, it is species in gas phase that reaches the substrate (thus a gas phase reaction)\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nLiquid\nGas | Liquid\nLiquid | Liquid >> Liquid", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "N2 | Vacuum", + "Vacuum >> Air", + "N2", + "Vacuum | Ar", + "Unknown", + "Air | N2", + "N2 >> methanol", + "N2 >> N2", + "N2 | N2", + "Ar | Ar", + "Air | Vacuum", + "Ambient", + "Air | Air", + "Dry air", + "Vacuum | Vacuum", + "Air", + "Vacuum", + "Ar; O2", + "Ar" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere", + "description": "The synthesis atmosphere.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nVacuum | N2\nAir | Ar; H2O >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.006 Torr", + "0.002 Pa", + "0.0001 Pa | nan", + "1 atm | 0.00004 Torr", + "0.000001 mbar | 0.000001 mbar", + "1 atm | 0.00003 mbar", + "1 atm | 1 atm", + "6 Pa", + "1 atm | 0.0001 Pa", + "1 atm | 0.000001 atm", + "1 atm | 0.000002 Torr", + "0.0001 Pa", + "1 atm", + "4 Pa", + "1 atm | 0.000001 Torr", + " N2", + "2 Pa" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_pressure_total", + "description": "The total gas pressure during each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- Pressures can be stated in different units suited for different situations. Therefore, specify the unit. The preferred units are:\no atm, bar, mbar, mmHg, Pa, torr, psi\n- If a pressure is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 100 pa and not 80-120 pa.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 1 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1 atm | 0.00004 Torr", + "0.000001 mbar | 0.000001 mbar", + "1 atm | 0.00003 mbar", + "0.003 Torr; 0.003 Torr", + "1 atm | 1 atm", + "1 atm | 0.000001 atm", + "1 atm | 0.000002 Torr", + "1 atm", + "1 atn", + "1 atm | 0.000001 Torr", + "1 atm | 0.0001 Pa" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_pressure_partial", + "description": "The partial pressures for the gases present during each reaction step.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the partial pressures and separate them with semicolons, as in (A; B). The list of partial pressures must line up with the gases they describe.\n- In cases where no gas mixtures are used, this field will be the same as the previous filed.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 0.99 atm; 0.01 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "30 | 30", + "0.9", + "25", + "15", + "30.0", + "90.0", + "20.0", + "30", + "0.35", + "30 | 0", + "50.0", + "65.0", + "10.0", + "80.0", + "0 | 0" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_relative_humidity", + "description": "The relative humidity during each deposition step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the relative humidity associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns\n- If the relative humidity for a step is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 35 and not 30-40.\nExample\n35\n0 | 20\nnan >> 25 | 0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Ethanol; Water", + "Chloroform", + "Ethylene glycol", + "2-methoxyethanol", + "Etyl cellulose; Terpineol", + "Diethyl sulfide", + "Dichlorobenzene", + "Unknown | Chlorobenzene", + "acetonitrile; Chlorobenzene", + "2-methoxyethanol; monoethanolamine", + "IPA | Chlorobenzene", + "Unknown", + "Chlorobenzene | none", + "Ethanol | TMAOH solution", + "Chlorobenzene | Unknown", + "Toluene | Methanol", + "none", + "2-methoxyethanol; ethanolamine | none", + "acetonitrile", + "Methanol", + "IPA; Water", + "Water | Chlorobenzene", + "Water; Methanol", + "IPA | Diethyl sulfide", + "Toluene | DMF", + "DMF", + "Water | 2-metoxyethanol", + "1,2-dichlorobenzene", + "Chlorobenzene >> 2-Butanol", + "IPA | IPA", + "IPA | Unknown", + "Chlorobenzene", + "Chlorobenzene; acetonitrile", + "Hexanethiol", + "Ethyl acetate", + "2-methoxyethanol; ethanolamine", + "Water; IPA", + "DMF | Chlorobenzene", + "Toluene", + "Water", + "Chlorobenzene | Chlorobenzene", + "Ethanol", + "none | 2-metoxyethanol", + "Ethylene glycol | Methanol", + "Water | IPA", + "none | Chlorobenzene", + "Water | Water", + "IPA", + "none | none", + "Hexane | Unknown", + "Chlorobenzene | IPA" + ] + } + } + ] + }, + "name": "deposition_solvents", + "description": "The solvents used in each deposition procedure for each layer in the stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvents associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the solvents in alphabetic order and separate them with semicolons, as in (A; B)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For non-liquid processes with no solvents, state the solvent as \u2018none\u2019\n- If the solvent is not known, state this as \u2018Unknown\u2019\n- Use common abbreviations when appropriate but spell it out when risk for confusion\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nChlorobenzene\nAcetonitile; Ethanol | Chlorobenzene\nnone >> Ethanol; Methanol; H2O | DMF; DMSO", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1; 8", + "0.1; 51", + "1 >> 1", + "1; 0.006 | nan", + "1 | nan", + "nan | 1", + "1", + "1; 0.006", + "5; 1", + "1 | 1", + "1; 0.012", + "1; 1", + "1; 0.1", + "1; 3" + ] + } + } + ] + }, + "name": "deposition_solvents_mixing_ratios", + "description": "The mixing ratios for mixed solvents\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent mixing ratios associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For pure solvents, state the mixing ratio as 1\n- For non-solvent processes, state the mixing ratio as 1\n- For unknown mixing ratios, state the mixing ratio as \u2018nan\u2019\n- For solvent mixtures, i.e. A and B, state the mixing ratios by using semicolons, as in (VA; VB)\n- The preferred metrics is the volume ratios. If that is not available, mass or mol ratios can be used instead, but it the analysis the mixing ratios will be assumed to be based on volumes.\nExample\n1\n4; 1 | 1\n1 >> 5; 2; 0.3 | 2; 1", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown | Sigma Aldrich", + "Fisher Chemical | ACROS Organic", + "Unknown", + "Fisher Scientific", + "Heraeus", + "Guangzhou Seaside Technology", + "Nacalai Tesque; Wako Pure Chemical", + "Aladdin", + "Unknown; Sigma Aldrich", + "J&K", + "Sigma Aldrich; Sigma Aldrich", + "Sigma Aldrich", + "Xi'an Polymer Light Technology; Xi'an Polymer Light Technology" + ] + } + } + ] + }, + "name": "deposition_solvents_supplier", + "description": "The suppliers of all the solvents.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For non-liquid processes with no solvents, mark the supplier as \u2018none\u2019\n- If the supplier for a solvent is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nSigma Aldrich\nSigma Aldrich; Fisher | Acros\nnone >> Sigma Aldrich; Sigma Aldrich | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "anhydrous; 99%", + "Pro analysis", + "Unknown", + "Puris; Puris", + "0.998", + "99.8%; 99.8%", + "Puris" + ] + } + } + ] + }, + "name": "deposition_solvents_purity", + "description": "The purity of the solvents used.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For non-liquid processes with no solvents, state the purity as \u2018none\u2019\n- If the purity for a solvent is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\nPuris; Puris| Tecnical\nnone >> Pro analysis; Pro analysis | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "NiPc | Vanadium(V)\noxytriisopropoxide; IPA", + "FK209; Li-TFSI; CS03; TBP", + "Spiro-oF; Li-TFSI; Co-TFSI; TBP", + "FK209; Li-TFSI; CS01; TBP", + "(NiAc)4H2O", + "Spiro-MeOTAD; nan", + "Ni(Ac)2\u00b74H2O; SrCl2", + "P3CT-Na", + "Spiro-MeOTAD | MoOx", + "Clevios PVP Al 4083; Black phosphorous QDs", + "Li-TFSI; Spiro-MeOTAD", + "Ni; O2", + "NiO-np", + "Spiro-MeOTAD; Co(III)(pztbpy)3; Li-TFSI; TBP", + "P3HT; rGO-PhBiTh", + "NiO-np | PAS", + "FK209; Li-TFSI; LCS01; TBP", + "NaYF4:Yb,Er; Li-TFSI; TBP; PTAA", + "CuPc | PEI", + "Li-TFSI; H-Z3; TBP", + "FK209; Li-TFSI; H-Lin; TBP", + "Oleylamine | Li-TFSI; Spiro-MeOTAD; TBP", + "TRUX-E-T; Li-TFSI; TBP", + "PEDOT:PSS | TPA-NPA-TPA", + "P3HT; rGO-PhOHex", + "PTAA; Li-TFSI; TBP", + "aYF4:Yb,Er@NaYF4; Li-TFSI; TBP; PTAA", + "PTB7-Th | MoOx", + "PEDOT:PSS | MoO3", + "DIPO-Ph4", + "Nickel acetate tetrahydrate; ethanolamine", + "Spiro-MeOTAD; Li; Co", + "NiO Target", + "P3CT", + "Li-TFSI; NiPc; TBP", + "S; Oleylamine; 1-octadecane; diphenylphosphine; Indium acetate; CuI", + "Spiro-MeOTAD; Li-TFSI; TBP | MoO3", + "IEICO | MoO3", + "MoO3", + "FK209; Li-TFSI; B186; TBP", + "P3HT", + "H-Lin", + "PBTTTV-h", + "CuSO4; Lactic Acid; NaOH", + "Clevios PVP Al 4083", + "rGO-4FPH | Spiro-MeOTAD; Li-TFSI; TBP", + "Rubrene", + "M2; Li-TFSI; TBP", + "CF-BTz-ThR", + "Al(C2H5)3 | nan", + "MEH-PPV", + "Graphene oxide | Carbon dots", + "NiOx-np solution", + "Li-TFSI; H-Z2; TBP", + "Li-TFSI; Spiro-MeOTAD; TBP; Co-TFSI", + "Nickel acetate hexahydrate; ethanolamine | ethylphosphonic acid", + "NaLuF4:Yb,Er@NaLuF4; Li-TFSI; TBP; PTAA", + "Clevios PVP Al 4083 | PEI", + "Spiro-MeOTAD", + "Nickel Nitrate hexahydrate", + "CZ-TA; Li-TFSI; TBP", + "FK102; Li-TFSI; Spiro-MeOTAD; TBP", + "M1; Li-TFSI; TBP", + "Spiro-MeOTAD; Li-TFSI; TBP", + "Copper thiocyanate", + "Graphene oxide | PFNBr", + "Graphene oxide | PTAA", + "NiO-np | PTAA", + "CZTS-np", + "Li-TFSI; H-Z1; TBP", + "Spiro-MeOTAD; Li-TFSI; TBP | MoOx", + "Co(PyPz)3(TFSI)3; Li-TFSI; Spiro-MeOTAD; TBP", + "Li-TFSI; MWCNTs; Spiro-MeOTAD; TBP", + "PTAA | PFN", + "Nickel Chloride hexahydrate; HNO3", + "C102; FK209; Li-TFSI; TBP", + "Nickel acetate hexahydrate; ethanolamine", + "InP-np | Li-TFSI; Spiro-MeOTAD; TBP", + "C13-FAS | Spiro-MeOTAD", + "Li-TFSI; PTAA; TBP", + "TaTm | F6-TCNNQ; TaTm", + "FK209; iDM1; Li-TFSI; TBP", + "P3HT; Li-TFSI; TBP", + "H-Star", + "polyacrylonitrile; rGO", + "Ni(CH3COO)2\u00b74H2O", + "Vanadium(V)\noxytriisopropoxide; IPA", + "PTAA", + "PBDT(T)(2F)T", + "CZTS-np; hexanethiol", + "FK209; Li-TFSI; Spiro-MeOTAD; TBP", + "PBDT(2F)T", + "PEDOT:PSS; PEG", + "Li-TFSI; Spiro-MeOTAD; TBP", + "Spiro-MeOTAD; Li-TFSI; Co-TFSI; TBP", + "FK209; Li-TFSI; H-Star; TBP", + "FK209; Li-TFSI; Spiro-MeOTAD; TBP | Vanadium(V)\noxytriisopropoxide; IPA", + "PBDT(2H)T", + "Ni(Ac)2\u00b74H2O; SrCl2 | nan", + "2PACz", + "B186", + "Li-TFSI; Spiro-MeOTAD; TBP; V2O3 | Clevios PVP Al 4083", + "Li-TFSI; P3HT; TBP", + "Carbon Paste", + "DTP-C6Th", + "Graphene oxide | PTFTS", + "Spiro-MeOTAD; TBP", + "IEICO; PBDTTT-E-T | MoO3", + "MeO-2PACz", + "nickel acetate tetrahydrate", + "PTAA >> Sb 2D-nanosheets", + "TPE-S", + "Rubrene | PEDOT:PSS", + "nickel acetylacetonate", + "HA2", + "Cu >> iodine", + "Nickel acetate tetrahydrate", + "Spiro-MeOTAD; Co(III)(pztbpy)3; LiNTf2; TBP", + "PEDOT:PSS", + "Graphene oxide", + "Li-TFSI; BTPA-3; TBP", + "HA1", + "Nickel acetate hexahydrate; ethanolamine | 4-Bromobenzoic acid", + "Li-TFSI; TBP; Spiro-MeOTAD; acetonitrile", + "Li-TFSI; Spiro-MeOTAD; TBP | Li-TFSI; MWCNTs; Spiro-MeOTAD; TBP", + "Cu-np; NiOx-np", + "C101; FK209; Li-TFSI; TBP", + "InP-np", + "Oleylamine", + "FK209; Li-TFSI; EP02; TBP", + "PBDTTT-E-T | MoO3", + "nickel (II) acetate tetrahydrate", + "ethanolamine; nickel acetate tetrahydrate", + "Nickel acetate; ethylene glycol; ethylenediamine", + "pentaerythritol tetrakis(3-mercaptopropionate) | Spiro-MeOTAD; Li-TFSI; TBP", + "PTAA | PFN-P2" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds", + "description": "The non-solvent precursor chemicals used in each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemicals associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several compounds, e.g. A and B, list the associated compounds in alphabetic order and separate them with semicolons, as in (A; B)\n- Note that also dopants/additives should be included\n- When several precursor solutions are made and mixed before the reaction step, it is the properties of the final mixture used in the reaction we here describe.\n- The number and order of layers and reaction steps must line up with the previous columns.\n- For gas phase reactions, state the reaction gases as if they were in solution.\n- For solid-state reactions, state the compounds as if they were in solution.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- If the compounds for a deposition step is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nFK209; Li-TFSI; Spiro-MeOTAD; TBP\nNiO-np\nPTAA | CuSCN", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Heraeus | synthesized", + "Energy Chemical; Sigma Aldrich; Sigma Aldrich; Sigma Aldrich", + "Xi\u2019an p-OLED; Sigma Adrich; Xi\u2019an p-OLED; Sigma Adrich", + "Sigma Aldrich", + "Sigma Aldrich; Lumtec; Sigma Aldrich", + "Xi\u2019an p-OLED", + "Unknown", + "Lumtec, Sigma Aldrich, Lumtec, Sigma Aldrich", + "Reike Metals", + "Unknown >> 0.1 mg/ml", + "Clevios PVP", + "Xi'an Polymer Light Technology; Xi'an Polymer Light Technology; Xi'an Polymer Light Technology", + "Sigma Adrich; Shenzhen Feiming Science and Technology; Sigma Adrich; Dyesol", + "Dysole; Sigma Aldrich; Dyenamo; Sigma Aldrich", + "Unknown; Borun Chemical; Unknown", + "Clevious", + "Dyesol; Sigma Aldrich; Shenzen Feiminf Science and Technology; Sigma Aldrich", + "Sigma Aldrich; Merck; Sigma Aldrich", + "Sigma Aldrich; Sigma Aldrich; Dalian HeptaChroma SolarTech Co. Ltd.; Sigma Aldrich", + "Advanced Election Technology Co., Ltd; Unknown", + "Tokyo Chemical Industry; Wako Pure Chemical; Wako Pure Chemical", + "Sigma Adrich; Sigma Adrich; Sigma Adrich; Acros Organics", + "Aladdin; Aladdin; Aladdin", + "Alfa-Aesar", + "Unknown | Sigma Aldrich; Sigma Aldrich; Sigma Aldrich", + "Heraeus", + "1-Material", + "Kojundo Chemical Lab. Co.", + "1-Material, NICT-7", + "Sigma Adrich; Merck; Sigma Adrich", + "Showa Chemical | ACROS Organic", + "Dyesol; Sigma Aldrich; Shenzhen Feiming Science and Technology; Sigma Aldrich", + "Synthesized", + "Guangzhou Seaside Technology", + "Sigma Adrich; Sigma Adrich; Sigma Adrich", + "Dyesol; Aladdin; Merck; Aladdin", + "Tokyo Chemical Industry", + "Aladdin | Aladdin", + "Sigma Aldrich; Sigma Aldrich; Sigma Aldrich", + "Borun Chemicals; Sigma Aldrich; Unknown", + "Baytron", + "Clevios Heraeus", + "Ossila", + "Xi\u2019an p-OLED | Aladdin", + "1-Material >> synthesized", + "Synthesized; Synthesized", + "Shanghai Aladdin Bio-Chem. Technology; Shanghai Aladdin Bio-Chem. Technology; Shanghai Aladdin Bio-Chem. Technology; Sigma Aldrich; Sigma Aldrich", + "Sinopharm Chemical Reagent Co. Ltd.,", + "J&K Scientific; Merck; Sigma Aldrich", + "Derthon; Sigma Aldrich; Sigma Aldrich", + "Novaled GmbH | Novaled GmbH", + "1-Material; Unknown; Nichem Chemicals; 1-Material" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds_supplier", + "description": "The suppliers of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemical suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For gas phase reactions, state the suppliers for the gases or the targets/evaporation sources that are evaporated/sputtered/etc.\n- For solid state reactions, state the suppliers for the compounds in the same way.\n- For reaction steps involving only pure solvents, state the supplier as \u2018none\u2019 (as that that is entered in a separate filed)\n- For chemicals that are lab made, state that as \u201cLab made\u201d or \u201cLab made (name of lab)\u201d\n- If the supplier for a compound is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nDysole; Sigma Aldrich; Dyenamo; Sigma Aldrich\nSigma Aldrich; Fisher | Acros\nLab made (EPFL) | Sigma Aldrich >> none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Puris; Puris; Puris; Pro analysis", + "Unknown", + "Unknown; puris; puris", + "99%; 99%", + "Unknown; 96%; Unknown; 99%", + "Puris; Puris; Technical", + "99.5; 99.8; Unknown", + "99.95%; Unknown; 96%", + "0.98", + "Puris; Puris; Puris", + "99.9; Pro analysis; Tecnical; Puris", + "Unknown; Pro analysis; Puris; Puris", + "0.999" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds_purity", + "description": "The purity of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the compound purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, i.e. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019 (as that is stated in another field)\n- If the purity for a compound is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\n99.999; Puris| Tecnical\nUnknown >> Pro analysis; Pro analysis | none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "35 mg/ml", + "1.75 vol%; 80 mg/ml; 2.85 vol%", + "1.55 wt%", + "0.15 M; 1 M", + "72 mg/ml; 1.7 vol%; 2.0 vol%", + "30 mM; 50 mg/ml; 200 mM", + "72.3 mg/ml; 2.85 vol%; 1.75 vol% | nan", + "20 mg/ml | 1 mg/ml", + "4 mM; 30 mM; 80 mg/ml; 200 mM", + "5.4 mg/ml; 9.36 mg/ml; 72.3 mg/ml; 0.028 ml/ml", + "30 mol%; 8 wt%; 80 mol%", + "0.14 wt%; 2.24 wt%", + "51.43 mg/ml; 1.79 vol%; 2.5 vol%", + "1 M; 6 mL; 6 mL; 6 mL; 1 mL; 0.3 mmol; 0.3 mmol", + "72.3 mg/ml; 6.76 mg/ml; 0.5 vol%", + "9.1 mg/ml; 90 mg/ml; 0.029 ml/ml", + "0.2 M", + "72 mg/ml; 91 mg/ml; 2.85 vol% | nan", + "1 mg/ml", + "0.82 mg/ml; 10 mg/ml; 2 \u00b5l/ml", + "15 mg/ml; 1.5 mg/ml", + "9.1 mg/ml; 80 mg/ml; 0.0288 ml/ml", + "18.2 mg/ml; 72.3 mg/ml; 8 \u00b5l/ml", + "5 mg/ml", + "25 mg/ml; 0.32 mg/ml | 2 mg/ml", + "9.1 mg/ml; 72.3 mg/ml; 0.029 ml/ml", + "1 mg/ml; 520 mg/ml; 0.036 vol%; 36 mg/ml", + "0.15 M; nan", + "9.1 mg/ml; 1 wt%; 72.3 mg/ml; 28.8 \u00b5l/ml", + "90 mg/ml", + "5.6 mg/ml; 56 mg/ml; 30 mg/ml", + "90 mg/ml; 7.65 mg/ml; 1 vol%", + "90 mg/ml; 0.0225 mL; 0.036 mL | nan", + "nan | 72.3 mg/ml; 1.75 vol%; 2.88 vol%", + "2 wt% | nan", + "70 mg/ml", + "72.3 mg/ml; 2.88 vol%; 1.75 vol%", + "520 mg/ml; 72.3 mg/ml; 0.0288 vol%", + "9.1 mg/ml; 70 mg/ml; 28.8 \u00b5l/ml", + "72.3 mg/ml; 520 mg/ml; 1", + "182 mg/ml; 6 vol%", + "11.44 mg/ml; 90 mg/ml; 36 \u00b5l/ml", + "2 mg/ml | nan", + "1.3 mg/ml", + "1 mg/ml | 0.05 mg/ml", + "17.5 mM", + "4 mg/ml", + "30 mg/ml; nan", + "40 mg/ml; 10 mg/ml", + "8.7 mg/ml; 9.1 mg/ml; 72.3 mg/ml; 0.029 ml/ml", + "1.5 wt% | 2 mg/ml >> 2 mg/ml >> 2 mg/ml >> 2 mg/ml", + "25 mg/ml; 0.32 mg/ml", + "11.4 mg/ml; 90 mg/ml; 36 \u00b5l/ml", + "520 mg/ml; 72.3 mg/ml; 2.88 vol%", + "20 mg/ml", + "5.2 mg/ml; 52.8 mg/ml; 0.02 ml/ml", + "70 mM", + "3.83 mg/ml; 50 mg/ml; 22.5 \u00b5l/ml", + "0.5 vol%; 6.76 mg/ml; 30 mg/ml; 0.5 vol%", + "12 \u00b5l/ml; 0.2 M", + "73 mg/ml", + "500 mg/ml; 80 mg/ml; 0.03 vol%", + "60 mg/ml", + "9.1 mg/ml; 72.3 mg/ml; 28.8 \u00b5l/ml | 9.1 mg/ml; 0.5 wt%; 72.3 mg/ml; 28.8 \u00b5l/ml", + "32 mM; 75 mg/ml; 28.5 \u00b5l/ml", + "8 mg/ml", + "9.1 mg/ml; 72.3 mg/ml; 0.0288 ml/ml", + "8.7 mg/ml; 9.8 mg/ml; 72.3 mg/ml; 0.029 ml/ml", + "30 mg/ml | 0.005 vol%; 0.995 vol%", + "0.5 vol%; 6.76 mg/ml; 10 mg/ml; 0.5 vol%", + "12.5 mg/ml | nan", + "73.2 mg/ml | 5 mg/ml", + "9.1 mg/ml; 2 wt%; 72.3 mg/ml; 28.8 \u00b5l/ml", + "1 mg/ml | 0.1 mg/ml", + "5 mg/ml >> nan", + "11.34 mg/ml; 72.3 mg/ml; 0.0176 ml/ml", + "1.5 wt% | 2 mg/ml >> 2 mg/ml >> 2 mg/ml", + "2.5 wt%", + "1.2 mg/ml", + "nan; nan; 70 mg/ml; nan", + "63 mg/ml; 170 mg/ml; 2 vol%", + "80 mg/ml; 1.45 mg/ml; 2.85 mg/ml", + "15 mg/ml; 0.75 vol%; 0.75 vol%", + "72 mg/ml; 1.44 vol%; 2.88 vol%", + "9.1 mg/ml; 80 mg/ml; 0.03 ml/ml", + "1.7 mg/ml; 10 mg/ml; 7 \u00b5l/ml", + "63 mg/ml", + "0.035 M; 0.07 M; 0.231 M", + "10 mg/ml", + "2 mg/ml; 520 mg/ml; 0.036 vol%; 36 mg/ml", + "0.3 M; 2 M; nan", + "12.5 mg/ml; 10 mg/ml | nan", + "0.2 M | 0.03 M", + "30 mM; 85 mg/ml; 30 mM", + "182 mg/ml; 6 vol% | 0.5 mg/ml", + "9.1 mg/ml; 80 mg/ml; 0.028 ml/ml", + "78 mM", + "8.8 mg/ml; 0.028 vol%; 70 mg/ml; 0.035 vol%", + "0.058 M; 0.0056 M; 0.031 M; 0.19 M", + "nan; 90 mg/ml; nan", + "9.1 mg/ml; 60 mM; 0.029 ml/ml", + "9.1 mg/ml; 72.3 mg/ml; 28.8 \u00b5l/ml", + "520 mg/ml; 82 mg/ml; 1.4 vol%", + "15 mg/ml; 0.5 mg/ml; 0.5 vol%", + "80 mg/ml; 5 mg/ml", + "25 mg/ml", + "0.2 M | 0.01 M", + "3 mol%; 50 mol%; 70 mM; 330 mol%", + "0.2 M | 0.05 M", + "10 mg/ml; 170 mg/ml; 0.004 vol%", + "35 mM", + "8.75 mM", + "200 mg/ml", + "72.3 mg/ml; 2.88 vol%", + "1.8 mM; 30 mM; 60 mM; 200 mM", + "72.5 mg/ml", + "1.5 mg/ml | 0.5 mg/ml", + "6.43 mg/ml", + "80 mg/ml", + "7.5 mg/ml; 7.65 mg/ml; 90 mg/ml; 0.01 ml/ml", + "0.064 M; 0.17 M; 0.198 M", + "8.7 mg/ml; 9.1 mg/ml; 72 mg/ml; 28.8 \u00b5l/ml", + "0.1 M", + "0.0175 vol%; 72.3 mg/ml; 0.0288 vol%", + "2 mg/ml", + "8.7 mg/ml; 8.7 mg/ml; 72.3 mg/ml; 2.88 vol%", + "9.1 mg/ml; 72.3 mg/ml; 30 \u00b5l/ml", + "0.3 mg/ml", + "1.5 wt% | 2 mg/ml >> 2 mg/ml >> 2 mg/ml >> 2 mg/ml >> 2 mg/ml", + "15 mM", + "10.4 mg/ml; 60 mg/ml; 0.03 mg/ml", + "102 mg/ml", + "2.5 mg/ml", + "10 mg/ml | nan", + "30 mg/ml", + "1 mg/ml | 0.025 mg/ml", + "72.3 mg/ml; 520 mg/ml; 0.3 vol%", + "0.44 M", + "11.4 mg/ml; 90 mg/ml; 0.036 mg/ml", + "0.90 vol%; 2.07 vol%; 0.091 mg/ml; 3.60 vol%", + "72.3 mg/ml; 1.75 vol%; 2.88 vol%", + "9.1 mg/ml; 72.3 mg/ml; 28.8 \u00b5l/ml | 9.1 mg/ml; 1 wt%; 72.3 mg/ml; 28.8 \u00b5l/ml", + "10.4 mg/ml; 80 mg/ml; 0.03 ml/ml", + "4 mM; 30 mM; 80 mg/ml; 200 mM | 0.005 vol%; 0.995 vol%", + "35 mM; 35 mM; 210 mM", + "72.3 mg/ml; 2 mM; 2.88 vol%", + "80 mg/ml; 10 mg/ml", + "68 mM; 9 mM; 55 mM", + "1.6 vol%mM; 2.1 vol%; 91 mg/ml; 3.6 vol%", + "2 mg/ml | 0.5 mg/ml", + "0.2 M | 0.02 M", + "0.2 M | 0.04 M", + "100 mg/ml", + "72.3 mg/ml; 0.029 vol%; 28.3 mg/ml; 0.0288 vol%", + "2.45 mM; 40 mM; 81.6 mM; 270 mM", + "72.3 mg/ml", + "60 mM; 32 mM; 195 mM", + "0.5 mg/ml; 520 mg/ml; 0.036 vol%; 36 mg/ml", + "9.1 mg/ml; 72 mg/ml; 0.028 mg/ml", + "0.170 M; 0.064 M; 0.198 M", + "9.1 mg/ml; 0.5 wt%; 72.3 mg/ml; 28.8 \u00b5l/ml", + "1.5 wt% | 2 mg/ml", + "2.38 wt%", + "300 mg/ml; 520 mg/ml; 72.3 mg/ml; 0.028 vol%", + "0.5 wt%", + "73.2 mg/ml", + "1.5 wt%", + "54 mol%; 30 mg/ml; 334 mol%", + "72.3 mg/ml; 1.7 vol%; 2.8 vol%", + "2.8 vol%mM; 1.85 vol%; 72.3 mg/ml; 2.9 vol%", + "8.67 mg/ml; 9.1 mg/ml; 72.3 mg/ml; 28.8 \u00b5l/ml", + "520 mg/ml; 83.2 mg/ml; 0.0338 vol%", + "0.175 vol%; 80 mg/ml; 0.285 vol%", + "1.5 wt% | 2 mg/ml >> 2 mg/ml", + "9.1 mg/ml; 72.5 mg/ml; 0.028 mg/ml", + "6 mg/ml", + "15 mg/ml", + "520 mg/ml; 36 mg/ml; 0.036 vol%", + "1 mg/ml; 1 mg/ml", + "9 mM; 68 mM; 55 mM", + "1.5 mg/ml", + "20 mg/ml; 170 mg/ml; 34.78 vol%", + "50 mg/ml", + "32 mM; 15 mg/ml; 28.5 \u00b5l/ml", + "72.3 mg/ml; 1.75 vol%; 3.1 vol%", + "72 mg/ml", + "97 mg/ml", + "30 mM; 72.3 mg/ml; 200 mM", + "15.08 mg/ml; 9.1 mg/ml; 72.3 mg/ml; 28.8 \u00b5l/ml", + "1 mM", + "6.24 mg/ml; 72 mg/ml; 8 \u00b5l/ml", + "0.005 vol%; 0.995 vol%", + "5 mg/ml; 520 mg/ml; 0.036 vol%; 36 mg/ml", + "9.1 mg/ml; 72.3 mg/ml; 28.8 \u00b5l/ml | 9.1 mg/ml; 2 wt%; 72.3 mg/ml; 28.8 \u00b5l/ml", + "20 mg/ml; 6.8 vol%; 3.4 vol%" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_concentrations", + "description": "The concentration of the non-solvent precursor chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the concentrations associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated concentrations and separate them with semicolons, as in (A; B)\n- The order of the compounds must be the same as in the previous filed.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used. When possible, use one of the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml, wt%, mol%, vol%, ppt, ppm, ppb\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n0.2 M; 0.15 M| 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "0.02", + "0.045", + "33.0", + "0.0175; 0.9537; 0.0288", + "0.029; 0.0175; Unknown; 0.288", + "0.03; 0.94; 0.03", + "1.0; 0.015; 0.008", + "0.0088; 0.0144", + "0.05", + "Unknown", + "0.065", + "0.95; 0.0075; 0.004", + "0.035", + "0.018; 0.018; 0.936; 0.028", + "1.3", + "1.5", + "0.006; 0.0175; 0.9485; 0.028", + "1.7", + "0.06", + "19.0; 7.0; 8.0; 0.2 | 33.33", + "0.0175; Unknown; 0.0285", + "1.0", + "0.0075; 0.47; 0.0169", + "0.0175; 0.95; 0.0288", + "0.018; 0.94; 0.028; 0.018", + "0.018; Unknown; 0.028", + "0.0175; 0.028", + "0.92; 0.029; 0.0175; 0.0288" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_volumes", + "description": "The volume of the reaction solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the volumes associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The volumes refer the volumes used, not the volume of the stock solutions. Thus if 0.15 ml of a solution is spin-coated, the volume is 0.15 ml\n- For reaction steps without solvents, state the volume as \u2018nan\u2019\n- When volumes are unknown, state that as \u2018nan\u2019\nExample\n0.1\n0.1 >> 0.05 | 0.05\nnan | 0.15", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "48.0", + "Unknown", + "0.33", + "10.0", + "0.0167", + "4.0", + "2.0", + "4.0 | 0.0", + "24.0", + "3.0", + "0.5" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_age", + "description": "The age of the solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the age of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- As a general guideline, the age refers to the time from the preparation of the final precursor mixture to the reaction procedure.\n- When the age of a solution is not known, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state this as \u2018nan\u2019\n- For solutions that is stored a long time, an order of magnitude estimate is adequate.\nExample\n2\n0.25 |1000 >> 10000\nnan | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "70; 25", + "25", + "Unknown", + "70 | 25", + "90", + "60; 25", + "50", + "25 | Unknown", + "70 | Unknown", + "70", + "60", + "24", + "25 | 25" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_temperature", + "description": "The temperature of the reaction solutions.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a reaction solution undergoes a temperature program, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons, e.g. 25; 100\n- When the temperature of a solution is unknown, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state the temperature of the gas or the solid if that make sense. Otherwise state this as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume an undetermined room temperature to be 25\nExample\n25\n100; 50 | 25\nnan | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "25", + "Unknown", + "25 | 15", + "120 | 25", + "25 | 25 >> 25", + "120", + "25 >> 100", + "25 | 25 >> 25 >> 25", + "25 | 25 >> 25 >> 25 >> 25 >> 25", + "25 | 25 >> 25 >> 25 >> 25", + "25 | 25", + "21" + ] + } + } + ] + }, + "name": "deposition_substrate_temperature", + "description": "The temperature of the substrate.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the substrates (i.e. the last deposited layer) associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The temperature of the substrate refers to the temperature when the deposition of the layer is occurring.\n- If a substrate undergoes a temperature program before the deposition, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- When the temperature of a substrate is not known, state that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume that an undetermined room temperature is 25\nExample\n25\nnan\n125; 325; 375; 450 | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "25", + "550", + "25 >> 80", + "300", + "475", + "13 | Unknown", + "18 | Unknown", + "160", + "25 >> 550", + "140 | 100", + "5", + "600", + "140 | 100 >> 100 >> 100 >> 100", + "650", + "5 | 0", + "25 >> 250", + "70", + "325", + "75; 120; 300", + "25 | 25", + "400", + "80", + "200", + "140 | 100 >> 100 >> 100 >> 100 >> 100", + "Unknown", + "130 | 60", + "100", + "130", + "120", + "500", + "150", + "235 | 15", + "165", + "100 | 100", + "110.0", + "60", + "25 | 55", + "25 >> 650", + "120 | 150", + "150 | Unknown", + "30 | Unknown", + "90", + "100 >> 100", + "100 | 25", + "25 >> 450", + "12 | Unknown", + "95", + "235", + "145", + "450", + "7 | Unknown", + "125", + "135", + "140 | 100 >> 100", + "235 | 25", + "300 | 120", + "140", + "25; 100", + "350", + "140 | 100 >> 100 >> 100", + "25 >> 100", + "11 | Unknown", + "50", + "120 | 60", + "9 | Unknown", + "15 | Unknown", + "130 | 25", + "200.0" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_temperature", + "description": "The temperatures of the thermal annealing program associated with depositing the layers\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing temperatures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- If no thermal annealing is occurring after the deposition of a layer, state that by stating the room temperature (assumed to 25\u00b0C if not further specified)\n- If the thermal annealing program is not known, state that by \u2018nan\u2019\nExample\n25\n50 | nan\n450 | 125; 325; 375; 450 >> 125; 325; 375; 450", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "40.0", + "10.0 | 5.0 >> 5.0 >> 5.0", + "10.0 | 5.0 >> 5.0 >> 5.0 >> 5.0 >> 5.0", + "10.0", + "5.0", + "60.0", + "45.0 | 0.0", + "12.0", + "Unknown", + "5.0 >> 2.0", + "120.0", + "45.0", + "10.0 | 0.0", + "15.0 | 25.0", + "10.0 | 5.0", + "30.0", + "10.0 | 10.0", + "0.0 >> 30.0", + "Unknown | 25.0", + "30.0; 30.0", + "10.0; 15.0; 60.0", + "10.0 | Unknown", + "60.0 | 15.0", + "10.0 | 5.0 >> 5.0 >> 5.0 >> 5.0", + "15.0 | 5.0", + "1.0", + "25.0", + "20.0", + "20.0 | 10.0", + "10.0 | 5.0 >> 5.0", + "2.0 | 2.0", + "15.0" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_time", + "description": "The time program associated to the thermal annealing program.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing times associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the associated times at those temperatures and separate them with semicolons.\n- The annealing times must align in terms of layers\u00b8 reaction steps and annealing temperatures in the previous filed.\n- If a time is not known, state that by \u2018nan\u2019\n- If no thermal annealing is occurring after the deposition of a layer, state that by \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 20 and not 10-30.\nExample\nnan\n60 | 1000\n30 | 5; 5; 5; 30 >> 5; 5; 5; 30", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Dry air", + "Unknown", + "Air | Vacuum", + "Air | N2", + "Air", + "Ambient", + "N2", + "Ambient | Ar", + "O2", + "Vacuum", + "N2 >> N2", + "Air | Air", + "N2 | N2", + "Ar | Ar", + "Ar" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_atmosphere", + "description": "The atmosphere during thermal annealing\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each annealing step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the atmosphere is a mixture of different gases, i.e. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas.\n- This is often the same as the atmosphere under which the deposition is occurring, but not always.\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nVacuum | N2\nAir | Ar >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "12.0", + "Unknown", + "20.0", + "24.0", + "4.0", + "15.0" + ] + } + } + ] + }, + "name": "storage_time_until_next_deposition_step", + "description": "The time between the HTL stack is finalised and the next layer is deposited\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Dry air", + "Unknown", + "Air", + "Ambient", + "Vacuum", + "N2", + "O2" + ] + } + } + ] + }, + "name": "storage_atmosphere", + "description": "The atmosphere in which the sample with the finalised HTL stack is stored until the next deposition step.\nExample\nAir\nN2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "20.0", + "10.0" + ] + } + } + ] + }, + "name": "storage_relative_humidity", + "description": "The relive humidity under which the sample with the finalised HTL stack is stored until next deposition step\n- If there are uncertainties, only state the best estimate, e.g write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Plasma", + "Ar plasma", + "Ozone", + "UV-Ozone", + "He plasma", + "Washed with methanol", + "IPA dipping", + "DMF" + ] + } + } + ] + }, + "name": "surface_treatment_before_next_deposition_step", + "description": "Description of any type of surface treatment or other treatment the sample with the finalised HTL stack undergoes before the next deposition step.\n- If more than one treatment, list the treatments and separate them by a double forward angel bracket (\u2018 >> \u2018)\n- If no special treatment, state that as \u2018none\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nnone\nAr plasma\nUV-ozone", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "Backcontact", + "description": "A section to describe information related to the back contact of the solar cell.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Au | ITO", + "rGO | Au", + "MoO3 | Ag | WO3", + "Carbon; WO3-np", + "ITO | MgF2", + "Al | Al2O3", + "Ag | Alq3", + "AgAu", + "MoOx | Ag", + "Carbon-nt; PCBM-60", + "ITO", + "AgAl", + "Cr | Cu", + "AgZn | Al", + "Mo | Ag", + "Cu-CFN", + "Field's metal", + "Al | Ag", + "Ag-nw | ZnO-np", + "Carbon; NiS", + "PEDOT:PSS | PDMS", + "Carbon; Graphite; PANI", + "MoOx | Au", + "Ni-grid", + "GaIn", + "Cu", + "Ag | MoO3", + "CNTs", + "none", + "MoOx | Al", + "MWCNTs; ONC1", + "Cu | Au", + "Cr | Au", + "MoOx | Au | Cu | MoOx", + "Pt-sheet", + "MoO3 | Ag", + "Carbon | IPA", + "KIPIG", + "T-MWCNTs", + "AZO", + "CSCNT@SnO2", + "B-MWCNTs", + "Carbon black | Carbon", + "Ag | SiO2 | ZnS | Ag | ZnS", + "Carbon-nt | PMMA", + "MoO3 | Ag | MoO3", + "PEDOT:PSS | Graphene", + "Pb", + "ITO | SLG", + "Carbon; NiO:rGO", + "Carbon; NiO", + "NiO", + "Cu; Cu2O", + "Graphene | PDMS", + "Carbon black; Graphite", + "N-Graphene", + "CuPc | Carbon", + "Carbon", + "Carbon-paper", + "Au | Al", + "Carbon; WO2-np", + "FTO", + "CNTs | Mxene", + "Graphite | Cu-tape", + "H2PtCl6", + "PTAA | FTO | SLG", + "PEI | PEDOT:PSS | PDMS", + "Bi2Te3", + "Pt", + "Carbon-nw", + "Cu | Ag | MoO3", + "MoO2 | ITO", + "Ca | Al", + "AZO | Ni | Al | Ni", + "MoOx | Cu", + "Carbon-tape", + "Carbon | Au", + "Carbon | CuSCN", + "PEDOT:PSS | Al", + "TFSA-Graphene | PET | Ag", + "ITO | Ag-grid", + "Ca", + "Mo2O3 | Ag", + "SnO2-c | Ag | SnO2-c", + "Candle soot | FTO | SLG", + "MoOx | IZO", + "Au | Ag-nw", + "Au", + "TETA-Graphene | PET", + "W", + "Transparent Conductive Adhesive | PET:Ni mesh", + "Graphene | PMMA | PDMS", + "MoO3 | Au | MoO3", + "Au | LiF", + "MoO3 \u2223 ITO", + "Au-np", + "Mg | Al", + "Carbon | Ag", + "TETA-Graphene | PET | Ag", + "Graphite | Cu", + "Ag-nw", + "Ni", + "Na@Carbon-nanowalls", + "Carbon black", + "Au | Organosilicate", + "AZO-c", + "Carbon; NiO-np", + "Ag", + "Ag | FTO", + "IZTO", + "ITO | MWCNTs", + "Ag-nw | PCBM-60", + "PEDOT:PSS | PEDOT:PSS | PDMS", + "Carbon | FTO | SLG", + "SWCNTs", + "Cr", + "IZO | Ag", + "FTO | SLG", + "Graphite | FTO", + "AZO | Ni | Al", + "Pd", + "Carbon | FAAc", + "Carbon black; Carbon-nt; Graphite", + "Carbon black; Graphite | MWCNTs", + "TeO2 | Ag", + "Au | MoO3", + "AZO | NiAl", + "Bi | Au", + "Carbon; MAI | Carbon", + "NiO | Ag | NiO", + "MoO3 | ITO | MgF2", + "PH 1000", + "Ag | ITO | Ag", + "ITO | LiF", + "Ag | IZO", + "LiF | Al", + "H:MoO3-nanobelts", + "Carbon | CNTs", + "Ti | Au", + "Carbon | Al", + "MoOx | Au | MoOx", + "Ag-sheet", + "TFSA-Graphene | PET", + "Graphene | PET", + "Graphene | PEDOT", + "MoOx | Ag | MoOx", + "MoO3 | AuAg | MoO3", + "Carbon | Carbon-fibre", + "MoO3 | Au | Ag", + "Ba | Ag", + "Graphen", + "Mg | Ag", + "Carbon | MAAc", + "MoO3 | Au", + "MoOx | ITO", + "Graphite | Pt", + "MWCNTs; ONC2", + "IZO", + "Ag | Ni", + "PANI | FTO | SLG", + "Al | Au", + "MoO3 \u2223 Au \u2223 Ag \u2223 MoO3 | Alq3", + "PEDOT:PSS | Ag-nw | PDMS", + "MWCNTs", + "Cr | Pt | FTO", + "SnO2-c | Ag", + "Carbon | Sn", + "Unknown", + "Carbon; PEMA", + "Carbon | Graphite", + "MoP3 | Ag", + "Ag | Ta2O3", + "Cr2O3:Cr", + "Graphene | Au", + "PEDOT:PSS | FTO | SLG", + "Carbon | CNTs | Mxene", + "AlAg", + "AZO | Au", + "AV-Carbon; MAI", + "Graphite; Carbon black@5:1", + "NiO | Ag | NiO | NaYF4 | Ag", + "AV-carbon; MAI", + "SWCNTs | PMMA", + "Ba | Al", + "Pt-Carbon-nt", + "Sb", + "Carbon-epoxy | Ag", + "ITO | Ni | Al", + "Ni | Al", + "Ag | V2O5", + "Pt | FTO | SLG", + "PEDOT:PSS | ITO | SLG", + "Graphene", + "Cu | Au | BCP", + "IZO | Au", + "Au | Ni", + "Au | ITO | Au", + "MoO3 | AZO | AlNi-grid", + "WO3 | Ag", + "Au | Ag", + "SnO2-c | Cu | SnO2-c", + "Carbon | FTO", + "CSCNT@Al2O3-c | CSCNT@SnO2", + "Ti", + "Carbon-nt", + "AZO-np | Ag", + "Carbon; NiPt-nw", + "D-Sorbito; PEDOT:PSSl | Ag-nw | PET", + "Carbon; LPP", + "MoOx | Cu | MoOx", + "PEDOT:PSS | ITO | PET", + "In", + "Carbon-nanowalls", + "NiS | Cr | Pt | FTO | SLG", + "Ag | ITO", + "Ca | Ag", + "Ag-nw | C60", + "MoOx | Ag | ZnS", + "Au | FTO", + "Pt | Si", + "Al", + "Ag@Au-np", + "Graphite", + "PEDOT:PSS:PSA", + "MnO3 | Ag", + "AgAu-mp", + "ITO | Al", + "Ag | SnO2-c", + "ICO", + "Ti-grid", + "ITO | Au", + "MoO3 | Au | Ag | MoO3 | Alq3", + "Au-np; NiO", + "Carbon-nt | Carbon", + "MoOx | ITO | Au", + "PEDOT:PSS; Sorbitol | Ag-grid | PET", + "MoO3 | ITO", + "Pt | FTO", + "MoOx | IO | ITO | Au", + "Carbon | Galinstan", + "P3HT | FTO | SLG", + "ITO | Ag", + "Ni | Au", + "Ag | Au", + "SWCNTs | Ag", + "Ag | Al", + "MoOx | IAI", + "Cu | Ag", + "Perovskite | PEDOT:PSS | ITO | SLG", + "Graphene oxide | Carbon", + "Ag-nanocubes | Ag | MoO3", + "MoO3 | IZO", + "Carbon-mp", + "MoOx | ITO | MgF2", + "NbS2", + "MoO3 | Al", + "Ti3C2", + "MWCNTs; ONC3", + "Carbon | PEDOT:PSS | FTO | SLG", + "MoOx | IZO | Au", + "LiF | Ag", + "ITO | Au-grid", + "PEDOT:PSS", + "3D potassium-ion preintercalated graphene (KIPIG)", + "PEI | PH 1000", + "Filed's metal", + "Ti | Cu", + "Au | Au-wire", + "AlNi-grid", + "Carbon-nt | PMMA | Au", + "ITO | PEN", + "Carbon black; MWCNTs", + "Carbon | Silica gel electrolyte | Carbon", + "CSCNT@Al2O3-c | CSCNT", + "Ag-np | ITO", + "Carbon; MAI", + "PTCBI | Ag | WO3 | PTCBI | Ag", + "Carbon | KAc", + "Ag | CsF", + "Liq | Al", + "Graphite | FTO | SLG", + "Cu-ribbon", + "ITO | Cu", + "Mo", + "Metal", + "AZO | Ag | AZO", + "Graphite ribbon", + "Pt-np | FTO | SLG", + "Carbon | CsAc" + ] + } + } + ] + }, + "name": "stack_sequence", + "description": "The stack sequence describing the back contact.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- If no back contact, state that as \u2018non\u2019\n- Use common abbreviations when appropriate but spell it out if risk for confusion.\n- If a material is doped, or have an additive, state the pure material here and specify the doping in the columns specifically targeting the doping of those layers.\n- There is no sharp well-defined boundary between when a material is best considered as doped or as a mixture of two materials. When in doubt if your material is best described as doped or as a mixture, use the notation that best capture the metaphysical essence of the situation.\n- There are a lot of stack sequences described in the literature. Try to find your one in the list. If it is not there (i.e. you may have done something new) define a new stack sequence according to the instructions.\nExample:\nAu\nAg\nAl\nCarbon\nMoO3 | Ag", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "89.0", + "90.0", + "40.0 | 11.0", + "5.0 | 130.0", + "50.0", + "70.0 | 10.0 | 10.0", + "220.0", + "230.0 | 100.0", + "81.0", + "180.0", + "45.0", + "15.0 | 80.0", + "14000.0", + "50.0 | 4000.0", + "7.0 | 80.0", + "24.0 | 15.0 | 20.0 | 480.0 | 8.0", + "10.0 | 100.0 | 200.0", + "203.0", + "10.0 | 120.0 | 70.0", + "11.0 | 30.0", + "1.0 | 200.0", + "30.0 | 120.0 | nan", + "60.9", + "11000.0 | nan", + "1.3 | 100.0", + "300.0 | 250.0", + "2.0 | 1.0 | 7.0 | 5.0 | 50.0", + "15.0 | 150.0", + "60.4", + "35.0 | 103.0 | 35.0", + "2.5 | 154.0", + "6.0 | 11.0 | 20.0", + "1800.0", + "22000.0", + "11.0 | 50.0", + "60.5", + "95.0", + "20.0 | 10.0 | 20.0", + "10.0 | 110.0", + "20.0 | 14.0", + "87.0", + "10.0 | 90.0", + "70.0", + "12.0 | 40.0", + "21.0 | 250.0", + "11.0", + "500.0", + "2000.0 | nan", + "5.0 | nan", + "53150.0", + "2000.0", + "20.0 | 15.0 | 20.0 | 480.0 | 8.0", + "10.0 | 80.0", + "1.0 | 7.0 | 40.0", + "21.0 | 15.0 | 20.0 | 480.0 | 8.0", + "8.0 | 120.0", + "5.0 | 150.0", + "nan | 6.0 | nan", + "61210.0", + "260.0", + "201.0", + "3.0 | 1.0 | 7.0 | 5.0 | 50.0", + "2.0 | 100.0", + "7.0 | 60.0", + "100.0 | 1000.0", + "16500.0 | nan", + "10.0 | 15.0 | 30.0", + "240.0", + "7.2 | 70.0", + "50.0 | 50.0", + "11.0 | nan", + "9.0 | nan", + "35.0 | 95.0 | 35.0", + "330.0", + "10.0 | 30000.0", + "60.3", + "85.0", + "60.1", + "130.0 | 100.0", + "2.5 | 154.0 | 50.0", + "nan | 150.0", + "15.0 | 12.0", + "10.0 | 70.0", + "9.0", + "15.0 | 12.0 | 60.0", + "150.0 | 500.0", + "8.0", + "0.5 | 60.0", + "10.0 | 200.0", + "13.0", + "7.0 | 12.0 | 30.0", + "820.0", + "1.0 | 6.0", + "nan | 80.0", + "13.0 | 80.0", + "25.0 | 15.0 | 20.0 | 480.0 | 8.0", + "2.0 | 250.0", + "93.2", + "500.0 | 150.0", + "5000.0", + "20.0", + "52.0", + "7.0 | 18.0 | 30.0", + "21.0 | 7.0 | 20.0", + "60.11", + "82.0", + "15.0 | 12.0 | 20.0", + "6.0 | 1.5 | 9.5 | 20.0", + "7870.0", + "8.0 | 20.0 | 115.0 | 8.0 | 20.0", + "30.0 | 120.0", + "30.0 | 80.0", + "10.0 | 20.0", + "14.0", + "8.0 | 20.0 | 65.0 | 8.0 | 20.0", + "80.0 | 10.0", + "2001.0 | nan", + "nan | 100.0", + "250.0", + "10.0 | 10.0", + "nan | 220.0", + "65.0", + "150.0", + "15.0 | 50.0", + "4000000000.0", + "15.0 | 200.0", + "46530.0", + "nan | 70.0", + "23.0 | 15.0 | 20.0 | 480.0 | 8.0", + "35.0 | 10.0 | 35.0", + "100000.0 | nan", + "88.0 | 700.0", + "5.0 | 12.0 | 40.0", + "1.0 | 250.0", + "8000.0 | nan", + "60.8", + "12000.0", + "15.0 | nan", + "60.7", + "nan | 25000.0", + "1.0 | 100.0", + "30.0 | 70.0", + "50000.0", + "30.0 | 135.0", + "8.0 | 200.0", + "35.0", + "180.0 | 50.0", + "30.0 | 7.0 | 80.0", + "750.0", + "32000.0", + "1.0 | nan", + "5.0 | 90.0", + "8.0 | 80.0", + "150.0 | 4900.0", + "90.0 | 200.0", + "51.0", + "22.0 | 15.0 | 20.0 | 480.0 | 8.0", + "4500.0", + "16000.0", + "24000.0", + "30000.0", + "10.0 | 60.0", + "12.0 | 100.0", + "7.0 | 120.0", + "9.0 | 100.0", + "6.7 | 100.0", + "154.0 | 50.0", + "25.0", + "10.0 | 202.0", + "20.0 | 10.0 | 35.0", + "80.0 | 20.0", + "40.0", + "65.0 | nan", + "83.0", + "11200.0", + "8.0 | 90.0", + "20.0 | 7.0 | 20.0", + "230.0", + "75.0", + "8.0 | 60.0", + "190.0", + "6.0 | 100.0", + "7.0 | 1.0", + "3.0 | nan", + "15000.0", + "35.0 | 84.0 | 35.0", + "60.6", + "9.0 | 80.0", + "nan | 400.0 | 500.0", + "10.0 | 40.0", + "145.0", + "nan | 50.0 | 4000.0", + "1500.0", + "100.0 | 125.0", + "2.0 | 200.0", + "28.0 | 15.0 | 20.0 | 480.0 | 8.0", + "7.0 | 70.0", + "60.0", + "125.0", + "5.0", + "40000.0", + "45.0 | nan", + "35.0 | 76.0 | 35.0", + "900.0", + "400.0", + "105.0 | 90.0", + "25000.0", + "8.0 | 30.0 | 100.0", + "180.0 | 100.0", + "2.0", + "20.0 | nan", + "80.0 | 150.0", + "30.0 | 100.0", + "11.0 | 10.0", + "5.0 | 120.0", + "4.0", + "1.0 | 10.0 | 20.0", + "14.0 | 20.0", + "15.0 | 40.0", + "40.0 | 120.0", + "20.0 | 250.0", + "600.0", + "nan | 200.0", + "12.0", + "12000.0 | nan", + "6.0 | nan", + "100.0", + "105.0", + "8.0 | 110.0", + "15.0 | 120.0", + "37500.0", + "23000.0 | nan", + "5.0 | 10.0 | 35.0", + "10.0 | 40.0 | nan", + "80.0 | 50.0", + "10000.0 | nan", + "8.0 | 20.0 | 85.0 | 8.0 | 20.0", + "28000.0", + "21000.0", + "48.0", + "9.0 | 25.0", + "4.0 | 80.0", + "15.0 | 100.0", + "96.0", + "3.0 | 80.0", + "200.0", + "70.0 | 10.0", + "4000.0 | nan", + "150.0 | nan", + "80.0 | 8.0", + "350.0", + "110.0 | 120.0", + "1.0 | 10.0 | 35.0", + "90.0 | 100.0", + "50.0 | 100.0", + "80000.0", + "10.0 | 120.0", + "202.0", + "200000.0", + "8000.0", + "35.0 | 120.0 | 70.0", + "160.0", + "10.0 | 55.0", + "3.5 | 100.0", + "2000.0 | 100.0 | nan", + "10.0 | 150.0", + "25.0 | 100.0", + "12.0 | 80.0", + "5.0 | 10.0 | 40.0", + "170.0", + "35.0 | 64.0 | 35.0", + "1500-2000", + "55.0", + "9000.0", + "6.0", + "4900.0", + "10.0 | 100.0 | 10.0 | 100.0", + "100.0 | 20.0", + "20.0 | 100.0", + "7.0 | nan", + "34.0 | 20.0 | 25.0 | nan | 8.0", + "3333.0", + "2.5 | 80.0", + "20.0 | 80.0", + "18.0 | 10.0 | 19.0", + "150.0 | 100.0", + "5.0 | 60.0", + "6.0 | 10.0 | 35.0", + "3500.0", + "550.0", + "15.0", + "12500.0", + "35.0 | 120.0", + "8.0 | 100.0", + "7.0 | 24.0 | 30.0", + "300.0", + "11.0 | 80.0", + "50.0 | 101.0", + "185.0", + "71600.0", + "77.0 | nan", + "5.0 | 100.0", + "120.0", + "88.0", + "130.0", + "3000.0", + "110.0", + "20.0 | 15.0", + "120000.0", + "300000.0", + "10.0 | 100.0", + "26.0 | 15.0 | 20.0 | 480.0 | 8.0", + "11000.0", + "6500.0", + "1000.0", + "5.0 | 10.0 | 5.0", + "10.0 | 1.0 | 10.0 | 40.0", + "34.0 | 20.0 | 55.0 | nan | 15.0", + "6.3 | 70.0", + "60000.0", + "100.0 | 100.0", + "10.0 | 35.0", + "1200.0", + "60.2", + "390.0", + "10.0", + "11.0 | 20.0", + "25800.0", + "35.0 | 160.0", + "35.0 | 53.0 | 35.0", + "30.0 | nan", + "1.0 | 120.0", + "120.0 | 70.0", + "20000.0", + "5.0 | 20.0 | 35.0", + "210.0", + "2500.0", + "5.0 | 300.0", + "5.0 | 80.0", + "10.0 | 10.0 | 35.0", + "800.0", + "1.9 | 70.0", + "1.45 | nan", + "9.0 | 110.0", + "40.0 | 4000.0", + "3.0 | 100.0", + "20.0 | 14.0 | 20.0", + "15.0 | 350.0", + "53.0", + "70.0 | 30.0", + "250.0 | 50.0 | 1000.0", + "86.0", + "1600.0", + "3.0 | 200.0", + "7000.0", + "97.0", + "30.0", + "6.0 | 60.0", + "7.0 | 100.0", + "3.0 | 150.0", + "10.0 | nan | nan", + "10.0 | 75.0", + "10.0 | 50.0", + "70000.0", + "9600.0", + "140.0", + "50.0 | 120.0", + "100.0 | nan", + "80.0", + "nan | 5.0", + "27.0 | 15.0 | 20.0 | 480.0 | 8.0", + "80.0 | 80.0", + "6.0 | 80.0", + "13000.0", + "35.0 | 88.0 | 35.0", + "4000.0", + "100000.0", + "60.0 | 40.0", + "84.0", + "16.0", + "10.0 | 201.0", + "10000.0", + "34.0 | 20.0 | 75.0 | nan | 35.0", + "10.0 | 8.5 | 10.0" + ] + } + } + ] + }, + "name": "thickness_list", + "description": "A list of thicknesses of the individual layers in the stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous filed.\n- State thicknesses in nm\n- Every layer in the stack have a thickness. If it is unknown, state this as \u2018nan\u2019\n- If there are uncertainties, state the best estimate, e.g write 100 and not 90-110\nExample\n100\n10 | 80\nnan | 100", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Undoped | Undoped", + "TiO2-np", + "Undoped | Undoped | Undoped | Undoped | Undoped", + "B; P", + "C; NiO", + "B4C", + "WO3-np", + "P", + "B", + "Undoped", + "CuS" + ] + } + } + ] + }, + "name": "additives_compounds", + "description": "List of the dopants and additives that are in each layer of the HTL-stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous fields.\n- If several dopants/additives, e.g. A and B, are present in one layer, list the dopants/additives in alphabetic order and separate them with semicolons, as in (A; B)\n- If no dopants/additives, state that as \u201cUndoped\u201d\n- If the doping situation is unknown, stat that as\u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template, even if to most common back contacts is undoped metals\nExample\nCuS\nB; P\nAu-np | Undoped", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "4; 1", + "10 wt%", + "2 wt%", + "7; 3", + "5 wt%", + "0.1 wt%", + "9; 1", + "3.5 wt%", + "7.5 wt%", + "8 wt%", + "6.5 wt%", + "0.5 wt%" + ] + } + } + ] + }, + "name": "additives_concentrations", + "description": "The concentration of the dopants/additives.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If more than one dopant/additive in the layer, e.g. A and B, separate the concentration for each dopant/additive with semicolons, as in (A; B)\n- For each dopant/additive in the layer, state the concentration.\n- The order of the dopants/additives must be the same as in the previous filed.\n- For layers with no dopants/additives, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used.\n- The preferred way to state the concentration of a dopant/additive is to refer to the amount in the final product, i.e. the material in the layer. When possible, use on the preferred units\no wt%, mol%, vol%, ppt, ppm, ppb\n- When the concentration of the dopant/additive in the final product is unknown, but where the concentration of the dopant/additive in the solution is known, state that concentration instead. When possible, use on the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n5 vol%; nan | 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | 0.3 M", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Evaporation | Evaporation | Evaporation | Evaporation", + "Doctor blading | Doctor blading | Doctor blading", + "Pressed", + "Spray-coating | Spray-coating", + "Spin-coating | Spin-coating", + "Electropolymerisation | Sandwiching", + "Brush painting", + "Evaporation | DC Sputtering", + "Screen printing | Lamination", + "Spin-coating | Evaporation", + "Sputtering | Sputtering | Sputtering", + "Evaporation | Spin-coating", + "Sputtering", + "Screen printing | Spray-coating", + "DC Sputtering", + "Evaporation | Sputtering | Sputtering", + "Evaporation | RF sputtering | E-beam evaporation", + "Doctor blading | Spin-coating", + "Dropp casting", + "Lamination | Lamination", + "RF sputtering | Evaporation | Evaporation", + "Evaporation | ALD", + "Inkjet printing", + "RF sputtering", + "E-beam evaporation | E-beam evaporation | E-beam evaporation | PVD | Evaporation", + "Sputtering | Spray-coating", + "Candle burning | Sandwiching", + "Brush painting | Brush painting", + "Evaporation | Evaporation", + "E-beam evaporation | E-beam evaporation | E-beam evaporation", + "CVD | Spin-coating >> reactive ion etching", + "Evaporation | Activated reactive evaporation", + "Spin-coating | Doctor blading", + "Sputtering | Sputtering", + "Drop coated", + "Sandwithcing", + "CVD >> Lamination", + "Unknown | Ultrasonic welding", + "Sputtering | Evaporation | Evaporation | Evaporation", + "Evaporation | Magnetron sputtering", + "Candel burning >> Sandwiching | Unknown | Unknown", + "Evaporation | RF magnetron sputtering", + "Candle burning | Lamination", + "ALD | Evaporation | ALD", + "Spray-pyrolys | Sandwiching", + "Spin-coating | Screen printing", + "Lamination | Spin-coating", + "Evaporation | DC Magnetron Sputtering", + "Lamination | Painting", + "Lamination", + "Doctor blading | Ultrasonic welding", + "Evaporation | Evaporation | Evaporation", + "Brush painting | Unknown", + "Evaporation | Sputtering", + "PVD", + "Dipp-coating", + "Screen printing >> Lamination", + "Springkling | Sandwiching", + "Magnetron sputtering | Magnetron sputtering", + "Sputtering | Lamination", + "Spin-coating | Sandwiching", + "Evaporation", + "Unknown", + "Unknown | Doctor blading", + "Evaporation | Magnetron sputtering | E-beam evaporation", + "Lamination | Evaporation", + "CVD", + "Lamination >> Isostatic pressing", + "ALD | Evaporation", + "Screen printing", + "Evaporation | Sputtering | Evaporation", + "Unknown | Evaporation", + "Evaporation | Sputtering | Sputtering | Evaporation", + "Doctor blading", + "Magnetron sputtering", + "Evaporation | Evaporation | Evaporation | Evaporation | Evaporation", + "RF Magnetron Sputtering", + "DC Sputtering | Evaporation", + "Candle burning >> Sandwiching", + "Dropcasting | Lamination", + "Lamination | Dropcasting", + "Electrospinning", + "Suttering", + "E-beam evaporation", + "Candle burning >> Lamination", + "Screen printing | Painting", + "Evaporation >> Evaporation >> Oxidation", + "Evaporation | E-beam evaporation | E-beam evaporation | E-beam evaporation | E-beam evaporation", + "DC Magnetron Sputtering | Evaporation", + "Sputtering >> Lamination", + "Evaporation | Sandwiching", + "Dropcasting", + "Pulsed laser deposition", + "DC Magnetron Sputtering", + "Screen printing | Unknown", + "E-beam evaporation | E-beam evaporation", + "Sputtering | Evaporation", + "Lamination | Spin-coating | Evaporation", + "Brush painting | Sandwiching", + "Spin-coating", + "Sputtering | E-beam evaporation | E-beam evaporation", + "Doctor blading | Doctor blading", + "Spray-coating", + "Spin-coating | Evaporation | Evaporation", + "Doctor blading | Sandwhiching", + "Sandwiching", + "Painting", + "Mechanical clipping", + "Evaporation | Spray-coating", + "Candel burning | Sandwiching", + "Doctor blading | Lamination", + "Screen printing | Screen printing", + "Evaporation | DC Magnetron Sputtering | E-beam evaporation" + ] + } + } + ] + }, + "name": "deposition_procedure", + "description": "The deposition procedures for the HTL-stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate them by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Thermal annealing is generally not considered as an individual reaction step. The philosophy behind this is that every deposition step has a thermal history, which is specified in a separate filed. In exceptional cases with thermal annealing procedures clearly disconnected from other procedures, state \u2018Thermal annealing\u2019 as a separate reaction step.\n- Please read the instructions under \u201cPerovskite. Deposition. Procedure\u201d for descriptions and distinctions between common deposition procedures and how they should be labelled for consistency in the database.\n- A few additional clarifications:\n- Lamination\no A readymade film is transferred directly to the device stack. A rather broad concept. An everyday kitchen related example of lamination would eb to place a thin plastic film over a slice of pie.\n- Sandwiching\no When a readymade top stack simply is placed on top of the device stack. Could be held together with clams. The typical example is a when a \u201cCarbon | FTO | SLG\u201d is placed on top of the device stack. Standard procedure in the DSSC filed.\nExample\nEvaporation\nEvaporation | Evaporation\nDoctor blading\nScreen printing\nSputtering\nLamination\nE-beam evaporation\nSandwiching", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Solid", + "Liquid", + "Unknown", + "Gas | Gas | Gas | Gas | Gas", + "Solid | Gas", + "Solid | Solid | Solid", + "Liquid | Gas | Gas", + "Liquid | Solid", + "Gas", + "Liquid >> Solid", + "Gas | Gas", + "Liquid | Gas" + ] + } + } + ] + }, + "name": "deposition_aggregation_state_of_reactants", + "description": "The physical state of the reactants.\n- The three basic categories are Solid/Liquid/Gas\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the aggregation state associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Most cases are clear cut, e.g. spin-coating involves species in solution and evaporation involves species in gas phase. For less clear-cut cases, consider where the reaction really is happening as in:\no For a spray-coating procedure, it is droplets of liquid that enters the substrate (thus a liquid phase reaction)\no For sputtering and thermal evaporation, it is species in gas phase that reaches the substrate (thus a gas phase reaction)\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nLiquid\nGas | Liquid\nLiquid | Liquid >> Liquid", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "N2 | Vacuum", + "Vacuum | Vacuum", + "Unknown", + "Air", + "Vacuum", + "Vacuum | Vacuum | Vacuum | Vacuum | Vacuum", + "Air | Vacuum | Vacuum", + "Air >> Air", + "Ar", + "Ar | O2" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere", + "description": "The synthesis atmosphere.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nVacuum\nVacuum | N2\nAir | Ar; H2O >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.0006 Pa", + "0.000009 mbar", + "0.0001 Torr", + "0.01 Torr", + "0.0000002 Torr", + "0.000005 mbar", + "0.000002 bar", + "0.0001 mbar", + "0.0001 Pa | 0.0001 Pa", + "0.0005 Pa", + "0.00001 mbar", + "0.0004 Pa", + "0.00005 Torr", + "0.0003 bar", + "0.0000019 Torr", + "0.1 Torr", + "0.000001 mbar", + "1 atm >> 0.2 MPa", + "0.0000001 Torr", + "0.00001 Pa", + "0.000001 bar", + "0.000000001 bar", + "0.000006 Torr", + "0.000007 Torr", + "1.2 mTorr", + "0.006 Torr", + "0.000004 Torr", + "10 E-7Torr", + "0.00005 mbar", + "0.00001 Torr", + "2 e-05", + "2 E-10Torr", + "0.00005 Pa", + "0.000008 bar", + "0.00000003 Torr", + "0.0001 Pa", + "0.000001 Torr", + "0.0002 Pa", + "0.0000048 Torr", + "0.000002 Torr", + "0.0003 Pa", + "0.00003 mbar", + "0.0000001 mbar", + "0.000002 mbar", + "1 atm", + "0.000005 Torr" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_pressure_total", + "description": "The total gas pressure during each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- Pressures can be stated in different units suited for different situations. Therefore, specify the unit. The preferred units are:\no atm, bar, mbar, mmHg, Pa, torr, psi\n- If a pressure is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 100 pa and not 80-120 pa.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 1 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.0001 mbar", + "0.0001 Pa | 0.0001 Pa", + "0.00001 mbar", + "0.0004 Pa", + "0.0003 bar", + "0.000001 mbar", + "1 atm >> 0.2 MPa", + "0.00001 Pa", + "0.000006 Torr", + "0.000007 Torr", + "0.006 Torr", + "0.000004 Torr", + "0.00001 Torr", + "0.000001 Torr", + "0.000002 Torr", + "0.00003 mbar", + "0.0003 Pa", + "0.0000001 mbar", + "0.000002 mbar", + "1 atm", + "0.000005 Torr" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_pressure_partial", + "description": "The partial pressures for the gases present during each reaction step.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the partial pressures and separate them with semicolons, as in (A; B). The list of partial pressures must line up with the gases they describe.\n- In cases where no gas mixtures are used, this field will be the same as the previous filed.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 0.99 atm; 0.01 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "25.0", + "30 >> 30", + "30.0", + "50 | nan | nan", + "50.0" + ] + } + } + ] + }, + "name": "deposition_synthesis_atmosphere_relative_humidity", + "description": "The relative humidity during each deposition step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the relative humidity associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns\n- If the relative humidity for a step is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 35 and not 30-40.\nExample\n35\n0 | 20\nnan >> 25 | 0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "none", + "Methanol | none | none", + "Ethyl cellulose; Terpineol", + "IPA | none", + "Ethyl cellulose; Terpineol | Unknown" + ] + } + } + ] + }, + "name": "deposition_solvents", + "description": "The solvents used in each deposition procedure for each layer in the stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvents associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the solvents in alphabetic order and separate them with semicolons, as in (A; B)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For non-liquid processes with no solvents, state the solvent as \u2018none\u2019\n- If the solvent is not known, state this as \u2018Unknown\u2019\n- Use common abbreviations when appropriate but spell it out when risk for confusion\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nnone\nAcetonitile; Ethanol | Chlorobenzene\nnone >> Ethanol; Methanol; H2O | DMF; DMSO", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "1", + "1 | 1", + "1 | nan | nan" + ] + } + } + ] + }, + "name": "deposition_solvents_mixing_ratios", + "description": "The mixing ratios for mixed solvents\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent mixing ratios associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For pure solvents, state the mixing ratio as 1\n- For non-solvent processes, state the mixing ratio as 1\n- For unknown mixing ratios, state the mixing ratio as \u2018nan\u2019\n- For solvent mixtures, i.e. A and B, state the mixing ratios by using semicolons, as in (VA; VB)\n- The preferred metrics is the volume ratios. If that is not available, mass or mol ratios can be used instead, but it the analysis the mixing ratios will be assumed to be based on volumes.\nExample\n1\n4; 1 | 1\n1 >> 5; 2; 0.3 | 2; 1", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Shanghai MaterWin New Material", + "Guangzhou Seaside Technology", + "Unknown" + ] + } + } + ] + }, + "name": "deposition_solvents_supplier", + "description": "The suppliers of all the solvents.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For non-liquid processes with no solvents, mark the supplier as \u2018none\u2019\n- If the supplier for a solvent is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nSigma Aldrich\nSigma Aldrich; Fisher | Acros\nnone >> Sigma Aldrich; Sigma Aldrich | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "deposition_solvents_purity", + "description": "The purity of the solvents used.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For non-liquid processes with no solvents, state the purity as \u2018none\u2019\n- If the purity for a solvent is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\nPuris; Puris| Tecnical\nnone >> Pro analysis; Pro analysis | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Al", + "Graphite", + "Mg | Ag", + "Carbon Paste", + "ITO", + "AgAl", + "Carbon | nan | nan", + "IZO", + "Au", + "Ag | Au", + "Cu", + "Ag | MoO3", + "Cu | Ag", + "Cr | Au", + "Ag-nanocubes | Ag | MoO3", + "Carbon | Ag", + "MoO3 | Al", + "Ag", + "IZTO", + "PEDOT:PSS", + "AZO", + "Adhesive; PEDOT:PSS | PET; Ni-mesh", + "PTCBI | Ag | WO3 | PTCBI | Ag", + "AZO-np | Ag", + "Carbon", + "PEDOT:PSS | Al" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds", + "description": "The non-solvent precursor chemicals used in each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemicals associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several compounds, e.g. A and B, list the associated compounds in alphabetic order and separate them with semicolons, as in (A; B)\n- Note that also dopants/additives should be included\n- When several precursor solutions are made and mixed before the reaction step, it is the properties of the final mixture used in the reaction we here describe.\n- The number and order of layers and reaction steps must line up with the previous columns.\n- For gas phase reactions, state the reaction gases as if they were in solution.\n- For solid-state reactions, state the compounds as if they were in solution.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- If the compounds for a deposition step is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nAu\nCuI\nAg", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "DongDaLai company", + "Unknown", + "Solaronix", + "Styccobond; Agfa | Epigem", + "Heraeus", + "Guangzhou Seaside Technology", + "Sigma Aldrich | Unknown", + "Sigma Aldrich", + "Ulet", + "Shanghai MaterWin New Materials Co., Ltd" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds_supplier", + "description": "The suppliers of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemical suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For gas phase reactions, state the suppliers for the gases or the targets/evaporation sources that are evaporated/sputtered/etc.\n- For solid state reactions, state the suppliers for the compounds in the same way.\n- For reaction steps involving only pure solvents, state the supplier as \u2018none\u2019 (as that that is entered in a separate filed)\n- For chemicals that are lab made, state that as \u201cLab made\u201d or \u201cLab made (name of lab)\u201d\n- If the supplier for a compound is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nDysole; Sigma Aldrich; Dyenamo; Sigma Aldrich\nSigma Aldrich; Fisher | Acros\nLab made (EPFL) | Sigma Aldrich >> none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "99.99" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_compounds_purity", + "description": "The purity of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the compound purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, i.e. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019 (as that is stated in another field)\n- If the purity for a compound is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\n99.999; Puris| Tecnical\nUnknown >> Pro analysis; Pro analysis | none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "57.2 wt%; 42.8 wt% | nan", + "8 mg/ml | nan" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_concentrations", + "description": "The concentration of the non-solvent precursor chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the concentrations associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated concentrations and separate them with semicolons, as in (A; B)\n- The order of the compounds must be the same as in the previous filed.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used. When possible, use one of the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml, wt%, mol%, vol%, ppt, ppm, ppb\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n0.2 M; 0.15 M| 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "15.0 | Unknown | Unknown", + "Unknown" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_volumes", + "description": "The volume of the reaction solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the volumes associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The volumes refer the volumes used, not the volume of the stock solutions. Thus if 0.15 ml of a solution is spin-coated, the volume is 0.15 ml\n- For reaction steps without solvents, state the volume as \u2018nan\u2019\n- When volumes are unknown, state that as \u2018nan\u2019\nExample\n0.1\n0.1 >> 0.05 | 0.05\nnan | 0.15", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_age", + "description": "The age of the solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the age of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- As a general guideline, the age refers to the time from the preparation of the final precursor mixture to the reaction procedure.\n- When the age of a solution is not known, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state this as \u2018nan\u2019\n- For solutions that is stored a long time, an order of magnitude estimate is adequate.\nExample\n2\n0.25 |1000 >> 10000\nnan | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "25", + "Unknown", + "25 | 25" + ] + } + } + ] + }, + "name": "deposition_reaction_solutions_temperature", + "description": "The temperature of the reaction solutions.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a reaction solution undergoes a temperature program, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons, e.g. 25; 100\n- When the temperature of a solution is unknown, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state the temperature of the gas or the solid if that make sense. Otherwise state this as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume an undetermined room temperature to be 25\nExample\n25\n100; 50 | 25\nnan | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "25", + "Unknown", + "15", + "100", + "100 | 25", + "60", + "40", + "22", + "25 | 25", + "80" + ] + } + } + ] + }, + "name": "deposition_substrate_temperature", + "description": "The temperature of the substrate.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the substrates (i.e. the last deposited layer) associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The temperature of the substrate refers to the temperature when the deposition of the layer is occurring.\n- If a substrate undergoes a temperature program before the deposition, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- When the temperature of a substrate is not known, state that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume that an undetermined room temperature is 25\nExample\n25\nnan\n125; 325; 375; 450 | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "25", + "350.0", + "85", + "120 >> 120", + "400", + "80", + "Unknown", + "450.0", + "100", + "120", + "450 | 25", + "60", + "250.0", + "60; 120", + "450", + "150.0", + "25; 100", + "100 | Unknown", + "550.0" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_temperature", + "description": "The temperatures of the thermal annealing program associated with depositing the layers\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing temperatures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- If no thermal annealing is occurring after the deposition of a layer, state that by stating the room temperature (assumed to 25\u00b0C if not further specified)\n- If the thermal annealing program is not known, state that by \u2018nan\u2019\nExample\n25\n50 | nan\n450 | 125; 325; 375; 450 >> 125; 325; 375; 450", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "40.0", + "Unknown", + "30.0", + "20.0", + "15.0; 5.0", + "100.0", + "30.0; 30.0", + "60.0", + "15.0 >> 5.0", + "10.0", + "10.0 | Unknown", + "15.0", + "30.0 | Unknown" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_time", + "description": "The time program associated to the thermal annealing program.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing times associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the associated times at those temperatures and separate them with semicolons.\n- The annealing times must align in terms of layers\u00b8 reaction steps and annealing temperatures in the previous filed.\n- If a time is not known, state that by \u2018nan\u2019\n- If no thermal annealing is occurring after the deposition of a layer, state that by \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 20 and not 10-30.\nExample\nnan\n60 | 1000\n30 | 5; 5; 5; 30 >> 5; 5; 5; 30", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "Air", + "Vacuum", + "N2", + "Air >> Air" + ] + } + } + ] + }, + "name": "deposition_thermal_annealing_atmosphere", + "description": "The atmosphere during thermal annealing\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each annelaing step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the atmosphere is a mixture of different gases, i.e. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas.\n- This is often the same as the atmosphere under which the deposition is occurring, but not always.\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nVacuum | N2\nAir | Ar >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "24.0" + ] + } + } + ] + }, + "name": "storage_time_until_next_deposition_step", + "description": "The time between the back contact is finalised and the next layer is deposited\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.\n- If this is the last layer in the stack, state this as \u2018nan\u2019", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Dry air", + "N2", + "Unknown", + "Air" + ] + } + } + ] + }, + "name": "storage_atmosphere", + "description": "The atmosphere in which the sample with the finalised back contact is stored until the next deposition step or device performance measurement\nExample\nAir\nN2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "5.0", + "10", + "10.0" + ] + } + } + ] + }, + "name": "storage_relative_humidity", + "description": "The relive humidity under which the sample with the finalised back contact is stored until the next deposition step or device performance measurement\n- If there are uncertainties, only state the best estimate, e.g write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "EDA gas", + "DEDA gas", + "MEA immersion >> 125C 20 min", + "TETA gas" + ] + } + } + ] + }, + "name": "surface_treatment_before_next_deposition_step", + "description": "Description of any type of surface treatment or other treatment the sample with the finalised back contact is stored until the next deposition step or device performance measurement\n- If more than one treatment, list the treatments and separate them by a double forward angel bracket (\u2018 >> \u2018)\n- If no special treatment, state that as \u2018none\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nnone\nAr plasma\nUV-ozone", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "Add", + "description": "A section to describe **additional layers** present in the device besides the *Substrate*, *ETL*, *Perovskite*, *HTL* and *back contact*.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "lay_front", + "description": "TRUE if there is a functional layer below the substrate, i.e. on the opposite side of the substrate from with respect to the perovskite.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Antireflection", + "Unknown", + "Down conversion", + "A.R.C.", + "Light management" + ] + } + } + ] + }, + "name": "lay_front_function", + "description": "The function of the additional layers on the substrate side\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If a layer has more than one function, e.g. A and B, list the functions in order and separate them with semicolons, as in (A; B)\nExample:\nA.R.C.\nBack reflection\nDown conversion\nEncapsulation\nLight management\nUpconversion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "ZnSe-QDs", + "N-Graphene-QDs", + "Ag-np", + "Moth eye PDMS", + "Polyimide", + "PDMS", + "Unknown", + "NaYF4:Eu-np", + "NaF", + "Eu(TTA)2(Phen)MAA", + "MgF2", + "Y2O3:Eu3", + "CdSeS-QDs", + "Y2O3:Eu3 | Au-np", + "Mica", + "Eu-complex LDL", + "textured antireflective foil", + "Phosphor-in-glass", + "INVAR", + "Mn:CsPbCl3-QDs", + "LiF" + ] + } + } + ] + }, + "name": "lay_front_stack_sequence", + "description": "The stack sequence describing the additional layers on the substrate side\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- Use common abbreviations when appropriate but spell it out if risk for confusion.\n- There are separate filed for doping. Indicate doping with colons. E.g. wither aluminium doped NiO-np as Al:NiO-np\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nMgF2\nAu-np\nNaYF4:Eu-np", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "90.0", + "100.0", + "50.0", + "80.0" + ] + } + } + ] + }, + "name": "lay_front_thickness_list", + "description": "A list of thicknesses of the individual layers in the stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous filed.\n- State thicknesses in nm\n- Every layer in the stack have a thickness. If it is unknown, state this as \u2018nan\u2019\n- If there are uncertainties, state the best estimate, e.g write 100 and not 90-110\nExample\n200\nnan |250\n100 | 5 | 8", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_additives_compounds", + "description": "List of the dopants and additives that are in each layer of the HTL-stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous fields.\n- If several dopants/additives, e.g. A and B, are present in one layer, list the dopants/additives in alphabetic order and separate them with semicolons, as in (A; B)\n- If no dopants/additives, state that as \u201cUndoped\u201d\n- If the doping situation is unknown, stat that as\u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template, even if to most common back contacts is undoped metals\nExample\nCuS\nB; P\nAu-np | Undoped", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_additives_concentrations", + "description": "The concentration of the dopants/additives.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If more than one dopant/additive in the layer, e.g. A and B, separate the concentration for each dopant/additive with semicolons, as in (A; B)\n- For each dopant/additive in the layer, state the concentration.\n- The order of the dopants/additives must be the same as in the previous filed.\n- For layers with no dopants/additives, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used.\n- The preferred way to state the concentration of a dopant/additive is to refer to the amount in the final product, i.e. the material in the layer. When possible, use on the preferred units\no wt%, mol%, vol%, ppt, ppm, ppb\n- When the concentration of the dopant/additive in the final product is unknown, but where the concentration of the dopant/additive in the solution is known, state that concentration instead. When possible, use on the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n5 vol%; nan | 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | 0.3 M", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Evaporation", + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_procedure", + "description": "The deposition procedures for the HTL-stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate them by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Thermal annealing is generally not considered as an individual reaction step. The philosophy behind this is that every deposition step has a thermal history, which is specified in a separate filed. In exceptional cases with thermal annealing procedures clearly disconnected from other procedures, state \u2018Thermal annealing\u2019 as a separate reaction step.\n- Please read the instructions under \u201cPerovskite. Deposition. Procedure\u201d for descriptions and distinctions between common deposition procedures and how they should be labelled for consistency in the database.\n- A few additional clarifications:\n- Lamination\no A readymade film is transferred directly to the device stack. A rather broad concept. An everyday kitchen related example of lamination would eb to place a thin plastic film over a slice of pie.\n- Sandwiching\no When a readymade top stack simply is placed on top of the device stack. Could be held together with clams. The typical example is a when a \u201cCarbon | FTO | SLG\u201d is placed on top of the device stack. Standard procedure in the DSSC filed.\nExample\nEvaporation\nEvaporation | Evaporation\nDoctor blading\nScreen printing\nSputtering\nLamination\nE-beam evaporation\nSandwiching", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_aggregation_state_of_reactants", + "description": "The physical state of the reactants.\n- The three basic categories are Solid/Liquid/Gas\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the aggregation state associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Most cases are clear cut, e.g. spin-coating involves species in solution and evaporation involves species in gas phase. For less clear-cut cases, consider where the reaction really is happening as in:\no For a spray-coating procedure, it is droplets of liquid that enters the substrate (thus a liquid phase reaction)\no For sputtering and thermal evaporation, it is species in gas phase that reaches the substrate (thus a gas phase reaction)\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nLiquid\nGas | Liquid\nLiquid | Liquid >> Liquid", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_synthesis_atmosphere", + "description": "The synthesis atmosphere.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nVacuum\nVacuum | N2\nAir | Ar; H2O >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_deposition_synthesis_atmosphere_pressure_total", + "description": "The total gas pressure during each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- Pressures can be stated in different units suited for different situations. Therefore, specify the unit. The preferred units are:\no atm, bar, mbar, mmHg, Pa, torr, psi\n- If a pressure is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 100 pa and not 80-120 pa.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 1 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_deposition_synthesis_atmosphere_pressure_partial", + "description": "The partial pressures for the gases present during each reaction step.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the partial pressures and separate them with semicolons, as in (A; B). The list of partial pressures must line up with the gases they describe.\n- In cases where no gas mixtures are used, this field will be the same as the previous filed.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 0.99 atm; 0.01 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_deposition_synthesis_atmosphere_relative_humidity", + "description": "The relative humidity during each deposition step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the relative humidity associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns\n- If the relative humidity for a step is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 35 and not 30-40.\nExample\n35\n0 | 20\nnan >> 25 | 0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_solvents", + "description": "The solvents used in each deposition procedure for each layer in the stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvents associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the solvents in alphabetic order and separate them with semicolons, as in (A; B)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For non-liquid processes with no solvents, state the solvent as \u2018none\u2019\n- If the solvent is not known, state this as \u2018Unknown\u2019\n- Use common abbreviations when appropriate but spell it out when risk for confusion\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nnone\nAcetonitile; Ethanol | Chlorobenzene\nnone >> Ethanol; Methanol; H2O | DMF; DMSO", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_deposition_solvents_mixing_ratios", + "description": "The mixing ratios for mixed solvents\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent mixing ratios associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For pure solvents, state the mixing ratio as 1\n- For non-solvent processes, state the mixing ratio as 1\n- For unknown mixing ratios, state the mixing ratio as \u2018nan\u2019\n- For solvent mixtures, i.e. A and B, state the mixing ratios by using semicolons, as in (VA; VB)\n- The preferred metrics is the volume ratios. If that is not available, mass or mol ratios can be used instead, but it the analysis the mixing ratios will be assumed to be based on volumes.\nExample\n1\n4; 1 | 1\n1 >> 5; 2; 0.3 | 2; 1", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_solvents_supplier", + "description": "The suppliers of all the solvents.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For non-liquid processes with no solvents, mark the supplier as \u2018none\u2019\n- If the supplier for a solvent is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nSigma Aldrich\nSigma Aldrich; Fisher | Acros\nnone >> Sigma Aldrich; Sigma Aldrich | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_solvents_purity", + "description": "The purity of the solvents used.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For non-liquid processes with no solvents, state the purity as \u2018none\u2019\n- If the purity for a solvent is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\nPuris; Puris| Tecnical\nnone >> Pro analysis; Pro analysis | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_deposition_reaction_solutions_compounds", + "description": "The non-solvent precursor chemicals used in each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemicals associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several compounds, e.g. A and B, list the associated compounds in alphabetic order and separate them with semicolons, as in (A; B)\n- Note that also dopants/additives should be included\n- When several precursor solutions are made and mixed before the reaction step, it is the properties of the final mixture used in the reaction we here describe.\n- The number and order of layers and reaction steps must line up with the previous columns.\n- For gas phase reactions, state the reaction gases as if they were in solution.\n- For solid-state reactions, state the compounds as if they were in solution.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- If the compounds for a deposition step is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nAu\nCuI\nAg", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_reaction_solutions_compounds_supplier", + "description": "The suppliers of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemical suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For gas phase reactions, state the suppliers for the gases or the targets/evaporation sources that are evaporated/sputtered/etc.\n- For solid state reactions, state the suppliers for the compounds in the same way.\n- For reaction steps involving only pure solvents, state the supplier as \u2018none\u2019 (as that that is entered in a separate filed)\n- For chemicals that are lab made, state that as \u201cLab made\u201d or \u201cLab made (name of lab)\u201d\n- If the supplier for a compound is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nDysole; Sigma Aldrich; Dyenamo; Sigma Aldrich\nSigma Aldrich; Fisher | Acros\nLab made (EPFL) | Sigma Aldrich >> none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_reaction_solutions_compounds_purity", + "description": "The purity of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the compound purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, i.e. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019 (as that is stated in another field)\n- If the purity for a compound is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\n99.999; Puris| Tecnical\nUnknown >> Pro analysis; Pro analysis | none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_deposition_reaction_solutions_concentrations", + "description": "The concentration of the non-solvent precursor chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the concentrations associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated concentrations and separate them with semicolons, as in (A; B)\n- The order of the compounds must be the same as in the previous filed.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used. When possible, use one of the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml, wt%, mol%, vol%, ppt, ppm, ppb\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n0.2 M; 0.15 M| 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_reaction_solutions_volumes", + "description": "The volume of the reaction solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the volumes associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The volumes refer the volumes used, not the volume of the stock solutions. Thus if 0.15 ml of a solution is spin-coated, the volume is 0.15 ml\n- For reaction steps without solvents, state the volume as \u2018nan\u2019\n- When volumes are unknown, state that as \u2018nan\u2019\nExample\n0.1\n0.1 >> 0.05 | 0.05\nnan | 0.15", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_reaction_solutions_age", + "description": "The age of the solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the age of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- As a general guideline, the age refers to the time from the preparation of the final precursor mixture to the reaction procedure.\n- When the age of a solution is not known, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state this as \u2018nan\u2019\n- For solutions that is stored a long time, an order of magnitude estimate is adequate.\nExample\n2\n0.25 |1000 >> 10000\nnan | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_reaction_solutions_temperature", + "description": "The temperature of the reaction solutions.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a reaction solution undergoes a temperature program, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons, e.g. 25; 100\n- When the temperature of a solution is unknown, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state the temperature of the gas or the solid if that make sense. Otherwise state this as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume an undetermined room temperature to be 25\nExample\n25\n100; 50 | 25\nnan | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_substrate_temperature", + "description": "The temperature of the substrate.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the substrates (i.e. the last deposited layer) associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The temperature of the substrate refers to the temperature when the deposition of the layer is occurring.\n- If a substrate undergoes a temperature program before the deposition, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- When the temperature of a substrate is not known, state that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume that an undetermined room temperature is 25\nExample\n25\nnan\n125; 325; 375; 450 | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_thermal_annealing_temperature", + "description": "The temperatures of the thermal annealing program associated with depositing the layers\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing temperatures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- If no thermal annealing is occurring after the deposition of a layer, state that by stating the room temperature (assumed to 25\u00b0C if not further specified)\n- If the thermal annealing program is not known, state that by \u2018nan\u2019\nExample\n25\n50 | nan\n450 | 125; 325; 375; 450 >> 125; 325; 375; 450", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_thermal_annealing_time", + "description": "The time program associated to the thermal annealing program.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing times associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the associated times at those temperatures and separate them with semicolons.\n- The annealing times must align in terms of layers\u00b8 reaction steps and annealing temperatures in the previous filed.\n- If a time is not known, state that by \u2018nan\u2019\n- If no thermal annealing is occurring after the deposition of a layer, state that by \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 20 and not 10-30.\nExample\nnan\n60 | 1000\n30 | 5; 5; 5; 30 >> 5; 5; 5; 30", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_deposition_thermal_annealing_atmosphere", + "description": "The atmosphere during thermal annealing\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each annelaing step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the atmosphere is a mixture of different gases, i.e. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas.\n- This is often the same as the atmosphere under which the deposition is occurring, but not always.\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nVacuum | N2\nAir | Ar >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_storage_time_until_next_deposition_step", + "description": "The time between the back contact is finalised and the next layer is deposited\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.\n- If this is the last layer in the stack, state this as \u2018nan\u2019", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_front_storage_atmosphere", + "description": "The atmosphere in which the sample with the finalised back contact is stored until the next deposition step or device performance measurement\nExample\nAir\nN2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_storage_relative_humidity", + "description": "The relive humidity under which the sample with the finalised back contact is stored until the next deposition step or device performance measurement\n- If there are uncertainties, only state the best estimate, e.g write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_front_surface_treatment_before_next_deposition_step", + "description": "Description of any type of surface treatment or other treatment the sample with the finalised back contact is stored until the next deposition step or device performance measurement\n- If more than one treatment, list the treatments and separate them by a double forward angel bracket (\u2018 >> \u2018)\n- If no special treatment, state that as \u2018none\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nnone\nAr plasma\nUV-ozone", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "lay_back", + "description": "TRUE if there is a functional layer above the back contact, i.e. layers deposited after the back contact has been finalised.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Upconversion", + "Dielectric mirror", + "Antireflection" + ] + } + } + ] + }, + "name": "lay_back_function", + "description": "The function of the additional layers on the backcontact side.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If a layer has more than one function, e.g. A and B, list the functions in order and separate them with semicolons, as in (A; B)\nExample:\nA.R.C.\nBack reflection\nDown conversion\nEncapsulation\nLight management\nUpconversion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "MgF2", + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_stack_sequence", + "description": "The stack sequence describing the additional layers on the backcontact side.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- Use common abbreviations when appropriate but spell it out if risk for confusion.\n- There are now separate filed for doping. Indicate doping with colons. E.g. wither aluminium doped NiO-np as Al:NiO-np\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "105.0", + "90.0" + ] + } + } + ] + }, + "name": "lay_back_thickness_list", + "description": "A list of thicknesses of the individual layers in the stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous filed.\n- State thicknesses in nm\n- Every layer in the stack have a thickness. If it is unknown, state this as \u2018nan\u2019\n- If there are uncertainties, state the best estimate, e.g write 100 and not 90-110", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_additives_compounds", + "description": "List of the dopants and additives that are in each layer of the HTL-stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- The layers must line up with the previous fields.\n- If several dopants/additives, e.g. A and B, are present in one layer, list the dopants/additives in alphabetic order and separate them with semicolons, as in (A; B)\n- If no dopants/additives, state that as \u201cUndoped\u201d\n- If the doping situation is unknown, stat that as\u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template, even if to most common back contacts is undoped metals\nExample\nCuS\nB; P\nAu-np | Undoped", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_additives_concentrations", + "description": "The concentration of the dopants/additives.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If more than one dopant/additive in the layer, e.g. A and B, separate the concentration for each dopant/additive with semicolons, as in (A; B)\n- For each dopant/additive in the layer, state the concentration.\n- The order of the dopants/additives must be the same as in the previous filed.\n- For layers with no dopants/additives, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used.\n- The preferred way to state the concentration of a dopant/additive is to refer to the amount in the final product, i.e. the material in the layer. When possible, use on the preferred units\no wt%, mol%, vol%, ppt, ppm, ppb\n- When the concentration of the dopant/additive in the final product is unknown, but where the concentration of the dopant/additive in the solution is known, state that concentration instead. When possible, use on the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n5 vol%; nan | 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | 0.3 M", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Evaporation", + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_procedure", + "description": "The deposition procedures for the HTL-stack.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate them by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Thermal annealing is generally not considered as an individual reaction step. The philosophy behind this is that every deposition step has a thermal history, which is specified in a separate filed. In exceptional cases with thermal annealing procedures clearly disconnected from other procedures, state \u2018Thermal annealing\u2019 as a separate reaction step.\n- Please read the instructions under \u201cPerovskite. Deposition. Procedure\u201d for descriptions and distinctions between common deposition procedures and how they should be labelled for consistency in the database.\n- A few additional clarifications:\n- Lamination\no A readymade film is transferred directly to the device stack. A rather broad concept. An everyday kitchen related example of lamination would eb to place a thin plastic film over a slice of pie.\n- Sandwiching\no When a readymade top stack simply is placed on top of the device stack. Could be held together with clams. The typical example is a when a \u201cCarbon | FTO | SLG\u201d is placed on top of the device stack. Standard procedure in the DSSC filed.\nExample\nEvaporation\nEvaporation | Evaporation\nDoctor blading\nScreen printing\nSputtering\nLamination\nE-beam evaporation\nSandwiching", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_aggregation_state_of_reactants", + "description": "The physical state of the reactants.\n- The three basic categories are Solid/Liquid/Gas\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the aggregation state associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- Most cases are clear cut, e.g. spin-coating involves species in solution and evaporation involves species in gas phase. For less clear-cut cases, consider where the reaction really is happening as in:\no For a spray-coating procedure, it is droplets of liquid that enters the substrate (thus a liquid phase reaction)\no For sputtering and thermal evaporation, it is species in gas phase that reaches the substrate (thus a gas phase reaction)\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nLiquid\nGas | Liquid\nLiquid | Liquid >> Liquid", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_synthesis_atmosphere", + "description": "The synthesis atmosphere.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nVacuum\nVacuum | N2\nAir | Ar; H2O >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 40, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_deposition_synthesis_atmosphere_pressure_total", + "description": "The total gas pressure during each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- Pressures can be stated in different units suited for different situations. Therefore, specify the unit. The preferred units are:\no atm, bar, mbar, mmHg, Pa, torr, psi\n- If a pressure is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 100 pa and not 80-120 pa.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 1 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 41, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_deposition_synthesis_atmosphere_pressure_partial", + "description": "The partial pressures for the gases present during each reaction step.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the pressures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the synthesis atmosphere is a mixture of different gases, e.g. A and B, list the partial pressures and separate them with semicolons, as in (A; B). The list of partial pressures must line up with the gases they describe.\n- In cases where no gas mixtures are used, this field will be the same as the previous filed.\nExample\n1 atm\n0.002 torr | 10000 Pa\nnan >> 0.99 atm; 0.01 atm | 1 atm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 42, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_deposition_synthesis_atmosphere_relative_humidity", + "description": "The relative humidity during each deposition step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the relative humidity associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns\n- If the relative humidity for a step is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 35 and not 30-40.\nExample\n35\n0 | 20\nnan >> 25 | 0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 43, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_solvents", + "description": "The solvents used in each deposition procedure for each layer in the stack\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvents associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the solvents in alphabetic order and separate them with semicolons, as in (A; B)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For non-liquid processes with no solvents, state the solvent as \u2018none\u2019\n- If the solvent is not known, state this as \u2018Unknown\u2019\n- Use common abbreviations when appropriate but spell it out when risk for confusion\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nnone\nAcetonitile; Ethanol | Chlorobenzene\nnone >> Ethanol; Methanol; H2O | DMF; DMSO", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 44, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_deposition_solvents_mixing_ratios", + "description": "The mixing ratios for mixed solvents\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent mixing ratios associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- For pure solvents, state the mixing ratio as 1\n- For non-solvent processes, state the mixing ratio as 1\n- For unknown mixing ratios, state the mixing ratio as \u2018nan\u2019\n- For solvent mixtures, i.e. A and B, state the mixing ratios by using semicolons, as in (VA; VB)\n- The preferred metrics is the volume ratios. If that is not available, mass or mol ratios can be used instead, but it the analysis the mixing ratios will be assumed to be based on volumes.\nExample\n1\n4; 1 | 1\n1 >> 5; 2; 0.3 | 2; 1", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 45, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_solvents_supplier", + "description": "The suppliers of all the solvents.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For non-liquid processes with no solvents, mark the supplier as \u2018none\u2019\n- If the supplier for a solvent is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nSigma Aldrich\nSigma Aldrich; Fisher | Acros\nnone >> Sigma Aldrich; Sigma Aldrich | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 46, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_solvents_purity", + "description": "The purity of the solvents used.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the solvent purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solvent is a mixture of different solvents, e.g. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For non-liquid processes with no solvents, state the purity as \u2018none\u2019\n- If the purity for a solvent is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\nPuris; Puris| Tecnical\nnone >> Pro analysis; Pro analysis | Unknown", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 47, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_deposition_reaction_solutions_compounds", + "description": "The non-solvent precursor chemicals used in each reaction step\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemicals associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several compounds, e.g. A and B, list the associated compounds in alphabetic order and separate them with semicolons, as in (A; B)\n- Note that also dopants/additives should be included\n- When several precursor solutions are made and mixed before the reaction step, it is the properties of the final mixture used in the reaction we here describe.\n- The number and order of layers and reaction steps must line up with the previous columns.\n- For gas phase reactions, state the reaction gases as if they were in solution.\n- For solid-state reactions, state the compounds as if they were in solution.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- If the compounds for a deposition step is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nAu\nCuI\nAg", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 48, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_reaction_solutions_compounds_supplier", + "description": "The suppliers of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the non-solvent chemical suppliers associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated suppliers and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- For gas phase reactions, state the suppliers for the gases or the targets/evaporation sources that are evaporated/sputtered/etc.\n- For solid state reactions, state the suppliers for the compounds in the same way.\n- For reaction steps involving only pure solvents, state the supplier as \u2018none\u2019 (as that that is entered in a separate filed)\n- For chemicals that are lab made, state that as \u201cLab made\u201d or \u201cLab made (name of lab)\u201d\n- If the supplier for a compound is unknown, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nDysole; Sigma Aldrich; Dyenamo; Sigma Aldrich\nSigma Aldrich; Fisher | Acros\nLab made (EPFL) | Sigma Aldrich >> none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 49, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_reaction_solutions_compounds_purity", + "description": "The purity of the non-solvent chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the compound purities associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, i.e. A and B, list the associated purities and separate them with semicolons, as in (A; B)\n- The number and order of layers, reaction steps, and solvents must line up with the previous columns.\n- Use standard nomenclature for purities, e.g. pro analysis, puris, extra dry, etc.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019 (as that is stated in another field)\n- If the purity for a compound is not known, state this as \u2018Unknown\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is short. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nPro analysis\n99.999; Puris| Tecnical\nUnknown >> Pro analysis; Pro analysis | none", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 50, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_deposition_reaction_solutions_concentrations", + "description": "The concentration of the non-solvent precursor chemicals.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the concentrations associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a solution contains several dissolved compounds, e.g. A and B, list the associated concentrations and separate them with semicolons, as in (A; B)\n- The order of the compounds must be the same as in the previous filed.\n- For reaction steps involving only pure solvents, state this as \u2018none\u2019\n- When concentrations are unknown, state that as \u2018nan\u2019\n- Concentrations can be stated in different units suited for different situations. Therefore, specify the unit used. When possible, use one of the preferred units\no M, mM, molal; g/ml, mg/ml, \u00b5g/ml, wt%, mol%, vol%, ppt, ppm, ppb\n- For values with uncertainties, state the best estimate, e.g write 4 wt% and not 3-5 wt%.\nExample\n4 wt%\n0.2 M; 0.15 M| 10 mg/ml\n0.3 mol% | 2 mol%; 0.2 wt% | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 51, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_reaction_solutions_volumes", + "description": "The volume of the reaction solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the volumes associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The volumes refer the volumes used, not the volume of the stock solutions. Thus if 0.15 ml of a solution is spin-coated, the volume is 0.15 ml\n- For reaction steps without solvents, state the volume as \u2018nan\u2019\n- When volumes are unknown, state that as \u2018nan\u2019\nExample\n0.1\n0.1 >> 0.05 | 0.05\nnan | 0.15", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 52, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_reaction_solutions_age", + "description": "The age of the solutions\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the age of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- As a general guideline, the age refers to the time from the preparation of the final precursor mixture to the reaction procedure.\n- When the age of a solution is not known, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state this as \u2018nan\u2019\n- For solutions that is stored a long time, an order of magnitude estimate is adequate.\nExample\n2\n0.25 |1000 >> 10000\nnan | nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 53, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_reaction_solutions_temperature", + "description": "The temperature of the reaction solutions.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the solutions associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If a reaction solution undergoes a temperature program, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons, e.g. 25; 100\n- When the temperature of a solution is unknown, state that as \u2018nan\u2019\n- For reaction steps where no solvents are involved, state the temperature of the gas or the solid if that make sense. Otherwise state this as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume an undetermined room temperature to be 25\nExample\n25\n100; 50 | 25\nnan | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 54, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_substrate_temperature", + "description": "The temperature of the substrate.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the temperatures of the substrates (i.e. the last deposited layer) associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The temperature of the substrate refers to the temperature when the deposition of the layer is occurring.\n- If a substrate undergoes a temperature program before the deposition, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- When the temperature of a substrate is not known, state that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- Assume that an undetermined room temperature is 25\nExample\n25\nnan\n125; 325; 375; 450 | 25 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 55, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_thermal_annealing_temperature", + "description": "The temperatures of the thermal annealing program associated with depositing the layers\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing temperatures associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the temperatures (e.g. start, end, and other important points) and separate them with semicolons (e.g. 25; 100)\n- For values with uncertainties, state the best estimate, e.g. write 120 and not 110-130.\n- If no thermal annealing is occurring after the deposition of a layer, state that by stating the room temperature (assumed to 25\u00b0C if not further specified)\n- If the thermal annealing program is not known, state that by \u2018nan\u2019\nExample\n25\n50 | nan\n450 | 125; 325; 375; 450 >> 125; 325; 375; 450", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 56, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_thermal_annealing_time", + "description": "The time program associated to the thermal annealing program.\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the annealing times associated to each reaction step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the thermal annealing involves a temperature program with multiple temperature stages, list the associated times at those temperatures and separate them with semicolons.\n- The annealing times must align in terms of layers\u00b8 reaction steps and annealing temperatures in the previous filed.\n- If a time is not known, state that by \u2018nan\u2019\n- If no thermal annealing is occurring after the deposition of a layer, state that by \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 20 and not 10-30.\nExample\nnan\n60 | 1000\n30 | 5; 5; 5; 30 >> 5; 5; 5; 30", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 57, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_deposition_thermal_annealing_atmosphere", + "description": "The atmosphere during thermal annealing\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- When more than one reaction step, separate the atmospheres associated to each annelaing step by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- The number and order of layers and deposition steps must line up with the previous columns.\n- If the atmosphere is a mixture of different gases, i.e. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas.\n- This is often the same as the atmosphere under which the deposition is occurring, but not always.\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nVacuum | N2\nAir | Ar >> Ar", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 58, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_storage_time_until_next_deposition_step", + "description": "The time between the back contact is finalised and the next layer is deposited\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.\n- If this is the last layer in the stack, state this as \u2018nan\u2019", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 59, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown" + ] + } + } + ] + }, + "name": "lay_back_storage_atmosphere", + "description": "The atmosphere in which the sample with the finalised back contact is stored until the next deposition step or device performance measurement\nExample\nAir\nN2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 60, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_storage_relative_humidity", + "description": "The relive humidity under which the sample with the finalised back contact is stored until the next deposition step or device performance measurement\n- If there are uncertainties, only state the best estimate, e.g write 35 and not 20-50.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 61, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "lay_back_surface_treatment_before_next_deposition_step", + "description": "Description of any type of surface treatment or other treatment the sample with the finalised back contact is stored until the next deposition step or device performance measurement\n- If more than one treatment, list the treatments and separate them by a double forward angel bracket (\u2018 >> \u2018)\n- If no special treatment, state that as \u2018none\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nnone\nAr plasma\nUV-ozone", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "Encapsulation", + "description": "A section to describe information about the encapsulation of the device.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "Encapsulation", + "description": "TRUE if the cell is encapsulated", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Parylene | SLG", + "Plastic tape", + "Parylene-C", + "UV-curated glue | SLG", + "SLG | Ossila E131 epoxy resin", + "Field's metal", + "Scribbling UV-glue", + "Kapton tape | Glue", + "UV-curable epoxy", + "UV-glue | SLG", + "Surlyn | SLG", + "Epoxy", + "Eu(TTA)2(Phen)MAA", + "Cover glass-QDs; Epoxy", + "Al2O3 | SLG", + "Pattex silicon", + "UV-glue (NOA 68, Norland products)", + "Kapton PI tape with Silicone adhesive", + "Polymer | SLG", + "Ossila E131 Epoxy Resin", + "Viewbarrier (mitsibushi plastic, inc)", + "Cavity glass", + "Epoxy (3124L(MS), Three Bond)", + "Polymer", + "SLG", + "FTO", + "UV curable glue", + "Surlyn", + "UV-glue (ThreeBond)", + "Epoxy | SLG", + "Cyanoacrylate", + "UV-curated epoxy | SLG", + "Parylene-film", + "UV-curable epoxy | Cover glass-QDs", + "EVOH | S5 | UV | G1", + "Face-sealing adhesive sheets", + "Polystyrene microgel particles", + "Cover glass-QDs | UV-curable epoxy", + "Polyolefin", + "Paraffin", + "PDMS", + "SiO2 | Desiccant | SLG", + "UV-glue", + "Barrier foil", + "EVA", + "Polyisobutylene", + "SiO2 | AB epoxy glue (Super Glue Corp.) | Desiccant | SLG", + "UVCA (3035B)", + "SLG; UV-selant", + "UV epoxy", + "SLG | Epoxy", + "Glass cyclindrical tube", + "Norland Optical Adhesive (NOA) layers on (PET) | micropatterned NOA", + "LDPE | PP", + "Thermoplastic sealant", + "PVP | UV-Epoxy | SLG", + "Fluoropolymeric layer", + "3M acrylic elastomer (3M VHB 4905)", + "SLG | LT-U001", + "Cover glass-QDs", + "UV curing epoxy", + "UV-cured epoxy; Cavity glass", + "UHPBF", + "UV filter glass and light curable epoxy", + "Polyvinyl pyrrolidone | Epoxy resin | SLG", + "SnO2-c", + "UV Epoxy", + "Surlyn | Gover glass", + "Unknown", + "SL; Unknown:UV cured adhesive", + "UV epoxy | SLG", + "Glass (Ossila E131)", + "UV-glue (ThreeBond, 3052)", + "UV-curable epoxy | SLG", + "PCL", + "Graphene", + "Al2O3 | PET", + "PDMS-nanocone", + "Hot melt polymer foil (Oxford PV) | Cover glass-QDs", + "Norland Optical Adhesive (NOA) layers on (PET)", + "Carbon-nt", + "PET", + "Cover glass-QDs; Water-absorbent sealant (HD-S051414W-40, Dynic)", + "Desiccant | SLG", + "Graphene oxide | Desiccant | SLG", + "Ossila E132 resin", + "Kapton tape", + "Kapton tape | SLG", + "UV curable resin", + "UV-glue (3035B, ThreeBond Holdings)", + "Al2O3 | pV3D3", + "Surlyn | FTO", + "Cover glass with ultraviolet-curable adhesive", + "Polyisobutene", + "Cover glass-QDs; Expoxy", + "SLG | FTO", + "polyisobutylene | SLG", + "PMMA; PU", + "UVCA (3035B) | Paraffin", + "Ag; Carbon-epoxy", + "UV sealant | Surlyn | SLG", + "PEN", + "Self-mixing epoxy", + "Teflon", + "Al2O3", + "UV glue", + "Kapton | Ligh-curated glue | SLG", + "Adhesive glue 3025 B (Three Bond Holding Co. Ltd)", + "ITO | PEN", + "Ethylene-vinyl acetate", + "EVA | SLG", + "PCPD2FBT:BCF", + "PMMA", + "Desiccant", + "SiO2", + "Scotch tape", + "Meltronix", + "Al2O3 | O-Al-CH3 | Al2O3" + ] + } + } + ] + }, + "name": "stack_sequence", + "description": "The stack sequence of the encapsulation\n- Every layer should be separated by a space, a vertical bar, and a space, i.e. (\u2018 | \u2018)\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- Use common abbreviations when appropriate but spell it out if risk for confusion.\n- There are now separate filed for doping. Indicate doping with colons. E.g. wither aluminium doped NiO-np as Al:NiO-np\nExample:\nSLG\nEpoxy\nCover glass\nPMMA", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Epoxy (Pacer Technology, SY-QS )", + "Thermoplastic", + "Araldite 2011", + "Kapton tape | Light-curable glue", + "NOA 89", + "Epoxy; Silicone", + "Hot-melting polymer", + "UV-glue (3035B, ThreeBond Holdings)", + "Ossila Epoxy E131", + "467 MP 3M Adhesive Transfer Tape", + "PDMS", + "polyisobutylene", + "Unknown", + "UV-curable epoxy", + "NOA 88", + "UV-curable epoxy (ThreeBond)", + "Polymer foil", + "Clamp", + "Epoxy", + "none", + "Glue", + "UV-glue", + "Epoxy adhesive", + "Polyurathene", + "Epoxy (XNR 5516Z-B1, Nagase ChemteX Corporation)", + "NOA 63", + "Polyisobutylene", + "Epoxy sealant Ossila E131", + "UV-glue (NOA 68, Norland products)", + "Kapton tape | UV-curable Glue", + "Threebond glue", + "Light-curated glue", + "Surlyn (Du Pont)", + "Epoxy; Polymer", + "Polymer", + "SLG", + "Polyolefin elastomer", + "Thermally curable epoxy (Kyoritsu Chemical)", + "Surlyn", + "UV-glue (ThreeBond)", + "UV-curable epoxy (Ossila E131)", + "Butyl rubber", + "Cover glass-QDs", + "Polydimethylsiloxane" + ] + } + } + ] + }, + "name": "edge_sealing_materials", + "description": "Edge sealing materials\n- If two materials, e.g. A and Bare used, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\nExample:\nEpoxy\nSurlyn\nUV-glue", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Dry air", + "Unknown", + "Air", + "Ambient", + "N2", + "Vacuum", + "Ar" + ] + } + } + ] + }, + "name": "atmosphere_for_encapsulation", + "description": "The surrounding atmosphere during encapsulation.\n- If the surrounding atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\nExample\nN2\nVacuum\nAir", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "water_vapour_transmission_rate", + "description": "The water vapour transmission rate trough the encapsulation.\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "oxygen_transmission_rate", + "description": "The oxygen transmission rate trough the encapsulation.\n- If there are uncertainties, only state the best estimate, e.g. write 35 and not 20-50.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "JVcurve", + "description": "Section describing a current density, voltage curve.", + "more": { + "label_quantity": "cell_name" + }, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "cell_name", + "description": "Cell identification name.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "voltage", + "y": "current_density" + } + ] + }, + "name": "current_density", + "description": "Current density array of the *JV* curve.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "voltage", + "y": "current_density" + } + ] + }, + "name": "voltage", + "description": "Voltage array of the of the *JV* curve.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "volt" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "JV", + "description": "This section descirbes the current density *J* and voltage *V* characteristics of the solar cell. It includes the device parameters and information about how the\nmeasurements were performed.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ], + "browser": [ + { + "adaptor": "RawFileAdaptor" + } + ] + }, + "name": "data_file", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "measured", + "description": "TRUE if IV-data has been measured and is reported.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "average_over_n_number_of_cells", + "description": "The number of cells the reported IV data is based on.\n- The preferred way to enter data is to give every individual cell its own entry in the data template/data base. If that is done, the data is an average over 1 cell.\n- If the reported IV data is not the data from one individual cell, but an average over N cells. Give the number of cells.\n- If the reported value is an average, but it is unknown over how many cells the value has been averaged (and no good estimate is available), state the number of cells as 2, which is the smallest number of cells that qualifies for an averaging procedure.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "certified_values", + "description": "TRUE if the IV data is measured by an independent and certification institute. If your solar simulator is calibrated by a calibrated reference diode, that does not count as a certified result.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "National Institute ofMetrology, China", + "Quality supervision\uff06Testing Center of Chemical\uff06Physical Power Sources of Information Industry", + "CREST, Photovoltaic Meaasurement and calibration Laboratory at Universit of Loughborough", + "Photovoltaic and Wind Power Systems Quality Test Center, Chinese Academy of Sciences", + "NREL", + "Institute of Metrology (NIM) of China", + "PVEVL, National Central University, Taiwan", + "NIM, National Institute of Metrology of China", + "Fraunhofer ISE", + "SIMIT, Shanghai Institute of Microsystem and Information Technology", + "Newport", + "CSIRO, PV Performance Lab at Monash University", + "AIST, National Institute of Advanced Industrial Science and Technology", + "CPVT, National Center of Supervision and Inspection on Solar Photovoltaic Products Quality of China", + "KIER, Korea Institute of Energy Research", + "Newport Corporation", + "Solar Power Lab at Arizona State University" + ] + } + } + ] + }, + "name": "certification_institute", + "description": "The name of the certification institute that has measured the certified device.\nExample:\nNewport\nNIM, National Institute of Metrology of China\nKIER, Korea Institute of Energy Research", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "1.0", + "Unknown", + "7.0", + "4.0", + "2.0", + "28.0", + "58.0", + "8.0", + "0.01", + "0.5", + "5.0", + "6.0" + ] + } + } + ] + }, + "name": "storage_age_of_cell", + "description": "The age of the cell with respect to when the last deposition step was finalised.\n- If there are uncertainties, only state the best estimate, e.g. write 3 and not 1-5.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Dry air", + "Unknown", + "Air", + "Ambient", + "N2", + "Vacuum" + ] + } + } + ] + }, + "name": "storage_atmosphere", + "description": "The atmosphere in which the sample was stored between the device finalisation and the IV measurement.\n- If the atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\n- If the atmosphere has changed during the storing time, separate the different atmospheres by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nN2\nAir\nN2 >> Air", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.9", + "65.0", + "5.0" + ] + } + } + ] + }, + "name": "storage_relative_humidity", + "description": "The relative humidity in the atmosphere in which the sample was stored between the device finalisation and the IV measurement.\n- If the relative humidity has changed during the storing time, separate the different relative humidity by a double forward angel bracket with one blank space on both sides (\u2018 >> \u2018)\n- If the relative humidity is not known, stat that as \u2018nan\u2019\n- For values with uncertainties, state the best estimate, e.g. write 35 and not 30-40.\nExample\n35\n0\n0 >> 25", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Water", + "Dry air", + "Unknown", + "Air", + "Ambient", + "Outdoor", + "N2", + "Vacuum", + "Ar", + "Near-space" + ] + } + } + ] + }, + "name": "test_atmosphere", + "description": "The atmosphere in which the IV measurement is conducted\n- If the atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\nExample\nAir\nN2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "test_relative_humidity", + "description": "The relive humidity in which the IV measurement is conducted\n- If there are uncertainties, only state the best estimate, e.g write 35 and not 20-50.\n- If the relative humidity is not known, stat that as \u2018nan\u2019", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "test_temperature", + "description": "The temperature of the device during the IV-measurement\n- If the temperature is not controlled and not is known, assume a standard room temperature of 25\u00b0C.\n- If there are uncertainties, only state the best estimate, e.g write 35 and not 20-50.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "degree_Celsius" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Unknown", + "White LED", + "Solar Simulator", + "Fluorescent lamp", + "Solar simulator", + "solar simulator", + "Laser", + "Xenon" + ] + } + } + ] + }, + "name": "light_source_type", + "description": "The type of light source used during the IV-measurement\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\n- The category Solar simulator should only be used when you do not really know which type of light source you have in your solar simulator.\nExample:\nLaser\nMetal halide\nOutdoor\nSolar simulator\nSulfur plasma\nWhite LED\nXenon plasma", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "EC-lab T-5A", + "ABET 11000", + "Wavelabs", + "ABET Technologies 10500", + "Newport model 94023A-U", + "McScience K3000", + "BOS-X-1000G", + "Solar light 16S-300", + "Enlitech", + "Newport, model 94063A", + "Wacom Denso model WXS-155S-10", + "Sciencetech Inc. SS-150", + "WAVELABS SINUS-70 LED", + "Oriel Sol2ATM", + "Newport model 91195A", + "Newport ORIEL LCS100", + "Oriel 91160", + "Newport Verasol", + "Solar IV-150A, Zolix", + "WAVELABS SINUS-220", + "Newport 91195A", + "San-ei Electric XES-301S", + "Newport model 94043A", + "Cree XML T6", + "Bunkoukeiki CEP-2000SRR", + "Peccell Technologies PEC-L01", + "XES-70S1", + "Sciencetech", + "Oriel 91160A", + "Oriel VeraSol-2", + "CEP-2000SRR, Bunkou-Keiki Inc", + "Zolix SS150A", + "SANEI", + "PET Photo Emission Tech Inc. Model SS", + "Enlitech SS-F7-3A", + "Newport 91160", + "ABET Technology Sun 2000", + "Oriel 9119", + "Peccell PEC-L01", + "Bunkoukeiki BSS-150T", + "Enlitech SS-F5", + "Global (G)", + "Wacom WXs-156s-l2", + "Photo Emission Tech Inc SS150", + "Newport Oriel LCS-100", + "Oriel 92251A", + "Newport 94123A", + "Oriel 94023 A", + "Newport model 94023A", + "Newport Oriel 92192", + "Newport model 94022", + "Bunkoukeiki KHP-1", + "YAMASHITA DENSO model YSS-150A", + "Oriel 300", + "Newport AAA", + "KHP-1, Bunko-Keiki, Japan", + "Spectra-Nova", + "Sol3A, Oriel Instruments", + "Abet Technologies Sun 3000", + "IV5, PV Measurements, Inc., USA", + "Newport Oriel PVIV-201 V", + "Photo Emission Tech.", + "Newport model 91192", + "XES-40S1, SAN-E1", + "San-ei Electric", + "Oriel 92251A-1000", + "Newport Oriel 94043A", + "So13A", + "Newport Oriel Sol3A", + "ABET Sun 3000", + "KHS Steuernagel", + "Zolix Sirius-SS", + "Oriel 81172", + "PV Measurements Inc.", + "Oriel", + "XEF-300", + "Oriel Sol3A", + "Peceell PEC-L01", + "Ushio Optical ModuleX", + "Newport Oriel 96000", + "Oriel 94023A", + "McScience K401", + "Newport Oriel 3A", + "94011A-ES Sol", + "Bunkoukeiki CEP-25ML", + "Newport 6279 NS", + "Sharif Solar 10\u20132", + "SAN-EI (XES-50S1)", + "Enlitech SS-F5-3A", + "ScienceTech model SF-150", + "Newport Oriel", + "Newport Oriel Sol2A", + "Batsol PEC-L01" + ] + } + } + ] + }, + "name": "light_source_brand_name", + "description": "The brand name and model number of the light source/solar simulator used\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nNewport model 91192\nNewport AAA\nAtlas suntest", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "ABB", + "A", + "AAA", + "ABA", + "AAB" + ] + } + } + ] + }, + "name": "light_source_simulator_class", + "description": "The class of the solar simulator\n- A three-letter code of As, Bs, and Cs. The order of the letters represents the quality ofspectral match, spatial non-uniformity, and temporal instability\nExample\nAAA\nABB\nCAB", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "light_intensity", + "description": "The light intensity during the IV measurement\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- Standard AM 1.5 illumination correspond to 100 mW/cm2\n- If you need to convert from illumination given in lux; at 550 nm, 1 mW/cm2 corresponds to 6830 lux. Be aware that the conversion change with the spectrum used. As a rule of thumb for general fluorescent/LED light sources, around 0.31mW corresponded to 1000 lux. If your light intensity is measured in lux, it probably means that your light spectra deviates quite a lot from AM 1.5, wherefore it is very important that you also specify the light spectra in the next column.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliwatt / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Indoor light", + "AM 1.5", + "Monochromatic", + "Am 1.5" + ] + } + } + ] + }, + "name": "light_spectra", + "description": "The light spectrum used (or simulated as best as possible) during the IV measurement\nExample\nAM 1.0\nAM 1.5\nIndoor light\nMonochromatic\nOutdoor\nUV", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "nan; nan", + "250; 1200" + ] + } + } + ] + }, + "name": "light_wavelength_range", + "description": "The wavelength range of the light source\n- Separate the lower and upper bound by a semicolon.\n- For monochromatic light sources, only give the constant value.\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- State unknown values as \u2018nan\u2019\nExample:\n330; 1000\n400; nan\n550", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Superstrate", + "Substrate" + ] + } + } + ] + }, + "name": "light_illumination_direction", + "description": "The direction of the illumination with respect to the device stack\n- If the cell is illuminated trough the substrate, state this as \u2018Substrate\u2019\n- If the cell is illuminated trough the top contact, state this as \u2018Superstrate\u2019\n- For back contacted cells illuminated from the non-contacted side, state this as \u2018Superstrate\u2019\nExample\nSubstrate\nSuperstrate", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "light_masked_cell", + "description": "TRUE if the cell is illuminated trough a mask with an opening that is smaller than the total cell area.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "light_mask_area", + "description": "The area of the opening in the mask trough with the cell is illuminated (if there is a mask)\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- If there is no light mask, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "scan_speed", + "description": "The speed of the potential sweep during the IV measurement", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "millivolt / second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "scan_delay_time", + "description": "The time at each potential value before integration in the potential sweep.\n- For some potentiostats you need to specify this value, whereas for others it is set automatically and is not directly accessible.\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- If unknown, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "millisecond" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "scan_integration_time", + "description": "The integration time at each potential value in the potential sweep.\n- For some potentiostats you need to specify this value, whereas for others it is set automatically and is not directly accessible.\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- If unknown, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "millisecond" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "scan_voltage_step", + "description": "The distance between the measurement point in the potential sweep\n- If unknown, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "millivolt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Light soaking", + "Potential biasing", + "Heating", + "Unknown", + "MPPT", + "Voc stabilization", + "Bending", + "Light Soaking", + "Light Soaking; Potential biasing", + "Electroluminescence measurement", + "Light soaking; Potential biasing", + "Heating; Light soaking", + "Light soaking; Potential cykling", + "Cooling" + ] + } + } + ] + }, + "name": "preconditioning_protocol", + "description": "Any preconditioning protocol done immediately before the IV measurement\n- If no preconditioning was done, state this as \u2018none\u2019\n- If more than one preconditioning protocol was conducted in parallel, separate them with semicolons\n- If more than one preconditioning protocol was conducted in sequence, separate them by a double forward angel bracket (\u2018 >> \u2018)\nExample\nCooling\nHeeting\nLight soaking\nLight soaking; Potential biasing\nPotential biasing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "preconditioning_time", + "description": "The duration of the preconditioning protocol\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "preconditioning_potential", + "description": "The potential at any potential biasing step\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "preconditioning_light_intensity", + "description": "The light intensity at any light soaking step\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliwatt / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "reverse_scan_Voc", + "description": "The open circuit potential, Voc, at the reverse voltage sweep (when U scanned from Voc to 0)\n- Give Voc in volts [V]\n- If there are uncertainties, only state the best estimate, e.g. write 1.03 and not 1.01-1.05\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "reverse_scan_Jsc", + "description": "The short circuit current, Jsc, at the reverse voltage sweep (when U scanned from Voc to 0)\n- Give Jsc in mA/cm2\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "reverse_scan_FF", + "description": "The fill factor, FF, at the reverse voltage sweep (when U scanned from Voc to 0)\n- Give FF as the ratio between Vmp*Jmp/(Voc*Jsc) which gives it a value between 0 and 1\n- If there are uncertainties, only state the best estimate, e.g. write 0.73 and not 0.7-0.76\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "reverse_scan_PCE", + "description": "The efficiency, PCE, at the reverse voltage sweep (when U scanned from Voc to 0)\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "reverse_scan_Vmp", + "description": "The potential at the maximum power point, Vmp, at the reverse voltage sweep (when U scanned from Voc to 0)\n- Give Vmp in volts [V]\n- If there are uncertainties, only state the best estimate, e.g. write 1.03 and not 1.01-1.05\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "reverse_scan_Jmp", + "description": "The current density at the maximum power point, Jmp, at the reverse voltage sweep (when U scanned from Voc to 0)\n- Give Jmp in mA/cm2\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "reverse_scan_series_resistance", + "description": "The series resistance as extracted from the reverse voltage sweep (when U scanned from Voc to 0)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2 * ohm" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "reverse_scan_shunt_resistance", + "description": "The shunt resistance as extracted from the reverse voltage sweep (when U scanned from Voc to 0)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2 * ohm" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "forward_scan_Voc", + "description": "The open circuit potential, Voc, at the forward voltage sweep (when U scanned from 0 to Voc)\n- Give Voc in volts [V]\n- If there are uncertainties, only state the best estimate, e.g. write 1.03 and not 1.01-1.05\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "forward_scan_Jsc", + "description": "The short circuit current, Jsc, at the forward voltage sweep (when U scanned from 0 to Voc)\n- Give Jsc in mA/cm2\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "forward_scan_FF", + "description": "The fill factor, FF, at the forward voltage sweep (when U scanned from 0 to Voc)\n- Give FF as the ratio between Vmp*Jmp/(Voc*Jsc) which gives it a value between 0 and 1\n- If there are uncertainties, only state the best estimate, e.g. write 0.73 and not 0.7-0.76\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "forward_scan_PCE", + "description": "The efficiency, PCE, at the forward voltage sweep (when U scanned from 0 to Voc)\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 40, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "forward_scan_Vmp", + "description": "The potential at the maximum power point, Vmp, at the forward voltage sweep (when U scanned from 0 to Voc)\n- Give Vmp in volts [V]\n- If there are uncertainties, only state the best estimate, e.g. write 1.03 and not 1.01-1.05\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 41, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "forward_scan_Jmp", + "description": "The current density at the maximum power point, Jmp, at the forward voltage sweep (when U scanned from 0 to Voc)\n- Give Jmp in mA/cm2\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 42, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "forward_scan_series_resistance", + "description": "The series resistance as extracted from the forward voltage sweep (when U scanned from 0 to Voc)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2 * ohm" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 43, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "forward_scan_shunt_resistance", + "description": "The shunt resistance as extracted from the forward voltage sweep (when U scanned from 0 to Voc)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2 * ohm" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 44, + "m_parent_sub_section": "quantities", + "name": "link_raw_data", + "description": "A link to where the data file for the IV-data is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for IV data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw IV-data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 45, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "default_Voc", + "description": "Open circuit voltage.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 46, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "default_Jsc", + "description": "Short circuit current density.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 47, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "default_FF", + "description": "Fill factor.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 48, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "default_PCE", + "description": "Power conversion efficiency.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 49, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Reversed", + "", + "Forward" + ] + } + } + ] + }, + "name": "default_Voc_scan_direction", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 50, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Reversed", + "", + "Forward" + ] + } + } + ] + }, + "name": "default_Jsc_scan_direction", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 51, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Reversed", + "", + "Forward" + ] + } + } + ] + }, + "name": "default_FF_scan_direction", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 52, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Reversed", + "", + "Stabilised", + "Forward" + ] + } + } + ] + }, + "name": "default_PCE_scan_direction", + "description": "nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 53, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "hysteresis_index", + "description": "nan", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "jv_curve", + "sub_section": "/packages/6/section_definitions/11", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "Stabilised", + "description": "A section describing if a stabilised efficiency has been measured in the solar cell.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "performance_measured", + "description": "TRUE if a stabilised cell efficiency has been measured\n- A stabilised efficiency requires a continuous measurement. Measuring an IV-curve, storing the cell in the dark for a while, and then measure a new IV-curve does thus not count as a stabilised efficiency measurement.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "MPPT", + "Constant potential", + "Constant Potential", + "Constant current" + ] + } + } + ] + }, + "name": "performance_procedure", + "description": "The Potentiostatic load condition during the stabilised performance measurement\nExamples:\nConstant current\nConstant potential\nMPPT\nPassive resistance\nShort circuit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "0.8", + "0.82", + "0.885", + "0.99", + "0.64", + "0.91", + "0.757", + "0.97", + "0.76", + "0.92", + "0.7959999999999999", + "0.895", + "0.96", + "1.19", + "0.85", + "0.94", + "0.61", + "0.83", + "1.31", + "0.87", + "0.9", + "0.86", + "0.78", + "0.93", + "0.74", + "0.79", + "0.867", + "0.98", + "0.73", + "1.3", + "0.8140000000000001", + "0.8740000000000001", + "0.8590000000000001", + "1.23", + "0.81", + "0.818", + "0.71", + "0.75", + "1.0", + "0.62", + "0.66", + "0.88", + "0.84", + "0.95", + "0.72", + "0.77", + "1.35" + ] + } + } + ] + }, + "name": "performance_procedure_metrics", + "description": "The metrics associated to the load condition in the previous filed\n- For measurement under constant current, state the current in mA/cm2\n- For measurement under constant potential. State the potential in V\n- For a measurement under constant resistive load, state the resistance in ohm", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "performance_measurement_time", + "description": "The duration of the stabilised performance measurement.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "minute" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "performance_PCE", + "description": "The stabilised efficiency, PCE\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "performance_Vmp", + "description": "The stabilised Vmp\n- Give Vmp in volts [V]\n- If there are uncertainties, only state the best estimate, e.g. write 1.03 and not 1.01-1.05\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "performance_Jmp", + "description": "The stabilised Jmp\n- Give Jmp in mA/cm2\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "false", + "www.testsite\u2026" + ] + } + } + ] + }, + "name": "performance_link_raw_data", + "description": "A link to where the data file for the stability measurement is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for IV data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw IV-data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "eln": [ + { + "lane_width": "600px" + } + ], + "plot": [ + { + "label": "Raw EQE", + "x": "raw_wavelength_array", + "y": "raw_eqe_array", + "layout": { + "yaxis": { + "type": "lin" + } + } + }, + { + "label": "Interpolated/extrapolated EQE log scale", + "x": "wavelength_array", + "y": "eqe_array", + "layout": { + "yaxis": { + "type": "log" + } + }, + "config": { + "editable": "true" + } + } + ] + }, + "name": "EQE", + "description": "A section describing the External Quantum Efficiency **EQE** of the solar cell and additional parameteres derived from it. If used as an ELN, a file containing\nthe EQE spectrum in columns can be uploaded in the quantity `data_file` to process\nautomatic calculations of several parameteres like the `bandgap` or `Urbach energy`.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ], + "browser": [ + { + "adaptor": "RawFileAdaptor" + } + ] + }, + "name": "eqe_data_file", + "description": "Drop here your eqe file and click save for processing.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "header_lines", + "description": "Number of header lines in the file.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "default": 0 + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "measured", + "description": "TRUE if the external quantum efficiency has been measured", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "light_bias", + "description": "The light intensity of any bias light during the EQE measurement\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliwatt / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "bandgap_eqe", + "description": "Bandgap derived form the eqe in eV.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "integrated_Jsc", + "description": "The integrated current from the EQE measurement\n- Give Jsc in mA/cm2\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "integrated_J0rad", + "description": "The integrated J<sub>{0, Rad}</sub> from the EQE measurement\n- Give J<sub>{0, Rad}</sub> in mA/cm2\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "voc_rad", + "description": "Radiative V<sub>oc</sub> derived from the eqe in V.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "urbach_energy", + "description": "Urbach energy fitted from the eqe in eV.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "n_values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "n_raw_values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "photon_energy_array", + "y": "raw_eqe_array" + } + ] + }, + "name": "raw_eqe_array", + "description": "EQE array of the spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_raw_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "raw_photon_energy_array", + "y": "raw_eqe_array" + } + ] + }, + "name": "raw_photon_energy_array", + "description": "Raw Photon energy array of the eqe spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_raw_values" + ], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "raw_wavelength_array", + "y": "raw_eqe_array" + } + ] + }, + "name": "raw_wavelength_array", + "description": "Raw wavelength array of the eqe spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_raw_values" + ], + "unit": "nanometer" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "photon_energy_array", + "y": "eqe_array" + } + ] + }, + "name": "eqe_array", + "description": "EQE array of the spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "wavelength_array", + "y": "eqe_array" + } + ] + }, + "name": "wavelength_array", + "description": "Interpolated/extrapolated wavelength array with *E<sub>u</sub>* of the eqe spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "nanometer" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "photon_energy_array", + "y": "eqe_array" + } + ] + }, + "name": "photon_energy_array", + "description": "Interpolated/extrapolated photon energy array with a *E<sub>u</sub>* of the eqe spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "link_raw_data", + "description": "A link to where the data file for the EQE measurement is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for IV data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw IV-data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "Stability", + "description": "A section decsirbing the stability measurements performed in the device.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "measured", + "description": "TRUE if some kind of stability measurement has been done.\n- There is no sharp boundary between a stability measurement and a measurement of stabilised efficiency. Generally, a measurement under a few minutes is considered as a measurement of stabilised efficiency, whereas a stability measurement is sufficiently long for degradation to be seen (unless the device is really good)", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Indoor light", + "IEC 61646", + "ISOS-L-1", + "Bending test", + "Other", + "ISOS-LC-1", + "ISOS-T-1", + "ISOS-D-1I", + "ISOS-V-2", + "ISOS-L-2I", + "ISOS-D-1", + "IEC 61215", + "ISOS-L-C1I", + "ISOS\u2010L\u20101", + "ISOS-L-3", + "ISOS-L-1I", + "ISOS-D-2", + "ISOS-V-1", + "ISOS-L-2", + "ISOS\u2010D\u20103", + "ISOS-D-2I", + "ISOS-D-3", + "ISOS-V-1I", + "ISOS-O-1", + "UV-stability", + "ISOS-T-3" + ] + } + } + ] + }, + "name": "protocol", + "description": "The stability protocol used for the stability measurement.\n- For a more detailed discussion on protocols and standard nomenclature for stability measurements, please see the following paper:\no Consensus statement for stability assessment and reporting for perovskite photovoltaics based on ISOS procedures byM. V. Khenkin et al. Nat. Energ. 2020. DOI10.1038/s41560-019-0529-5\nExample:\nISOS-D-1\nISOS-D-1I\nISOS-L-2\nISOS-T-3\nIEC 61215", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "average_over_n_number_of_cells", + "description": "The number of cells the reported stability data is based on.\n- The preferred way to enter data is to give every individual cell its own entry in the data template/data base. If that is done, the data is an average over 1 cell.\n- If the reported stability data is not the data from one individual cell, but an average over N cells. Give the number of cells.\n- If the reported value is an average, but it is unknown over how many cells the value has been averaged (and no good estimate is available), state the number of cells as 2, which is the smallest number of cells that qualifies for an averaging procedure.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Indoor light", + "Solar Simulator", + "UV lamp", + "Natural sunlight", + "LED", + "White Led", + "Synchrotron", + "Light", + "Mercury", + "Sulfur plasma", + "Halogen", + "Tungsten; Gamma rays", + "White LED", + "Dark", + "Solar simulator", + "solar simulator", + "Sun", + "Tungsten", + "Xenon", + "Fluorescent lamp", + "Metal halide" + ] + } + } + ] + }, + "name": "light_source_type", + "description": "The type of light source used during the stability measurement\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nLaser\nMetal halide\nOutdoor\nSolar simulator\nSulfur plasma\nWhite LED\nXenon plasma", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "light_source_brand_name", + "description": "The brand name and model number of the light source/solar simulator used\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nNewport model 91192\nNewport AAA\nAtlas suntest", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "light_source_simulator_class", + "description": "The class of the solar simulator\n- A three-letter code of As, Bs, and Cs. The order of the letters represents the quality ofspectral match, spatial non-uniformity, and temporal instability\nExample\nAAA\nABB\nCAB", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "light_intensity", + "description": "The light intensity during the stability measurement\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- Standard AM 1.5 illumination correspond to 100 mW/cm2\n- If you need to convert from illumination given in lux; at 550 nm, 1 mW/cm2 corresponds to 6830 lux", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliwatt / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Indoor light", + "X-ray, 17.998 keV", + "UV", + "AM 1.5", + "Monochromatic", + "Outdoor ligth", + "Yellow light", + "Am 1.5" + ] + } + } + ] + }, + "name": "light_spectra", + "description": "The light spectrum used (or simulated as best as possible) during the stability measurement\n- For an unspecified light spectra (that not is dark), state this as \u2018Light\u2019\nExample\nAM 1.0\nAM 1.5\nIndoor light\nMonochromatic\nOutdoor\nUV", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "nan; nan", + "325; 325", + "300; 800", + "340.0; 340.0", + "365.0; 365.0", + "254.0; 254.0", + "267.0; 267.0" + ] + } + } + ] + }, + "name": "light_wavelength_range", + "description": "The wavelength range of the light source\n- Separate the lower and upper bound by a semicolon.\n- For monochromatic light sources, only give the constant value.\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- State unknown values as \u2018nan\u2019\nExample:\n330; 1000\n400; nan\n550", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Substrate" + ] + } + } + ] + }, + "name": "light_illumination_direction", + "description": "The direction of the illumination with respect to the device stack\n- If the cell is illuminated trough the substrate, state this as \u2018Substrate\u2019\n- If the cell is illuminated trough the top contact, state this as \u2018Superstrate\u2019\n- For back contacted cells illuminated from the non-contacted side, state this as \u2018Superstrate\u2019\nExample\nSubstrate\nSuperstrate", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "constant", + "Uncontrolled", + "Cycled", + "Day-Night cycle", + "Constant" + ] + } + } + ] + }, + "name": "light_load_condition", + "description": "The load situation of the illumination during the stability measurement.\n- If the illumination is constant during the entire stability measurement, or if the cell is stored in the dark, state this as \u2018Constant\u2019.\n- If the situation periodically is interrupted by IV-measurements, continue to consider the load condition as constant\n- If there is a cycling between dark and light, state this as \u2018Cycled\u2019\n- If the illumination varies in an uncontrolled way, state this as \u2018Uncontrolled\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nConstant\nCycled\nDay-Night cycle\nUncontrolled", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "0.16; 12.0", + "12.0; 12.0", + "10.0; 14.0", + "0.6" + ] + } + } + ] + }, + "name": "light_cycling_times", + "description": "If the illumination load is cycled during the stability measurement, state the time in low light followed by the time in high light for the cycling period.\n- If not applicable, leave blank\nExample\n12; 12\n6; 10\nnan; nan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "light_UV_filter", + "description": "TRUE if a UV-filter of any kind was placed between the illumination source and the device during the stability measurement.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Short circuit", + "MPPT", + "Open circuit", + "Constant potential", + "Passive resistance" + ] + } + } + ] + }, + "name": "potential_bias_load_condition", + "description": "The Potentiostatic load condition during the stability measurement\n- When the cell is not connected to anything, state this as \u2018Open circuit\u2019\nExamples:\nConstant current\nConstant potential\nMPPT\nOpen circuit\nPassive resistance\nShort circuit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "0.9; 0.9", + "0.85; 0.85", + "nan; nan", + "0.8465; 0.8465", + "0.47; 0.47", + "0.7499; 0.7499", + "0.937; 0.937", + "1.2; 1.2", + "0.65; 0.65", + "0.95; 0.95", + "0.84; 0.84", + "0.71; 0.71", + "1.0; 1.0", + "0.86; 0.86", + "1.413; 1.413", + "0.76; 0.76", + "0.7; 0.7", + "0.908; 0.908", + "0.72; 0.72", + "0.8; 0.8", + "0.89; 0.89" + ] + } + } + ] + }, + "name": "potential_bias_range", + "description": "The potential range during the stability measurement\n- Separate the lower and upper bound by a semicolon.\n- For constant values, state only that value.\n- For open circuit conditions, state this as \u2018nan\u2019\n- If there are uncertainties, only state the best estimate, e.g. write 1 and not 0.90-1.1\n- State unknown values as \u2018nan\u2019\nExample:\n0.9; 1.02\n1.5\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "potential_bias_passive_resistance", + "description": "The passive resistance in the measurement circuit if a resistor was used\n- Give the value in ohm\n- If there are uncertainties, only state the best estimate, e.g. write 1.03 and not 1.01-1.05\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "ohm" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "constant", + "Uncontrolled", + "Cycled", + "uncontrolled", + "Constant" + ] + } + } + ] + }, + "name": "temperature_load_condition", + "description": "The load situation of the temperature during the stability measurement.\n- If the temperature is constant during the entire stability measurement, state this as \u2018Constant\u2019.\n- If there is a cycling between colder and hotter conditions, state this as \u2018Cycled\u2019\n- If the temperature varies in an uncontrolled way, state this as \u2018Uncontrolled\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nConstant\nUncontrolled\nCycled", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "22.0; 22.0", + "70; 70", + "-10.0; -10.0", + "80; 80", + "55.0; 55.0", + "50.0; 50.0", + "10; 25", + "nan; nan", + "75.0; 75.0", + "20; 20", + "120.0; 120.0", + "-40.0; 85.0", + "85.0; 85.0", + "0.0; 0.0", + "26.0; 26.0", + "27.5; 27.5", + "28.0; 28.0", + "25; 85", + "25; 25", + "65; 65", + "22.3; 22.7", + "110.0; 110.0", + "25; 80", + "21.0; 21.0", + "14.0; 14.0", + "20; 25", + "23; 23", + "-22.0; 100", + "100.0; 100.0", + "95.0; 95.0", + "23.5; 23.5", + "15; 25", + "30; 30", + "25; 35", + "18; 22", + "42.0; 42.0", + "17.0; 17.0", + "22.5; 22.5", + "28; 32", + "25; 30", + "20; 30", + "60; 60", + "2; 70", + "75; 75", + "80.0; 80.0", + "45.0; 45.0", + "160.0; 160.0", + "90.0; 90.0", + "53.0; 53.0", + "30.0; 30.0", + "20; 40", + "45; 45", + "150.0; 150.0", + "40.0; 40.0", + "-20.0; -20.0", + "20.0; 20.0", + "25.0; 25.0", + "70.0; 70.0", + "41.0; 41.0", + "50; 50", + "40; 40", + "65.0; 65.0", + "35.0; 35.0", + "25.5; 25.5", + "24.0; 24.0", + "15.0; 15.0", + "82.0; 82.0", + "23.0; 23.0", + "28; 28", + "60.0; 60.0", + "85; 85", + "100; 100", + "23.1; 23.1", + "nan; 120", + "21.5; 21.5", + "27.0; 27.0" + ] + } + } + ] + }, + "name": "temperature_range", + "description": "The temperature range during the stability measurement\n- Separate the lower and upper bound by a semicolon.\n- For constant values, state only that value.\n- If there are uncertainties, only state the best estimate, e.g. write 1 and not 0.90-1.1\n- State unknown values as \u2018nan\u2019\nExample:\n30\n25; 85\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "15.0; 15.0", + "100.0; 100.0", + "25.0; 25.0", + "60.0; 120.0" + ] + } + } + ] + }, + "name": "temperature_cycling_times", + "description": "If the temperature is cycled during the stability measurement, state the time in low temperature followed by the time in high temperature for the cycling period.\n- If not applicable, leave blank\n- Separate the lower and upper bound by a semicolon.\n- If there are uncertainties, only state the best estimate, e.g. write 1 and not 0.90-1.1\n- State unknown values as \u2018nan\u2019\nExample:\n2; 2\n0.5; 10", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "temperature_ramp_speed", + "description": "The temperature ramp speed\n- If there are uncertainties, only state the best estimate, e.g. write 1.03 and not 1.01-1.05\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "degree_Celsius / minute" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Water", + "Dry air", + "Unknown", + "Air", + "Air. Desiccator", + "Ambient", + "N2", + "Vacuum", + "O2", + "N2; O2", + "Glovebox", + "Ar", + "Near-space" + ] + } + } + ] + }, + "name": "atmosphere", + "description": "The atmosphere in which the stability measurement is conducted\n- If the atmosphere is a mixture of different gases, e.g. A and B, list the gases in alphabetic order and separate them with semicolons, as in (A; B)\n- \u201cDry air\u201d represent air with low relative humidity but where the relative humidity is not known\n- \u201cAmbient\u201d represent air where the relative humidity is not known. For ambient conditions where the relative humidity is known, state this as \u201cAir\u201d\n- \u201cVacuum\u201d (of unspecified pressure) is for this purpose considered as an atmospheric gas\nExample\nAir\nN2\nVacuum", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "atmosphere_oxygen_concentration", + "description": "The oxygen concentration in the atmosphere\n- If unknown, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "constant", + "Controlled", + "Ambient", + "ambient", + "Constant" + ] + } + } + ] + }, + "name": "relative_humidity_load_conditions", + "description": "The load situation of the relative humidity during the stability measurement.\n- If the relative humidity is constant during the entire stability measurement, state this as \u2018Constant\u2019.\n- If there is a cycling between dryer and damper conditions, state this as \u2018Cycled\u2019\n- If the relative humidity varies in an uncontrolled way, i.e. the cell is operated under ambient conditions, state this as \u2018Ambient\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample\nAmbient\nControlled\nCycled", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "40; 50", + "61; 75", + "30; 80", + "80; 80", + "60; 70", + "25; 45", + "nan; nan", + "25; 50", + "20; 20", + "50; 70", + "30; 50", + "60; 80", + "35; 35", + "0; 0", + "55; 70", + "75; 85", + "65; 65", + "50; 60", + "50.60; 50.60", + "1; 50", + "25; 25", + "20; 70", + "25; 35", + "30; 30", + "10; 15", + "45; 55", + "15; 25", + "15; 15", + "15; 20", + "42.2; 54.4", + "35; 40", + "30; 70", + "25; 40", + "25; 30", + "20; 30", + "60; 60", + "20; 40", + "30; 35", + "45; 45", + "40; 80", + "5; 5", + "40; 60", + "90; 95", + "50; 50", + "40; 40", + "45; 60", + "12; 18", + "35; 45", + "10; 20", + "45; 50", + "40; 45", + "85; 85", + "10; 30", + "30; 40", + "100; 100" + ] + } + } + ] + }, + "name": "relative_humidity_range", + "description": "The relative humidity range during the stability measurement\n- Separate the lower and upper bound by a semicolon.\n- For constant values, state only that value.\n- If there are uncertainties, only state the best estimate, e.g. write 1 and not 0.90-1.1\n- State unknown values as \u2018nan\u2019\nExample:\n45\n35; 65\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "relative_humidity_average_value", + "description": "The average relative humidity during the stability measurement.\n- If there are uncertainties, only state the best estimate, e.g. write 1 and not 0.90-1.1\n- If unknown, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "time_total_exposure", + "description": "The total duration of the stability measurement.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "periodic_JV_measurements", + "description": "TRUE if the stability measurement periodically is interrupted for JV-measurements. A typical example is a cell that is stored in the dark and once in a wile is take out from storage for an IV-measurement.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "40.0", + "85.0", + "90.0", + "50.0", + "24.0", + "1440.0", + "10.0", + "3.0", + "3.2", + "220.0", + "60.0", + "5.0", + "125.0", + "9.0", + "120.0", + "Unknown", + "72.0", + "7.0", + "180.0", + "75.0", + "100.0", + "400.0", + "240.0", + "80.0", + "6.0", + "0.067", + "480.0", + "30.0", + "0.3", + "0.167", + "2.0", + "0.016", + "0.5", + "168.0", + "48.0", + "25.0", + "0.1", + "52.0", + "20.0", + "360.0", + "160.0", + "34.0", + "1680.0", + "15.0", + "200.0" + ] + } + } + ] + }, + "name": "periodic_JV_measurements_time_between_jv", + "description": "The average time between JV-measurement during the stability measurement.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_initial_value", + "description": "The efficiency, PCE, of the cell before the stability measurement routine starts\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "PCE_burn_in_observed", + "description": "TRUE if the performance has a relatively fast initial decay after which the decay rate stabilises at a lower level.\n- There are no sharp boundary between an initial burn in phase an a catastrophic failure, but if the performance of the cell quickly degrade by more than half, it is stretching it a bit to label this as an initial burn in phase.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_end_of_experiment", + "description": "The efficiency, PCE, of the cell at the end of the stability routine\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_T95", + "description": "The time after which the cell performance has degraded by 5 % with respect to the initial performance.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_Ts95", + "description": "The time after which the cell performance has degraded by 5 % with respect to the performance after any initial burn in phase.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_T80", + "description": "The time after which the cell performance has degraded by 20 % with respect to the initial performance.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_Ts80", + "description": "The time after which the cell performance has degraded by 20 % with respect to the performance after any initial burn in phase.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_Te80", + "description": "An estimated T80 for cells that were not measured sufficiently long for them to degrade by 20 %. with respect to the initial performance.\n- This value will by definition have a significant uncertainty to it, as it is not measured but extrapolated under the assumption linearity but without a detailed and stabilised extrapolation protocol. This estimate is, however, not without value as it enables a rough comparison between all cells for with the stability has been measured.\n- If there is an experimental T80, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_Tse80", + "description": "An estimated T80s for cells that was not measured sufficiently long for them to degrade by 20 %. with respect to the performance after any initial burn in phase.\n- This value will by definition have a significant uncertainty to it, as it is not measured but extrapolated under the assumption linearity but without a detailed and stabilised extrapolation protocol. This estimate is, however, not without value as it enables a ruff comparison between all cells for with the stability has been measured.\n- If there is an experimental T80s, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_after_1000_h", + "description": "The efficiency, PCE, of the cell after 1000 hours\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "lifetime_energy_yield", + "description": "The lifetime energy yield\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour * kilowatt / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "flexible_cell_number_of_bending_cycles", + "description": "Number of bending cycles for a flexible cell in a mechanical stability test", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 40, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "flexible_cell_bending_radius", + "description": "The bending radius of the flexible cell during the mechanical stability test", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "degree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 41, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "flexible_cell_PCE_initial_value", + "description": "The efficiency, PCE, of the cell before the mechanical stability measurement routine starts\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 42, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "flexible_cell_PCE_end_of_experiment", + "description": "The efficiency, PCE, of the cell after the mechanical stability measurement routine\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 43, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "www.testsite\u2026" + ] + } + } + ] + }, + "name": "link_raw_data_for_stability_trace", + "description": "A link to where the data file for the stability data is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for stability data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw stability data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "Outdoor", + "description": "A section describing measurements performed in outdoor conditions", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "tested", + "description": "TRUE if the performance of the cell has been tested outdoors.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "ISOS-O-1", + "IEC 61853-1" + ] + } + } + ] + }, + "name": "protocol", + "description": "The protocol used for the outdoor testing.\n- For a more detailed discussion on protocols and standard nomenclature for stability measurements, please see the following paper:\no Consensus statement for stability assessment and reporting for perovskite photovoltaics based on ISOS procedures byM. V. Khenkin et al. Nat. Energ. 2020. DOI10.1038/s41560-019-0529-5\nExample:\nIEC 61853-1\nISOS-O-1\nISOS-O-2\nISOS-O-3", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "average_over_n_number_of_cells", + "description": "The number of cells the reported outdoor data is based on.\nExample:\n- The preferred way to enter data is to give every individual cell its own entry in the data template/data base. If that is done, the data is an average over 1 cell.\n- If the reported data is not the data from one individual cell, but an average over N cells. Give the number of cells.\n- If the reported value is an average, but it is unknown over how many cells the value has been averaged (and no good estimate is available), state the number of cells as 2, which is the smallest number of cells that qualifies for an averaging procedure.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Italy", + "Switzerland", + "Slovenia", + "China", + "Great Britain", + "Colombia", + "Spain", + "Israel", + "Space International", + "Saudi Arabia" + ] + } + } + ] + }, + "name": "location_country", + "description": "The country where the outdoor testing was occurring\n- For measurements conducted in space, state this as \u2019Space International\u2019\nExample:\nSweden\nSwitzerland\nSpace International", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Ljubljana", + "Hong Kong" + ] + } + } + ] + }, + "name": "location_city", + "description": "The city where the outdoor testing was occurring", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "nan; nan" + ] + } + } + ] + }, + "name": "location_coordinates", + "description": "The coordinates fort the places where the outdoor testing was occurring.\n- Use decimal degrees (DD) as the format.\nExample:\n59.839116; 17.647979\n52.428150; 13.532134", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Subtropical", + "Cold", + "Desert", + "Temperate" + ] + } + } + ] + }, + "name": "location_climate_zone", + "description": "The climate zone for the places where the outdoor testing was occurring.\nExample:\nCold\nDesert\nSubtropical\nTeperate\nTropical", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "installation_tilt", + "description": "The tilt of the installed solar cell.\n- A module lying flat on the ground have a tilt of 0\n- A module standing straight up has a tilt of 90", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "degree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "installation_cardinal_direction", + "description": "The cardinal direction of the installed solar cell.\n- North is 0\n- East is 90\n- South is 180\n- West is 270", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "degree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "installation_number_of_solar_tracking_axis", + "description": "The number of tracking axis in the installation.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Summer", + "Autumn; Spring; Summer; Winter", + "Autumn; Winter", + "Winter", + "Spring", + "Autumn; Summer" + ] + } + } + ] + }, + "name": "time_season", + "description": "The time of year the outdoor testing was occurring.\n- Order the seasons in alphabetic order and separate them with semicolons.\n- For time periods longer than a year, state all four seasons once.\nExample:\nAutumn\nAutumn; Summer\nAutumn; Spring, Winter\nAutumn; Spring; Summer; Winter\nSpring; Winter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "0000:00:00:00:00" + ] + } + } + ] + }, + "name": "time_start", + "description": "The starting time for the outdoor measurement.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "0000:00:00:00:00", + "0000:03:14:00:00" + ] + } + } + ] + }, + "name": "time_end", + "description": "The ending time for the outdoor measurement.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "time_total_exposure", + "description": "The total duration of the outdoor measurement in days.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "MPPT" + ] + } + } + ] + }, + "name": "potential_bias_load_condition", + "description": "The Potentiostatic load condition during the outdoor measurement\n- When the cell is not connected to anything, state this as \u2018Open circuit\u2019\nExamples:\nConstant current\nConstant potential\nMPPT\nOpen circuit\nPassive resistance\nShort circuit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "nan; nan" + ] + } + } + ] + }, + "name": "potential_bias_range", + "description": "The potential range during the outdoor measurement\n- Separate the lower and upper bound by a semicolon.\n- For constant values, state only that value.\n- For open circuit conditions, state this as \u2018nan\u2019\n- If there are uncertainties, only state the best estimate, e.g. write 1 and not 0.90-1.1\n- State unknown values as \u2018nan\u2019\nExample:\n0.9; 1.02\n1.5\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "potential_bias_passive_resistance", + "description": "The passive resistance in the measurement circuit if a resistor was used\n- Give the value in ohm\n- If there are uncertainties, only state the best estimate, e.g. write 1.03 and not 1.01-1.05\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "ohm" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "", + "Uncontrolled" + ] + } + } + ] + }, + "name": "temperature_load_condition", + "description": "The load situation of the temperature during the outdoor measurement.\n- If the temperature is constant during the entire stability measurement, state this as \u2018Constant\u2019.\n- If there is a cycling between colder and hotter conditions, state this as \u2018Cycled\u2019\n- If the temperature varies in an uncontrolled way, state this as \u2018Uncontrolled\u2019\n- This category was included after the projects initial phase wherefor the list of reported categories is\nshort. Thus, be prepared to expand the given list of alternatives in the data template.\nExample:\nConstant\nUncontrolled\nCycled", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "nan; nan", + "15; 60" + ] + } + } + ] + }, + "name": "temperature_range", + "description": "The temperature range during the outdoor measurement\n- Separate the lower and upper bound by a semicolon.\n- For constant values, state only that value.\n- If there are uncertainties, only state the best estimate, e.g. write 1 and not 0.90-1.1\n- State unknown values as \u2018nan\u2019\nExample:\n30\n-10; 85\nnan", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "temperature_tmodule", + "description": "The effective temperature of the module during peak hours.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "degree_Celsius" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "periodic_JV_measurements", + "description": "TRUE if the outdoor measurement periodically is interrupted for JV-measurements.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "periodic_JV_measurements_time_between_measurements", + "description": "The average time between JV-measurement during the outdoor measurement.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_initial_value", + "description": "The efficiency, PCE, of the cell before the measurement routine starts\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "PCE_burn_in_observed", + "description": "TRUE if the performance has a relatively fast initial decay after which the decay rate stabilises at a lower level.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_end_of_experiment", + "description": "The efficiency, PCE, of the cell at the end of the experiment\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_T95", + "description": "The time after which the cell performance has degraded by 5 % with respect to the initial performance.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_Ts95", + "description": "The time after which the cell performance has degraded by 5 % with respect to the performance after any initial burn in phase.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_T80", + "description": "The time after which the cell performance has degraded by 20 % with respect to the initial performance.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_Ts80", + "description": "The time after which the cell performance has degraded by 20 % with respect to the performance after any initial burn in phase.\n- If there are uncertainties, only state the best estimate, e.g. write 1000 and not 950-1050\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_Te80", + "description": "An estimated T80 for cells that was not measured sufficiently long for them to degrade by 20 %. with respect to the initial performance.\n- This value will by definition have a significant uncertainty to it, as it is not measured but extrapolated under the assumption linearity but without a detailed and stabilised extrapolation protocol. This estimate is, however, not without value as it enables a ruff comparison between all cells for with the stability has been measured.\n- If there is an experimental T80, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_Tse80", + "description": "An estimated T80s for cells that was not measured sufficiently long for them to degrade by 20 %. with respect to the performance after any initial burn in phase.\n- This value will by definition have a significant uncertainty to it, as it is not measured but extrapolated under the assumption linearity but without a detailed and stabilised extrapolation protocol. This estimate is, however, not without value as it enables a ruff comparison between all cells for with the stability has been measured.\n- If there is an experimental T80s, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hour" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "PCE_after_1000_h", + "description": "The efficiency, PCE, of the cell after 1000 hours\n- Give the efficiency in %\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "power_generated", + "description": "The yearly power generated during the measurement period in kWh/year/m^2.\n- If there are uncertainties, only state the best estimate, e.g. write 20.5 and not 19-20\n- If unknown or not applicable, leave this field empty.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "link_raw_data_for_outdoor_trace", + "description": "A link to where the data file for the measurement is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for stability data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "detaild_weather_data_available", + "description": "TRUE if detailed weather data is available for the measurement period", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "link_detailed_weather_data", + "description": "A link to where the data file for the measurement is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for stability data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "spectral_data_available", + "description": "TRUE measured spectral data are available for the measurement period", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "link_spectral_data", + "description": "A link to where the data file for the measurement is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for stability data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "irradiance_measured", + "description": "TRUE measured irradiance data are available for the measurement period", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "" + ] + } + } + ] + }, + "name": "link_irradiance_data", + "description": "A link to where the data file for the measurement is stored\n- This is a beta feature. The plan is to create a file repository where the raw files for stability data can be stored and disseminated. With the link and associated protocols, it should be possible to programmatically access and analyse the raw data.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "eln": [ + { + "lane_width": "400px" + } + ] + }, + "name": "PerovskiteSolarCell", + "description": "This schema is adapted to map the data in the [Perovskite Solar Cell Database Project](https://www.perovskitedatabase.com/). The descriptions in the quantities\nrepresent the instructions given to the user who manually curated the data.", + "base_sections": [ + "/packages/20/section_definitions/1" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ref", + "sub_section": "/packages/6/section_definitions/0" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "cell", + "sub_section": "/packages/6/section_definitions/1" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "module", + "sub_section": "/packages/6/section_definitions/2" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "substrate", + "sub_section": "/packages/6/section_definitions/3" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "etl", + "sub_section": "/packages/6/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "perovskite", + "sub_section": "/packages/6/section_definitions/5" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "perovskite_deposition", + "sub_section": "/packages/6/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "htl", + "sub_section": "/packages/6/section_definitions/7" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "backcontact", + "sub_section": "/packages/6/section_definitions/8" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "add", + "sub_section": "/packages/6/section_definitions/9" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "encapsulation", + "sub_section": "/packages/6/section_definitions/10" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "jv", + "sub_section": "/packages/6/section_definitions/12" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "stabilised", + "sub_section": "/packages/6/section_definitions/13" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "eqe", + "sub_section": "/packages/6/section_definitions/14" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "stability", + "sub_section": "/packages/6/section_definitions/15" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "outdoor", + "sub_section": "/packages/6/section_definitions/16" + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 7, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.eln", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "ElnBaseSection", + "description": "A generic abstract base section for ELNs that provides a few commonly used properties. If you inherit from this section, but do not need some quantities, list those\nquantities in the `eln.hide` annotation of your inheriting section definition.\n\nBesides predefining some quantities, these base sections will add some metadata\nto NOMAD's search. A particular example are `tags`, if you define a string\nor enum quantity in your sections named `tags`, its values will be searchable.", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "name", + "description": "A short human readable and descriptive name.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "lab_id", + "description": "A id string that is unique at least for the lab that produced this data.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RichTextEditQuantity" + } + ] + }, + "name": "description", + "description": "A humand description. This provides room for human readable information that could not be captured in the ELN.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "ElnActivityBaseSection", + "description": "A generic abstract base section for ELNs that provides a few commonly used for laboratory activities, e.g. processes, characterizations, measurements, etc.", + "base_sections": [ + "/packages/7/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "DateTimeEditQuantity" + } + ] + }, + "name": "datetime", + "description": "The date and time when this activity was done.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "method", + "description": "A short consistent handle for the applied method.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "AuthorEditQuantity" + } + ] + }, + "name": "user", + "description": "The corresponding user for the activity.", + "type": { + "type_kind": "Author", + "type_data": "Author" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "ElnWithFormulaBaseSection", + "description": "A generic abstract base section for ELNs that provides a few commonly used for items with a chemical formula, e.g. chemicals or samples.", + "base_sections": [ + "/packages/7/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "chemical_formula", + "description": "The chemical formula. This will be used directly and indirectly in the search. The formula will be used itself as well as the extracted chemical elements.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Chemical", + "description": "A ELN base section that can be used for chemicals.", + "base_sections": [ + "/packages/7/section_definitions/2" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "Sample", + "description": "A ELN base section that can be used for samples.", + "base_sections": [ + "/packages/7/section_definitions/2" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Instrument", + "description": "A ELN base section that can be used for instruments.", + "base_sections": [ + "/packages/7/section_definitions/0" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "Process", + "description": "A ELN base section that can be used for processes.", + "base_sections": [ + "/packages/7/section_definitions/1" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "Measurement", + "description": "A ELN base section that can be used for measurements.", + "base_sections": [ + "/packages/7/section_definitions/1" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "SampleID", + "description": "A ELN base section that can be used for sample IDs. If the `sample_owner`, `sample_short_name`, `\u00ecnstitute`, and `creation_datetime`\nquantities are provided, the sample_id will be automatically created as a combination\nof these four quantities.", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "institute", + "description": "Alias/short name of the home institute of the owner, i.e. *HZB*.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "sample_owner", + "description": "Name or alias of the process operator, e.g. jmp", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "DateTimeEditQuantity" + } + ] + }, + "name": "creation_datetime", + "description": "Creation date of the sample.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "sample_short_name", + "description": "A short name of the sample (the identifier scribed on the smaple,\nor in the sample container), e.g. 4001-8, YAG-2-34.\nThis is to be managed and decided internally by the labs,\nalthough we recomend to avoid the following characters on it: \"_\", \"/\", \"\" and \".\"", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "sample_id", + "description": "Full sample id. Ideally a human readable sample id convention,\nwhich is simple, understandable and still having chances of becoming unique.\nIf the `sample_owner`, `sample_short_name`, `\u00ecnstitute`, and `creation_datetime`\nare provided, this will be formed automatically by joining these components by an underscore (_).\nSpaces in any of the individual components will be replaced with hyphens (-).\nAn example would be hzb_oah_20200602_4001-08", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "ReferenceEditQuantity" + } + ] + }, + "name": "children", + "more": { + "descriptions": "A reference to a sample which are children of this one." + }, + "type": { + "type_kind": "reference", + "type_data": "/packages/7/section_definitions/8" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "ReferenceEditQuantity" + } + ] + }, + "name": "parents", + "more": { + "descriptions": "A reference to sample which are parents of this one." + }, + "type": { + "type_kind": "reference", + "type_data": "/packages/7/section_definitions/8" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "PublicationReference", + "description": "A ELN base section that can be used for references.", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [] + } + } + ] + }, + "name": "DOI_number", + "description": "The DOI number referring to the published paper or dataset where the data can be found.\nExamples:\n10.1021/jp5126624\n10.1016/j.electacta.2017.06.032", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "publication_authors", + "description": "The authors of the publication.\nIf several authors, end with et al. If the DOI number is given correctly,\nthis will be extracted automatically from www.crossref.org", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "publication_date", + "description": "Publication date.\nIf the DOI number is given correctly,\nthis will be extracted automatically from www.crossref.org", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "journal", + "description": "Name of the journal where the data is published.\nIf the DOI number is given correctly,\nthis will be extracted automatically from www.crossref.org", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "publication_title", + "description": "Title of the publication.\nIf the DOI number is given correctly,\nthis will be extracted automatically from www.crossref.org", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "SolarCellDefinition", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [] + } + } + ] + }, + "name": "stack_sequence", + "description": "The stack sequence describing the cell. Use the following formatting guidelines\n- Start with the substrate to the left and list the materials in each layer of the device\n- If two materials, e.g. A and B, are mixed in one layer, list the materials in alphabetic order and separate them with semicolons, as in (A; B)\n- The absorber layer in other databases is commonly stated with a generaic name as \u201cPerovskite\u201d, regardless of composition, mixtures, dimensionality etc.\n There are other fields to describe in depth the absorber layer.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "solar_cell_area", + "description": "The total cell area in cm^2.\nThe total area is defined as the area that would provide photovoltaic performance.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Unknown", + "Pn-Heterojunction", + "Front contacted", + "Back contacted", + "pin", + "nip", + "Schottky" + ] + } + } + ] + }, + "name": "architecture", + "description": "The cell architecture with respect to the direction of current flow and\nthe order in which layers are deposited.\nThe two most common are nip (also referred to as normal) and pin (also referred to as inverted)\nbut there are also a few others, e.g. Back contacted.\n- *nip* architecture means that the electrons are collected at the substrate side.\nThe typical example is in perovskite solar cells when a TiO2 electron selective contact is deposited\nbetween the perovskite and the substrate (e.g. SLG | FTO | TiO2-c | Perovskite | \u2026)\n- *pin* architecture means that it instead is the holes that are collected at the substrate side. The typical example is when a PEDOT:PSS hole selective contact is deposited between the perovskite and the substrate (e.g. SLG | FTO | PEDOT:PSS |Perovskite | \u2026)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "SolarCellLayer", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "Substrate", + "Absorber", + "Hole Transport Layer", + "Electron Transport Layer", + "Contact", + "Buffer", + "p-type contact", + "n-type contact", + "other" + ] + } + } + ] + }, + "name": "solar_cell_layer_type", + "description": "type of the layer", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [] + } + } + ] + }, + "name": "layer_name", + "description": "The name of the layer.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "layer_thickness", + "description": "The thickness of the layer in nm.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "nanometer" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "SolarCellBaseSectionWithOptoelectronicProperties", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "bandgap", + "description": "The bandgap of the solar cell.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "electron_volt" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "SolarCellJV", + "more": { + "label_quantity": "cell_name" + }, + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ], + "browser": [ + { + "adaptor": "RawFileAdaptor" + } + ] + }, + "name": "data_file", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "certified_values", + "description": "TRUE if the IV data is measured by an independent and certification institute.\nIf your solar simulator is calibrated by a calibrated reference diode,\nthat does not count as a certified result.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity", + "props": { + "suggestions": [ + "AIST, National Institute of Advanced Industrial Science and Technology", + "CPVT, National Center of Supervision and Inspection on Solar Photovoltaic Products Quality of China", + "CREST, Photovoltaic Meaasurement and calibration Laboratory at Universit of Loughborough", + "CSIRO, PV Performance Lab at Monash University", + "Fraunhofer ISE", + "Institute of Metrology (NIM) of China", + "KIER, Korea Institute of Energy Research", + "NIM, National Institute of Metrology of China", + "NREL", + "National Institute ofMetrology, China", + "Newport", + "Newport Corporation", + "PVEVL, National Central University, Taiwan", + "Photovoltaic and Wind Power Systems Quality Test Center, Chinese Academy of Sciences", + "Quality supervision\uff06Testing Center of Chemical\uff06Physical Power Sources of Information Industry", + "SIMIT, Shanghai Institute of Microsystem and Information Technology", + "Solar Power Lab at Arizona State University" + ] + } + } + ] + }, + "name": "certification_institute", + "description": "The name of the certification institute that has measured the certified device.\nExample:\nNewport\nNIM, National Institute of Metrology of China\nKIER, Korea Institute of Energy Research", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "light_intensity", + "description": "The light intensity during the IV measurement\n- If there are uncertainties, only state the best estimate, e.g. write 100 and not 90-100.\n- Standard AM 1.5 illumination correspond to 100 mW/cm2\n- If you need to convert from illumination given in lux; at 550 nm, 1 mW/cm2 corresponds to 6830 lux. Be aware that the conversion change with the spectrum used. As a rule of thumb for general fluorescent/LED light sources, around 0.31mW corresponded to 1000 lux. If your light intensity is measured in lux, it probably means that your light spectra deviates quite a lot from AM 1.5, wherefore it is very important that you also specify the light spectra in the next column.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliwatt / centimeter ** 2", + "default": 100.0 + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "open_circuit_voltage", + "description": "Open circuit voltage.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "short_circuit_current_density", + "description": "Short circuit current density.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "fill_factor", + "description": "Fill factor.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "efficiency", + "description": "Power conversion efficiency.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "potential_at_maximum_power_point", + "description": "The potential at the maximum power point, Vmp.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "current_density_at_maximun_power_point", + "description": "The current density at the maximum power point, *Jmp*.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "series_resistance", + "description": "The series resistance as extracted from the *J-V* curve.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2 * ohm" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "shunt_resistance", + "description": "The shunt resistance as extracted from the *J-V* curve.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "centimeter ** 2 * ohm" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "n_values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "SolarCellJVCurve", + "base_sections": [ + "/packages/7/section_definitions/13" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "cell_name", + "description": "Cell identification name.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "voltage", + "y": "current_density" + } + ] + }, + "name": "current_density", + "description": "Current density array of the *JV* curve.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "voltage", + "y": "current_density" + } + ] + }, + "name": "voltage", + "description": "Voltage array of the of the *JV* curve.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "volt" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "eln": [ + { + "lane_width": "600px" + } + ] + }, + "name": "SolarCellEQE", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ], + "browser": [ + { + "adaptor": "RawFileAdaptor" + } + ] + }, + "name": "eqe_data_file", + "description": "Drop here your eqe file and click save for processing.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "header_lines", + "description": "Number of header lines in the file. Edit in case your file has a header.", + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "default": 0 + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "light_bias", + "description": "The light intensity of any bias light during the EQE measurement.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliwatt / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "bandgap_eqe", + "description": "Bandgap derived from the EQE spectrum.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "integrated_jsc", + "description": "The integrated short circuit current density $J_{SC}$ from the product of the EQE spectrum\nwith the *AM 1.5G* sun spectrum.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "integrated_j0rad", + "description": "The integrated $J_{0, Rad}$ derived from the EQE data.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "milliampere / centimeter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "voc_rad", + "description": "Radiative $V_{OC}$ derived from the EQE data in V.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "urbach_energy", + "description": "Urbach energy fitted from the eqe in eV.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "urbach_energy_fit_std_dev", + "description": "Standard deviation of the fitted Urbach energy parameter from the eqe in eV.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "n_values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "n_raw_values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "photon_energy_array", + "y": "raw_eqe_array" + } + ] + }, + "name": "raw_eqe_array", + "description": "EQE array of the spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_raw_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "raw_photon_energy_array", + "y": "raw_eqe_array" + } + ] + }, + "name": "raw_photon_energy_array", + "description": "Raw Photon energy array of the eqe spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_raw_values" + ], + "unit": "electron_volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "raw_wavelength_array", + "y": "raw_eqe_array" + } + ] + }, + "name": "raw_wavelength_array", + "description": "Raw wavelength array of the eqe spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_raw_values" + ], + "unit": "nanometer" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "photon_energy_array", + "y": "eqe_array" + } + ] + }, + "name": "eqe_array", + "description": "EQE array of the spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "wavelength_array", + "y": "eqe_array" + } + ] + }, + "name": "wavelength_array", + "description": "Interpolated/extrapolated wavelength array with *E<sub>u</sub>* of the eqe spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "nanometer" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "photon_energy_array", + "y": "eqe_array" + } + ] + }, + "name": "photon_energy_array", + "description": "Interpolated/extrapolated photon energy array with a *E<sub>u</sub>* of the eqe spectrum", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "electron_volt" + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 8, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.eln.material_library", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "Chemical", + "description": "A chemical available in the lab.", + "more": { + "label_quantity": "formula" + }, + "base_sections": [ + "/packages/20/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "chemical_name", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "formula", + "description": "Empirical formula of the chemical (Hill notation).", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RadioEnumEditQuantity" + } + ] + }, + "name": "form", + "description": "Physical state of the chemical.", + "type": { + "type_kind": "Enum", + "type_data": [ + "solid", + "powder", + "liquid", + "gas" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "supplier", + "description": "Supplier of the chemical.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "sku_no", + "description": "Stock keeping unit of the chemical. (e.g. 244619-50G)", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "DateTimeEditQuantity" + } + ] + }, + "name": "opening_date", + "description": "Opening date of the chemical.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "impurities", + "description": "Descriptions of the impurities of the product.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "cas_number", + "description": "The CAS number is a unique and unambiguous\nidentifier for a specific substance.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ], + "browser": [ + { + "adaptor": "RawFileAdaptor" + } + ] + }, + "name": "sds_link", + "description": "The corresponding Safety Data Sheet (SDS) of the product.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RichTextEditQuantity" + } + ] + }, + "name": "comments", + "description": "Remarks about the chemical beyond the\ntypically collected information. Here you can collect information\nabout your experience using this chemical, for example if it might\nhave been contaminated during an experiment", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Maintenance", + "more": { + "label_quantity": "datetime" + }, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "DateTimeEditQuantity" + } + ] + }, + "name": "datetime", + "description": "The date and time of the maintenance.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "AutocompleteEditQuantity" + } + ] + }, + "name": "maintainer", + "description": "Name or alias of the persen that performed the maintenance.", + "type": { + "type_kind": "Enum", + "type_data": [ + "Markus Scheidgen", + "Pepe Marquez", + "Sandor Brockhauser", + "Sherjeel Shabih", + "Mohammad Nakhaee", + "David Sitker" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RichTextEditQuantity" + } + ] + }, + "name": "description", + "description": "Description of what was done to the instrument.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Instrument", + "description": "An instrument available in the lab.", + "base_sections": [ + "/packages/20/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "name", + "description": "Name of the instrument used", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RichTextEditQuantity" + } + ] + }, + "name": "description", + "description": "Description of the instrument. May include images, free text\nand tables", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ], + "browser": [ + { + "adaptor": "RawFileAdaptor" + } + ] + }, + "name": "user_manual", + "description": "Link to pdf of the user manual", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ], + "browser": [ + { + "adaptor": "RawFileAdaptor" + } + ] + }, + "name": "certificate", + "description": "Link to pdf of the instrument's certificates", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "maintenance", + "sub_section": "/packages/8/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Process", + "description": "Any physical process applied to the sample.", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "AutocompleteEditQuantity" + } + ] + }, + "name": "operator", + "description": "Name or alias of the process operator.", + "type": { + "type_kind": "Enum", + "type_data": [ + "Markus Scheidgen", + "Pepe Marquez", + "Sandor Brockhauser", + "Sherjeel Shabih", + "Mohammad Nakhaee", + "David Sitker" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "DateTimeEditQuantity" + } + ] + }, + "name": "datetime", + "description": "Finishing date and time of the process.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "ReferenceEditQuantity" + } + ] + }, + "name": "instrument", + "more": { + "descriptions": "The instrument used for this process." + }, + "type": { + "type_kind": "reference", + "type_data": "/packages/8/section_definitions/2" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "ReferenceEditQuantity" + } + ] + }, + "name": "chemicals", + "more": { + "descriptions": "The chemicals used in this process" + }, + "type": { + "type_kind": "reference", + "type_data": "/packages/8/section_definitions/0" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "BoolEditQuantity" + } + ] + }, + "name": "creates_layer", + "type": { + "type_kind": "python", + "type_data": "bool" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RichTextEditQuantity" + } + ] + }, + "name": "comments", + "description": "Remarks about the process that cannot be seen from the data.\nMight include rich text, images and potentially tables", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "PVDEvaporation", + "description": "The physical vapor deposition (PVD) of a layer by evaporation.", + "base_sections": [ + "/packages/8/section_definitions/3" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_values", + "description": "Number of registered time values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "process_time", + "description": "The temperature set in the substrate heater", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "process_time", + "y": "set_substrate_temperature" + } + ] + }, + "name": "set_substrate_temperature", + "description": "The temperature set in the substrate heater", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "process_time", + "y": "substrate_temperature" + } + ] + }, + "name": "substrate_temperature", + "description": "The temperature measured in the substrate holder", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "process_time", + "y": "chamber_pressure" + } + ] + }, + "name": "chamber_pressure", + "description": "Data array of the values of the pressure during the process", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity", + "props": { + "maxValue": 4, + "minValue": 0 + } + } + ] + }, + "name": "number_crucibles", + "description": "Number of crucibles active in the chamber", + "type": { + "type_kind": "numpy", + "type_data": "int64" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ], + "browser": [ + { + "adaptor": "RawFileAdaptor" + } + ] + }, + "name": "data_file", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Targets", + "description": "Targets available in the lab for PLD or Sputtering deposition.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "target_name", + "description": "Description of the target including information of its\nchemistry nature . Examples: *Al doped ZnO* or simply *BaZrO3*", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "elements_in_target", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "target_diameter", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "supplier", + "description": "Supplier of the target.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "opening_date", + "description": "Opening date of the chemical.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "impurities", + "description": "Descriptions of the impurities of the product.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "cas_number", + "description": "The CAS number is a unique and unambiguous\nidentifier for a specific substance.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "sds_link", + "description": "A link to the corresponding Safety Data Sheet (SDS)\nof the product.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "comments", + "description": "Remarks about the target beyond the\ntypically collected information in the otehr metadata fields.\nHere you can collect information about your experience using\nthis target, or additional observations", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "PLDDeposition", + "description": "The deposition process of a layer by Pulsed Laser Deposition (PLD) method.", + "base_sections": [ + "/packages/8/section_definitions/3" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "targets", + "sub_section": "/packages/8/section_definitions/5", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "EbeamEvaporation", + "description": "The physical vapor deposition (PVD) of a layer by e-beam evaporation.", + "base_sections": [ + "/packages/8/section_definitions/3" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "HotPlateAnnealing", + "base_sections": [ + "/packages/8/section_definitions/3" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "hotplate_temperature", + "description": "The temperature set for the hot plate.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "annealing_time", + "description": "Time of the sample on the hot plate.", + "more": { + "props": { + "minValue": 0 + } + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity", + "props": { + "minValue": 0, + "maxValue": 1 + } + } + ] + }, + "name": "relative_humidity", + "description": "Relative humidity of the atmosphere in which the experiment was performed.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "label": "Process atmosphere", + "component": "RadioEnumEditQuantity" + } + ] + }, + "name": "instrument_atmosphere", + "description": "Location or atmosphere in which the process was conducted.", + "type": { + "type_kind": "Enum", + "type_data": [ + "humidity chamber", + "glove box", + "ambient" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "TubeFurnaceAnnealing", + "base_sections": [ + "/packages/8/section_definitions/3" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "RTPAnnealing", + "base_sections": [ + "/packages/8/section_definitions/3" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "SpinCoating", + "base_sections": [ + "/packages/8/section_definitions/3" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "ChemicalBathDeposition", + "base_sections": [ + "/packages/8/section_definitions/3" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "eln": [ + {} + ] + }, + "name": "Processes", + "description": "Experiment event which generally change the sample or a new component is added to it. For example, in the context of thin films, cleaning the substrate or\nthe deposition of a new layer by evaporation are `processes`.", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "pvd_evaporation", + "sub_section": "/packages/8/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "pld_deposition", + "sub_section": "/packages/8/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "ebeam_evaporation", + "sub_section": "/packages/8/section_definitions/7" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "hotplate_annealing", + "sub_section": "/packages/8/section_definitions/8" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "tubefurnace_annealing", + "sub_section": "/packages/8/section_definitions/9" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "rtp_annealing", + "sub_section": "/packages/8/section_definitions/10" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "spin_coating", + "sub_section": "/packages/8/section_definitions/11" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "chemical_bath_deposition", + "sub_section": "/packages/8/section_definitions/12" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "Measurement", + "description": "Any measurement performed on the sample.", + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "ReferenceEditQuantity" + } + ] + }, + "name": "instrument", + "more": { + "descriptions": "The instrument used for this measurement." + }, + "type": { + "type_kind": "reference", + "type_data": "/packages/8/section_definitions/2" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RichTextEditQuantity" + } + ] + }, + "name": "comments", + "description": "Remarks about the process that cannot be seen from the data.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "XrayFluorescence", + "description": "X-ray fluorescence is a technique typically used to obtain information about the chemical composition of a sample.", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "XrayDiffraction", + "description": "X-ray diffraction is a technique typically used to characterize the structural properties of crystalline materials. The data contains `two_theta` values of the scan\nthe corresponding counts collected for each channel", + "base_sections": [ + "/packages/8/section_definitions/14" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity", + "label": "Length from the left substrate margin" + } + ] + }, + "name": "start_position_x", + "description": "Length from the left substrate margin to the spot of\nthe first scan. The sample should be oriented with the\nlabel at the bottom left corner", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity", + "label": "Length from the bottom substrate margin" + } + ] + }, + "name": "start_position_y", + "description": "Length from the bottom substrate margin to the spot of\nthe first scan. The sample should be oriented with the\nlabel at the bottom left corner.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_values", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "two_theta", + "y": "intensity" + } + ] + }, + "name": "two_theta", + "description": "The 2-theta range of the difractogram", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "radian" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "q_vector", + "y": "intensity" + } + ] + }, + "name": "q_vector", + "description": "The scattering vector *Q* of the difractogram", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "1 / meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "plot": [ + { + "x": "two_theta", + "y": "intensity" + } + ] + }, + "name": "intensity", + "description": "The count at each 2-theta value, dimensionless", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "omega", + "description": "The omega range of the difractogram", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "radian" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity", + "label": "Current of the X-ray tube", + "props": { + "minValue": 10000.0, + "maxValue": 40000.0 + } + } + ] + }, + "name": "xray_tube_current", + "description": "Current of the X-ray tube", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "ampere" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity", + "label": "Voltage of the X-ray tube", + "props": { + "minValue": 10000.0, + "maxValue": 40000.0 + } + } + ] + }, + "name": "xray_tube_voltage", + "description": "Voltage of the X-ray tube", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "volt" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "kalpha_one", + "description": "Wavelength of the K\u03b11 line", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "angstrom" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "kalpha_two", + "description": "Wavelength of the K\u03b12 line", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "angstrom" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "ratio_kalphatwo_kalphaone", + "description": "K\u03b12/K\u03b11 intensity ratio", + "type": { + "type_kind": "numpy", + "type_data": "float64" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "kbeta", + "description": "Wavelength of the K\u03b2 line", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "angstrom" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "scan_axis", + "description": "Axis scanned", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "integration_time", + "description": "Integration time per channel", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "FileEditQuantity" + } + ] + }, + "name": "data_file", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "name": "RamanSpectroscopy", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "section_definitions", + "name": "Resistivity", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "section_definitions", + "name": "SolarSimulator", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "section_definitions", + "name": "CapacitanceVoltage", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "section_definitions", + "name": "EQE", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "section_definitions", + "name": "SteadyStatePL", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "section_definitions", + "name": "PLImaging", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 24, + "m_parent_sub_section": "section_definitions", + "name": "TimeResolvedPL", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 25, + "m_parent_sub_section": "section_definitions", + "name": "UVVisNIRImaging", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 26, + "m_parent_sub_section": "section_definitions", + "name": "UVVisNIRSpectroscopy", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 27, + "m_parent_sub_section": "section_definitions", + "name": "TerahertzSpectroscopy", + "base_sections": [ + "/packages/8/section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 28, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "eln": [ + {} + ] + }, + "name": "Measurements", + "description": "Experimental procedure in which a sample gets characterized by a technique. For example, a measurment by X-ray diffraction to characterize\nthe structural properties of an specimen or X-ray fluorescence\nto characterize its composition.", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "xray_diffraction", + "sub_section": "/packages/8/section_definitions/16", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "xray_fluorescence", + "sub_section": "/packages/8/section_definitions/15", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "raman_spectroscopy", + "sub_section": "/packages/8/section_definitions/17", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "resistivity", + "sub_section": "/packages/8/section_definitions/18", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "solar_simulator", + "sub_section": "/packages/8/section_definitions/19", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "capacitance_voltage", + "sub_section": "/packages/8/section_definitions/20", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "eqe", + "sub_section": "/packages/8/section_definitions/21", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "steady_state_pl", + "sub_section": "/packages/8/section_definitions/22", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "pl_imaging", + "sub_section": "/packages/8/section_definitions/23", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "time_resolved_pl", + "sub_section": "/packages/8/section_definitions/24", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "uv_vis_nir_imaging", + "sub_section": "/packages/8/section_definitions/25", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "uv_vis_spectroscopy", + "sub_section": "/packages/8/section_definitions/26", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "terahertz_spectroscopy", + "sub_section": "/packages/8/section_definitions/27", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 29, + "m_parent_sub_section": "section_definitions", + "name": "DerivedData", + "description": "Additional information that is gained from already existing data i.e. from `processes`, `measurements` and/or other `derived_data`. Examples for these are smoothing of data,\nbackground subtraction, calculations (e.g. transmittance from raw spectra,\nbandgap from the absorption coefficient) or simulations." + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 30, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "eln": [ + {} + ] + }, + "name": "PhysicalProperties", + "description": "It describes physical properties of the layer, like its dimensions in the *x* and *y* directions or its thickness.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "x_length", + "description": "Dimension of the layer in the *x*-direction", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "y_length", + "description": "Dimension of the layer in the *y*-direction", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "thickness", + "description": "Thickness of the layer", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ], + "unit": "meter" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 31, + "m_parent_sub_section": "section_definitions", + "name": "CompositionalProperties", + "description": "It describes the chemical properties of the layer, like the *elements* contained in the layer or the *compounds* if they are known. These properties can be filled with\nknowledge obtained from `measurements`.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "elements", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 32, + "m_parent_sub_section": "section_definitions", + "name": "StructuralProperties" + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 33, + "m_parent_sub_section": "section_definitions", + "name": "OptoelectronicProperties" + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 34, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "eln": [ + {} + ] + }, + "name": "Layer", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "EnumEditQuantity" + } + ] + }, + "name": "layer_type", + "description": "type of the layer", + "type": { + "type_kind": "Enum", + "type_data": [ + "substrate", + "absorber layer", + "metal contact", + "buffer layer", + "p-type contact", + "n-type contact" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "label": "Creation date and time of the layer.", + "component": "DateTimeEditQuantity" + } + ] + }, + "name": "layer_creation_datetime", + "description": "Creation date of the layer.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "layer_position", + "description": "Position of the layer within\nthe stack counting from substrate = 0; not necessarily gapless", + "type": { + "type_kind": "numpy", + "type_data": "int64" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "layer_origin", + "description": "A link to the `process` where the layer was created.", + "type": { + "type_kind": "reference", + "type_data": "/packages/8/section_definitions/3" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "x_length", + "description": "Dimension of the layer in the *x*-direction", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "y_length", + "description": "Dimension of the layer in the *y*-direction", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "NumberEditQuantity" + } + ] + }, + "name": "thickness", + "description": "Thickness of the layer", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "elements", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "chemical_formula", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 35, + "m_parent_sub_section": "section_definitions", + "name": "Projects", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "project_acronym", + "description": "Acronim or short name of the project.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "project_long_name", + "description": "Long name of the prioject.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "project_description", + "description": "A description of the project activities.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "project_website", + "description": "Project website.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "funding_agency", + "description": "The physical state of the sample.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "gran_agreement_id", + "description": "ID of the contract of that is funding this project.", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 36, + "m_parent_sub_section": "section_definitions", + "name": "Sample", + "description": "Sample in which one or various properties can vary across the area of the substrate,\nthus containing subsamples whithin.\nAn example would be a subtrate with a deposited film on top in which\nthe chemical compostion of the film varies in the x and y directions.", + "base_sections": [ + "/packages/20/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "AutocompleteEditQuantity" + } + ] + }, + "name": "sample_owner", + "description": "Name or alias of the process operator.", + "type": { + "type_kind": "Enum", + "type_data": [ + "Markus Scheidgen", + "Pepe Marquez", + "Sandor Brockhauser", + "Sherjeel Shabih", + "Mohammad Nakhaee", + "David Sitker" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "sample_id", + "description": "Full sample id.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "sample_name", + "description": "Short name of the sample (the id on the substrate), e.g. `4001-8`.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "DateTimeEditQuantity" + } + ] + }, + "name": "creation_datetime", + "description": "Creation date of the sample.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "StringEditQuantity" + } + ] + }, + "name": "institute", + "description": "Alias/short name of the home institute of the owner, i.e. `HZB`.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "eln": [ + { + "component": "RichTextEditQuantity" + } + ] + }, + "name": "description", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "processes", + "sub_section": "/packages/8/section_definitions/13" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "measurements", + "sub_section": "/packages/8/section_definitions/28" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "layers", + "sub_section": "/packages/8/section_definitions/34", + "repeats": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 9, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.tabulartree", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "TabularTreeNodeInfo", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "type": { + "type_kind": "Any" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "unit", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "TabularTreeLevel3", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "default": "<node name?>" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "info", + "sub_section": "/packages/9/section_definitions/0" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "TabularTreeLevel2", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "default": "<node name?>" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "info", + "sub_section": "/packages/9/section_definitions/0" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "nodes", + "sub_section": "/packages/9/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "TabularTreeLevel1", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "default": "<node name?>" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "info", + "sub_section": "/packages/9/section_definitions/0" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "nodes", + "sub_section": "/packages/9/section_definitions/2", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "TabularTree", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "default": "<node name?>" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "info", + "sub_section": "/packages/9/section_definitions/0" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "nodes", + "sub_section": "/packages/9/section_definitions/3", + "repeats": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 10, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.datamodel", + "description": "All generic entry metadata and related classes.", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "mongo": [ + "MongoDocument" + ], + "pydantic": [ + "PydanticModel" + ] + }, + "name": "Dataset", + "description": "A Dataset is attached to one or many entries to form a set of data.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ], + "elasticsearch": [ + "datasets.dataset_id" + ] + }, + "name": "dataset_id", + "description": "The unique identifier for this dataset as a string. It should be\na randomly generated UUID, similar to other nomad ids.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ], + "elasticsearch": [ + "datasets.dataset_name", + "datasets.dataset_name__suggestion" + ] + }, + "name": "dataset_name", + "description": "The human-readable name of the dataset as string. The dataset name must be\nunique for the user.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ] + }, + "name": "user_id", + "description": "The unique user_id of the owner and creator of this dataset. The owner\nmust not change after creation.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ], + "elasticsearch": [ + "datasets.doi" + ] + }, + "name": "doi", + "description": "The optional Document Object Identifier (DOI) associated with this dataset.\nNomad can register DOIs that link back to the respective representation of\nthe dataset in the nomad UI. This quantity holds the string representation of\nthis DOI. There is only one per dataset. The DOI is just the DOI name, not its\nfull URL, e.g. \"10.17172/nomad/2019.10.29-1\".", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ] + }, + "name": "pid", + "description": "The original NOMAD CoE Repository dataset PID. Old DOIs still reference\ndatasets based on this id. Is not used for new datasets.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ], + "elasticsearch": [ + "datasets.dataset_create_time" + ] + }, + "name": "dataset_create_time", + "description": "The date when the dataset was first created.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ], + "elasticsearch": [ + "datasets.dataset_modified_time" + ] + }, + "name": "dataset_modified_time", + "description": "The date when the dataset was last modified. An owned dataset\ncan only be extended after a DOI was assigned. A foreign dataset cannot be changed\nonce a DOI was assigned.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ], + "elasticsearch": [ + "datasets.dataset_type" + ] + }, + "name": "dataset_type", + "description": "The type determined if a dataset is owned, i.e. was created by\nthe authors of the contained entries; or if a dataset is foreign,\ni.e. it was created by someone not necessarily related to the entries.", + "type": { + "type_kind": "Enum", + "type_data": [ + "owned", + "foreign" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ] + }, + "name": "query", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "mongo": [ + "Mongo" + ] + }, + "name": "entries", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "EntryArchiveReference", + "more": { + "label": "ArchiveReference" + }, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_references.target_reference" + ] + }, + "name": "target_reference", + "description": "The full url like reference of the the target.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_references.target_entry_id" + ] + }, + "name": "target_entry_id", + "description": "The id of the entry containing the target.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_references.target_name" + ] + }, + "name": "target_name", + "description": "The name of the target quantity/section.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_references.target_path" + ] + }, + "name": "target_path", + "description": "The path of the target quantity/section in its archive.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_references.source_name" + ] + }, + "name": "source_name", + "description": "The name of the source (self) quantity/section in its archive.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_references.source_path" + ] + }, + "name": "source_path", + "description": "The path of the source (self) quantity/section in its archive.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_references.source_quantity" + ] + }, + "name": "source_quantity", + "description": "A reference to the quantity definition that defines the reference", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "EntryMetadata", + "more": { + "label": "Metadata" + }, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "upload_id" + ] + }, + "name": "upload_id", + "description": "The persistent and globally unique identifier for the upload of the entry", + "categories": [ + "/packages/10/category_definitions/1" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "upload_name" + ] + }, + "name": "upload_name", + "description": "The user provided upload name", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "auth_level": [ + "AuthLevel.admin" + ], + "elasticsearch": [ + "upload_create_time" + ] + }, + "name": "upload_create_time", + "description": "The date and time when the upload was created in nomad", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_id" + ] + }, + "name": "entry_id", + "description": "A persistent and globally unique identifier for the entry", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/3" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_name", + "entry_name.prefix" + ] + }, + "name": "entry_name", + "description": "A brief human readable name for the entry.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "entry_type" + ] + }, + "name": "entry_type", + "description": "The main schema definition. This is the name of the section used for data.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "calc_id" + ] + }, + "name": "calc_id", + "description": "Legacy field name, use `entry_id` instead.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "entry_hash", + "description": "A raw file content based checksum/hash", + "categories": [ + "/packages/10/category_definitions/2" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "auth_level": [ + "AuthLevel.admin" + ], + "elasticsearch": [ + "entry_create_time" + ] + }, + "name": "entry_create_time", + "description": "The date and time when the entry was created in nomad", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/3", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "last_edit_time", + "description": "The date and time the user metadata was last edited.", + "categories": [ + "/packages/10/category_definitions/2" + ], + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "parser_name" + ] + }, + "name": "parser_name", + "description": "The NOMAD parser used for the last processing", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/3" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "mainfile", + "mainfile.path" + ] + }, + "name": "mainfile", + "description": "The path to the mainfile from the root directory of the uploaded files", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/3" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "mainfile_key", + "mainfile_key.path" + ] + }, + "name": "mainfile_key", + "description": "Key used to differentiate between different *child entries* of an entry.\nFor parent entries and entries that do not have any children, the value should\nbe empty.", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/3" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "files", + "files.path" + ] + }, + "name": "files", + "description": "The paths to the files within the upload that belong to this entry.\nAll files within the same directory as the entry's mainfile are considered the\nauxiliary files that belong to the entry.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "pid" + ] + }, + "name": "pid", + "description": "The unique, sequentially enumerated, integer PID that was used in the legacy\nNOMAD CoE. It allows to resolve URLs of the old NOMAD CoE Repository.", + "categories": [ + "/packages/10/category_definitions/2" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "raw_id" + ] + }, + "name": "raw_id", + "description": "The code specific identifier extracted from the entry's raw files by the parser,\nif supported.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "external_id" + ] + }, + "name": "external_id", + "description": "A user provided external id. Usually the id for an entry in an external database\nwhere the data was imported from.", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "published" + ] + }, + "name": "published", + "description": "Indicates if the entry is published", + "categories": [ + "/packages/10/category_definitions/1" + ], + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "m_annotations": { + "auth_level": [ + "AuthLevel.admin" + ], + "elasticsearch": [ + "publish_time" + ] + }, + "name": "publish_time", + "description": "The date and time when the upload was published in nomad", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "with_embargo" + ] + }, + "name": "with_embargo", + "description": "Indicated if this entry is under an embargo", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/3" + ], + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "embargo_length", + "description": "The length of the requested embargo period, in months", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "m_annotations": { + "auth_level": [ + "AuthLevel.admin" + ] + }, + "name": "license", + "description": "A short license description (e.g. CC BY 4.0), that refers to the\nlicense of this entry.", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "str" + }, + "default": "CC BY 4.0" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "processed" + ] + }, + "name": "processed", + "description": "Indicates that the entry is successfully processed.", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/3" + ], + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "last_processing_time" + ] + }, + "name": "last_processing_time", + "description": "The date and time of the last processing.", + "categories": [ + "/packages/10/category_definitions/2" + ], + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "processing_errors" + ] + }, + "name": "processing_errors", + "description": "Errors that occurred during processing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "nomad_version" + ] + }, + "name": "nomad_version", + "description": "The NOMAD version used for the last processing", + "categories": [ + "/packages/10/category_definitions/2" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "nomad_commit" + ] + }, + "name": "nomad_commit", + "description": "The NOMAD commit used for the last processing", + "categories": [ + "/packages/10/category_definitions/2" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "comment" + ] + }, + "name": "comment", + "description": "A user provided comment for this entry", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "references" + ] + }, + "name": "references", + "description": "User provided references (URLs) for this entry", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "external_db" + ] + }, + "name": "external_db", + "description": "The repository or external database where the original data resides", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "Enum", + "type_data": [ + "The Perovskite Database Project", + "EELS Data Base", + "Materials Project", + "AFLOW", + "OQMD", + "Kyoto Phonopy Database" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "origin" + ] + }, + "name": "origin", + "description": "A short human readable description of the entries origin. Usually it is the\nhandle of an external database/repository or the name of the main author.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "m_annotations": { + "auth_level": [ + "AuthLevel.admin" + ], + "elasticsearch": [ + "main_author" + ] + }, + "name": "main_author", + "description": "The main author of the entry", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "User", + "type_data": "User" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "coauthors", + "description": "A user provided list of co-authors for the whole upload. These can view and edit the\nupload when in staging, and view it also if it is embargoed.", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "Author", + "type_data": "Author" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "entry_coauthors", + "description": "A user provided list of co-authors specific for this entry. This is a legacy field,\nfor new uploads, coauthors should be specified on the upload level only.", + "categories": [ + "/packages/10/category_definitions/2" + ], + "type": { + "type_kind": "Author", + "type_data": "Author" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "reviewers", + "description": "A user provided list of reviewers. Reviewers can see the whole upload, also if\nit is unpublished or embargoed", + "categories": [ + "/packages/10/category_definitions/1", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "User", + "type_data": "User" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "authors" + ] + }, + "name": "authors", + "description": "All authors (main author and co-authors)", + "type": { + "type_kind": "Author", + "type_data": "Author" + }, + "shape": [ + "0..*" + ], + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "writers" + ] + }, + "name": "writers", + "description": "All writers (main author, upload coauthors)", + "type": { + "type_kind": "User", + "type_data": "User" + }, + "shape": [ + "0..*" + ], + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "viewers" + ] + }, + "name": "viewers", + "description": "All viewers (main author, upload coauthors, and reviewers)", + "type": { + "type_kind": "User", + "type_data": "User" + }, + "shape": [ + "0..*" + ], + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "datasets" + ] + }, + "name": "datasets", + "description": "A list of user curated datasets this entry belongs to.", + "categories": [ + "/packages/10/category_definitions/2", + "/packages/10/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/10/section_definitions/0" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "domain" + ] + }, + "name": "domain", + "description": "The material science domain", + "type": { + "type_kind": "Enum", + "type_data": [ + "dft", + "ems" + ] + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 40, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "n_quantities" + ] + }, + "name": "n_quantities", + "description": "Number of metainfo quantities parsed from the entry.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "default": 0 + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 41, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "quantities", + "quantities.path" + ] + }, + "name": "quantities", + "description": "All quantities that are used by this entry.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 42, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "sections" + ] + }, + "name": "sections", + "description": "All sections that are present in this entry.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "optimade" + ] + }, + "name": "optimade", + "description": "Metadata used for the optimade API.", + "sub_section": "/packages/23/section_definitions/1" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "entry_references" + ] + }, + "name": "entry_references", + "sub_section": "/packages/10/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "EntryArchive", + "more": { + "label": "Entry" + }, + "base_sections": [ + "/packages/20/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "entry_id", + "description": "The unique primary id for this entry.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "processing_logs", + "description": "The processing logs for this entry as a list of structlog entries.", + "type": { + "type_kind": "Any" + }, + "shape": [ + "0..*" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "run", + "sub_section": "/packages/3/section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "measurement", + "sub_section": "/packages/4/section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "data", + "sub_section": "/packages/20/section_definitions/1" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "workflow", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/22/section_definitions/38", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "metadata" + ] + }, + "name": "metadata", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/10/section_definitions/2" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "results" + ] + }, + "name": "results", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/5/section_definitions/57" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "tabular_tree", + "sub_section": "/packages/9/section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "definitions", + "sub_section": "/packages/19/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "nexus", + "sub_section": "/packages/18/section_definitions/152" + } + ] + } + ], + "category_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 0, + "m_parent_sub_section": "category_definitions", + "name": "EditableUserMetadata", + "description": "NOMAD entry metadata quantities that can be edited by the user before or after publish." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 1, + "m_parent_sub_section": "category_definitions", + "name": "MongoUploadMetadata", + "description": "The field is defined on the Upload mongo document." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 2, + "m_parent_sub_section": "category_definitions", + "name": "MongoEntryMetadata", + "description": "The field is defined on the Entry mongo document." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 3, + "m_parent_sub_section": "category_definitions", + "name": "MongoSystemMetadata", + "description": "The field is managed directly by the system/process (or derived from data managed by the\nsystem/process), and should never be updated from an :class:`EntryMetadata` object." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 4, + "m_parent_sub_section": "category_definitions", + "name": "DomainMetadata", + "description": "NOMAD entry quantities that are determined by the uploaded data." + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 11, + "m_parent_sub_section": "packages", + "name": "nomad.parsing.tabular", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "TableRow", + "description": "Represents the data in one row of a table.", + "base_sections": [ + "/packages/20/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "table_ref", + "description": "A reference to the table that this row is contained in.", + "type": { + "type_kind": "reference", + "type_data": "/packages/11/section_definitions/1" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Table", + "description": "Represents a table with many rows.", + "base_sections": [ + "/packages/20/section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "row_refs", + "description": "References that connect to each row. Each row is stored in it individual entry.", + "type": { + "type_kind": "reference", + "type_data": "/packages/11/section_definitions/0" + }, + "shape": [ + "*" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "TableData", + "base_sections": [ + "/packages/20/section_definitions/0" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 12, + "m_parent_sub_section": "packages", + "name": "electronicparsers.crystal.metainfo.crystal", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "System", + "base_sections": [ + "/packages/1/section_definitions/6" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_crystal_family", + "description": "Crystal family.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_crystal_class", + "description": "Crystal class.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_crystal_spacegroup", + "description": "Crystal spacegroup string resembling Hermann\u2013Mauguin notation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_crystal_dimensionality", + "description": "System dimensionality.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_symmops", + "description": "Number of symmetry operators.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "ScfIteration", + "base_sections": [ + "/packages/2/section_definitions/33" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_crystal_scf_ee", + "description": "+++ ENERGIES IN A.U. +++. ::: TOTAL E-E\n4.6595142576204E+01", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_crystal_scf_en_ne", + "description": "+++ ENERGIES IN A.U. +++. ::: TOTAL E-N + N-E\n-5.2283101954878E+02", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_crystal_scf_nn", + "description": "+++ ENERGIES IN A.U. +++. ::: TOTAL N-N\n-7.3084276676762E+01", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_crystal_scf_virial_coefficient", + "description": "+++ ENERGIES IN A.U. +++. ::: VIRIAL COEFFICIENT\n9.9998501747632E-01", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Run", + "base_sections": [ + "/packages/3/section_definitions/3" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_crystal_run_title", + "description": "Title of the runcry(14) task.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_crystal_datetime", + "description": "Temporary type for storing date and time, in locale-dependent format.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_crystal_executable_path", + "description": "Crystal executable filepath.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_crystal_hostname", + "description": "Hostname where Crystal was run.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_crystal_input_path", + "description": "Input file name.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_crystal_os", + "description": "String describing the operating system where Crystal was run.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_crystal_output", + "description": "Output file name.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_crystal_tmpdir", + "description": "Temporary directory.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_crystal_user", + "description": "Username: who ran Crystal.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_crystal_distribution", + "description": "Distribution describer.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_crystal_version_minor", + "description": "Minor version number of Crystal.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Method", + "base_sections": [ + "/packages/0/section_definitions/23" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_crystal_convergence_deltap", + "description": "Convergence seettings, on power of 10 (e.g. CONVERGENCE ON DELTAP 10**-16)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_crystal_weight_f", + "description": "WEIGHT OF F(I) IN F(I+1)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_crystal_coulomb_bipolar_buffer", + "description": "COULOMB BIPOLAR BUFFER SET TO x Mb", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_crystal_eigenvectors_disk_space_ftn", + "description": "DISK SPACE FOR EIGENVECTORS (FTN 10) 351575 REALS", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_crystal_eigenvectors_disk_space_reals", + "description": "DISK SPACE FOR EIGENVECTORS (FTN 10) 351575 REALS", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_crystal_exchange_bipolar_buffer", + "description": "EXCHANGE BIPOLAR BUFFER SET TO x Mb", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_crystal_fock_ks_matrix_mixing", + "description": "FOCK/KS MATRIX MIXING SET TO x %", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_crystal_input_tcpu", + "description": "TTTTTTTTTTTTTTTTTTTTTTTTTTTTTT INPUT TELAPSE 0.01 TCPU 0.01", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_crystal_input_telapse", + "description": "TTTTTTTTTTTTTTTTTTTTTTTTTTTTTT INPUT TELAPSE 0.01 TCPU 0.01", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_crystal_irr_f", + "description": "MATRIX SIZE: P(G) 31533, F(G) 5204, P(G) IRR 1802, F(G) IRR 964", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_crystal_irr_p", + "description": "MATRIX SIZE: P(G) 31533, F(G) 5204, P(G) IRR 1802, F(G) IRR 964", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_crystal_is1", + "description": "CAPPA:IS1 16;IS2 16;IS3 16; K PTS MONK NET 145; SYMMOPS:K SPACE 48;G SPACE 48.\n(mentioned after the basis set)", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_crystal_is2", + "description": "CAPPA:IS1 16;IS2 16;IS3 16; K PTS MONK NET 145; SYMMOPS:K SPACE 48;G SPACE 48.\n(mentioned after the basis set)", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_crystal_is3", + "description": "CAPPA:IS1 16;IS2 16;IS3 16; K PTS MONK NET 145; SYMMOPS:K SPACE 48;G SPACE 48.\n(mentioned after the basis set)", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_k_points_gilat", + "description": "NUMBER OF K POINTS(GILAT NET) 145", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_k_points_ibz", + "description": "NUMBER OF K POINTS IN THE IBZ 145", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_crystal_k_pts_monk_net", + "description": "CAPPA:IS1 16;IS2 16;IS3 16; K PTS MONK NET 145; SYMMOPS:K SPACE 48;G SPACE 48.\n(mentioned after the basis set)", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_crystal_matrix_size_f", + "description": "MATRIX SIZE: P(G) 31533, F(G) 5204, P(G) IRR 1802, F(G) IRR 964", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_crystal_matrix_size_p", + "description": "MATRIX SIZE: P(G) 31533, F(G) 5204, P(G) IRR 1802, F(G) IRR 964", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_crystal_max_g_vector_index", + "description": "MAX G-VECTOR INDEX FOR 1- AND 2-ELECTRON INTEGRALS 247", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_crystal_max_scf_cycles", + "description": "MAX NUMBER OF SCF CYCLES", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_atoms", + "description": "N. OF ATOMS PER CELL", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_core_electrons", + "description": "CORE ELECTRONS PER CELL", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_electrons", + "description": "N. OF ELECTRONS PER CELL", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_orbitals", + "description": "NUMBER OF AO (Atomic orbitals)", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_shells", + "description": "NUMBER OF SHELLS", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "x_crystal_n_symmops", + "description": "N. OF SYMMETRY OPERATORS", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "x_crystal_pole_order", + "description": "POLE ORDER IN MONO ZONE", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "x_crystal_shrink_gilat", + "description": "SHRINKING FACTOR(GILAT NET) 16", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "x_crystal_shrink_value1", + "description": "Temporary storage.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "x_crystal_shrink_value2", + "description": "Temporary storage.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "x_crystal_shrink_value3", + "description": "Temporary storage.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "x_crystal_shrink", + "description": "SHRINK. FACT.(MONKH.) 16 16 16", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "x_crystal_symmetry_adaption", + "description": "SYMMETRY ADAPTION OF THE BLOCH FUNCTIONS ENABLED", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "x_crystal_symmops_g", + "description": "CAPPA:IS1 16;IS2 16;IS3 16; K PTS MONK NET 145; SYMMOPS:K SPACE 48;G SPACE 48.\n(mentioned after the basis set)", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "x_crystal_symmops_k", + "description": "CAPPA:IS1 16;IS2 16;IS3 16; K PTS MONK NET 145; SYMMOPS:K SPACE 48;G SPACE 48.\n(mentioned after the basis set)", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "x_crystal_tol_coulomb_overlap", + "description": "COULOMB OVERLAP TOL (T1) 10** -6. (Tolerance T1, power of 10)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "x_crystal_tol_coulomb_penetration", + "description": "COULOMB PENETRATION TOL (T2) 10** -6. (Tolerance T2, power of 10)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "name": "x_crystal_tol_exchange_overlap", + "description": "EXCHANGE OVERLAP TOL (T3) 10** -6. (Tolerance T3, power of 10)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "name": "x_crystal_tol_pseudo_overlap_f", + "description": "EXCHANGE PSEUDO OVP (F(G)) (T4) 10** -6. (Tolerance T4, power of 10)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 40, + "m_parent_sub_section": "quantities", + "name": "x_crystal_tol_pseudo_overlap_p", + "description": "EXCHANGE PSEUDO OVP (P(G)) (T5) 10** -12. (Tolerance T5, power of 10)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 41, + "m_parent_sub_section": "quantities", + "name": "x_crystal_type_of_calculation", + "description": "The type of the calculation that was performed.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 42, + "m_parent_sub_section": "quantities", + "name": "x_crystal_weight_previous", + "description": "WEIGHT OF F(I) IN F(I+1) 30%", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 43, + "m_parent_sub_section": "quantities", + "name": "x_crystal_toldee", + "description": "TOLDEE info", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "BasisSetAtomCentered", + "base_sections": [ + "/packages/0/section_definitions/6" + ], + "extends_base_section": true, + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_crystal_section_shell", + "sub_section": "/packages/12/section_definitions/5", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "x_crystal_section_shell", + "description": "Shell contains a number of orbitals.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_crystal_shell_range", + "description": "The range of orbitals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_crystal_shell_type", + "description": "Shell type: S / P / SP / D / F / G.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_crystal_shell_coefficients", + "description": "Contraction coefficients in this order: exponent, S, P, D/F/G.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_orbitals", + 4 + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 13, + "m_parent_sub_section": "packages", + "name": "electronicparsers.openmx.metainfo.openmx", + "description": "None", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "OpenmxSCC", + "base_sections": [ + "/packages/2/section_definitions/34" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_example_magic_value", + "description": "The magic value from a magic source.", + "type": { + "type_kind": "python", + "type_data": "int" + } + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 14, + "m_parent_sub_section": "packages", + "name": "electronicparsers.abacus.metainfo.abacus", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "x_abacus_section_parallel", + "description": "section for run-time parallization options of ABACUS", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_nproc", + "description": "Number of processors", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_kpar", + "description": "Devide all processors into kpar groups, and k points will be distributed among each group.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_bndpar", + "description": "Devide all processors into bndpar groups, and bands (only stochastic orbitals now) will be distributed among each group", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_diago_proc", + "description": "If set to a positive number, then it specifies the number of threads used for carrying out diagonalization.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_allocation_method", + "description": "The algorithms of dividing the H&S matrix", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abacus_allocation_nb2d", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_abacus_allocation_trace_loc_row", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_abacus_allocation_trace_loc_col", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_abacus_allocation_nloc", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "x_abacus_section_specie_basis_set", + "description": "definition of each basis set", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_specie_basis_set_filename", + "description": "Filename of basis set", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_specie_basis_set_ln", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abacus_specie_basis_set_number_of_orbitals", + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_specie_basis_set_rmesh", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_specie_basis_set_rcutoff", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_specie_basis_set_number_of_orbitals", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "x_abacus_section_basis_sets", + "description": "section for numerical atomic orbitals of ABACUS", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_basis_sets_delta_k", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "1 / atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_basis_sets_delta_r", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_basis_sets_dr_uniform", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_basis_sets_rmax", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_basis_sets_kmesh", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_abacus_section_specie_basis_set", + "sub_section": "/packages/14/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Calculation", + "base_sections": [ + "/packages/2/section_definitions/34" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_init_velocities", + "description": "Initialize velocities?", + "categories": [ + "/packages/14/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_longest_orb_rcut", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_longest_nonlocal_projector_rcut", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_searching_radius", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_searching_radius_unit", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abacus_read_space_grid", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_abacus_big_cell_numbers_in_grid", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_abacus_meshcell_numbers_in_big_cell", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_abacus_extended_fft_grid", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_abacus_extended_fft_grid_dim", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "Run", + "base_sections": [ + "/packages/3/section_definitions/3" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_input_filename", + "description": "Filename input was read from", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_program_execution_time", + "description": "The duration of the program execution", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_stru_filename", + "description": "Directory where initial atom_positions and lattice_vectors were read from", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_kpt_filename", + "description": "Directory where k-points were read from", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_basis_set_dirname", + "description": "Directory where basis set were read from", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abacus_pseudopotential_dirname", + "description": "Directory where pseudopotential were read from", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_abacus_md_nstep_in", + "description": "The target total number of md steps.", + "categories": [ + "/packages/14/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_abacus_md_nstep_out", + "description": "The actual total number of md steps.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_abacus_section_parallel", + "sub_section": "/packages/14/section_definitions/0", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Method", + "base_sections": [ + "/packages/0/section_definitions/23" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_initial_magnetization_total", + "description": "Initial total magnetization of the system set in INPUT.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "bohr_magneton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_diagonalization_algorithm", + "description": "Algorithm used in subspace diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_dispersion_correction_method", + "description": "Calculation includes semi-empirical DFT-D dispersion correction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_basis_type", + "description": "Type of basis sets", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_spin_orbit", + "description": "Spin-orbit coupling flag: with/without spin-orbit", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abacus_noncollinear", + "description": "Noncollinear spin mode", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_abacus_mixing_method", + "description": "Charge mixing methods", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_abacus_mixing_beta", + "description": "Mixing method: parameter beta", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_abacus_gamma_algorithms", + "description": "Usage of gamma-only optimized algorithms", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_abacus_scf_threshold_density", + "description": "The density threshold for electronic iteration", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_abacus_xc_functional", + "description": "Type of exchange-correlation functional used in calculation.", + "categories": [ + "/packages/14/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_abacus_pao_radial_cutoff", + "description": "Radial cut-off of pseudo atomic orbital", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_abacus_hse_omega", + "description": "HSE omega", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "1 / meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_abacus_hybrid_xc_coeff", + "description": "Mixing parameter of hybrid functionals", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_pw_for_wavefunction", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_sticks_for_wavefunction", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_pw_for_density", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_sticks_for_density", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_abacus_exx_ccp_rmesh_times", + "description": "This parameter determines how many times larger the radial mesh required for calculating Columb potential is to that of atomic orbitals", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_abacus_exx_dm_threshold", + "description": "Smaller values of the density matrix can be truncated to accelerate calculation.", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_abacus_exx_cauchy_threshold", + "description": "Using Cauchy-Schwartz inequality to find an upper bound of each Fock exchange matrix element before carrying out explicit evaluations", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_abacus_exx_schwarz_threshold", + "description": "Using Cauchy-Schwartz inequality to find an upper bound of each four-center integral element before carrying out explicit evaluations", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_abacus_exx_c_threshold", + "description": "Smaller components of the C matrix is neglected to accelerate calculation", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_abacus_exx_v_threshold", + "description": "Smaller components of the V matrix is neglected to accelerate calculation", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_abacus_exx_pca_threshold", + "description": "The size of basis of auxiliary basis functions is reduced using principal component analysis.", + "categories": [ + "/packages/14/category_definitions/0", + "/packages/14/category_definitions/1" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_abacus_section_basis_sets", + "sub_section": "/packages/14/section_definitions/2", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "System", + "base_sections": [ + "/packages/1/section_definitions/6" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_alat", + "description": "Lattice Parameter 'a', constant during a run and used as unit in other quantities", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_reciprocal_vectors", + "description": "The reciprocal cell", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "1 / meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_celldm", + "description": "Cell [a, b, c, alpha, beta, gamma], length a, b and c are in unit Angstrom", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_ibrav", + "description": "Bravais lattice index, constant during a run", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_electrons_out", + "description": "This denotes number of electrons of each element in the system calculated by ABACUS", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abacus_number_of_species" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abacus_total_number_of_electrons_in", + "description": "This denotes total number of electrons set in INPUT", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_species", + "description": "This denotes total number of species in the system", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_abacus_cell_volume", + "description": "Volume of unit cell", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_abacus_atom_magnetic_moments", + "description": "The start magnetization for each atom", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ], + "unit": "bohr_magneton" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "Symmetry", + "base_sections": [ + "/packages/1/section_definitions/2" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_ibrav", + "description": "Bravais lattice index, constant during a run", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_point_group_schoenflies_name", + "description": "The Schoenflies name of the point group", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_rotation_matrices", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_point_group_operations", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_number_of_space_group_operations", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "AtomParameters", + "base_sections": [ + "/packages/0/section_definitions/3" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_pp_type", + "description": "Type of pseudopotential, e.g. 'NC' or 'US'", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_pp_xc", + "description": "Exchange-correlation functional of pseudopotential, e.g. 'PBE' or 'PZ'", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_pp_lmax", + "description": "Maximum angular momentum component in pseudopotential", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_pp_nzeta", + "description": "Number of wavefunctions in pseudopotential", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abacus_pp_nprojectors", + "description": "Number of projectors in pseudopotential", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "ScfIteration", + "base_sections": [ + "/packages/2/section_definitions/33" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_density_change_scf_iteration", + "description": "Stores the change of charge density with respect to the previous self-consistent\nfield (SCF) iteration.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abacus_energy_total_harris_foulkes_estimate", + "description": "Stores the change of charge density with respect to the previous self-consistent\nfield (SCF) iteration.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abacus_magnetization_total", + "description": "Total per-cell magnetization", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "unit": "bohr_magneton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abacus_magnetization_absolute", + "description": "Absolute per-cell magnetization", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "bohr_magneton" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "BandEnergies", + "base_sections": [ + "/packages/2/section_definitions/13" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_eigenvalues_number_of_planewaves", + "description": "Number of plane waves for each k-point", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "number_of_eigenvalues_kpoints" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "GeometryOptimization", + "base_sections": [ + "/packages/22/section_definitions/9" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abacus_geometry_optimization_threshold_stress", + "description": "The threshold of the stress convergence, it indicates the largest stress among all the directions", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + } + ] + } + ], + "category_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 0, + "m_parent_sub_section": "category_definitions", + "name": "x_abacus_input_settings", + "description": "Parameters of INPUT." + }, + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 1, + "m_parent_sub_section": "category_definitions", + "name": "x_abacus_exx_settings", + "description": "Parameters are relevant when using hybrid functionals." + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 15, + "m_parent_sub_section": "packages", + "name": "workflowparsers.asr.metainfo.asr", + "description": "None", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "x_asr_parameters", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_asr_tmp_atoms", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_asr_tmp_atoms_file", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_asr_fmax", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_asr_calculator", + "description": "", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_asr_magstatecalculator", + "description": "", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_asr_rc", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_asr_d", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_asr_fsname", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_asr_sc", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_asr_dist_max", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "x_asr_code", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_asr_package", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_asr_version", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_asr_git_hash", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "x_asr_codes", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_asr_code", + "sub_section": "/packages/15/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "x_asr_run_specification", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_asr_name", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_asr_version", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_asr_uid", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_asr_parameters", + "sub_section": "/packages/15/section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_asr_codes", + "sub_section": "/packages/15/section_definitions/2", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "x_asr_resources", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_asr_execution_start", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_asr_execution_end", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_asr_execution_duration", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_asr_ncores", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "x_asr_dependency", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_asr_uid", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_asr_revision", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "x_asr_dependencies", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_asr_dependency", + "sub_section": "/packages/15/section_definitions/5", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "x_asr_metadata", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_asr_directory", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_asr_created", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_asr_modified", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "Run", + "base_sections": [ + "/packages/3/section_definitions/3" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_asr_history", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_asr_name", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_asr_tags", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_asr_revision", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_asr_uid", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_asr_version", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_asr_resources", + "sub_section": "/packages/15/section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_asr_dependencies", + "sub_section": "/packages/15/section_definitions/6", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_asr_metadata", + "sub_section": "/packages/15/section_definitions/7", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_asr_run_specification", + "sub_section": "/packages/15/section_definitions/3", + "repeats": false + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 16, + "m_parent_sub_section": "packages", + "name": "workflowparsers.lobster.metainfo.lobster", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "Calculation", + "base_sections": [ + "/packages/2/section_definitions/34" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_lobster_abs_total_spilling", + "description": "Absolute total spilling (in all levels)\nwhen projecting from the original wave functions into the local basis.", + "type": { + "type_kind": "python", + "type_data": "float" + }, + "shape": [ + "number_of_spin_channels" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_lobster_abs_charge_spilling", + "description": "Absolute total spilling of density (in occupied levels)\nwhen projecting from the original wave functions into the local basis.", + "type": { + "type_kind": "python", + "type_data": "float" + }, + "shape": [ + "number_of_spin_channels" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_lobster_section_cohp", + "sub_section": "/packages/16/section_definitions/2" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_lobster_section_coop", + "sub_section": "/packages/16/section_definitions/3" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_lobster_section_atom_projected_dos", + "sub_section": "/packages/16/section_definitions/4", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Method", + "base_sections": [ + "/packages/0/section_definitions/23" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_lobster_code", + "description": "Used PAW program", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "x_lobster_section_cohp", + "description": "This is a section containing the crystal orbital hamilton population (COHP) and integrated COHP (iCOHP) values.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_lobster_number_of_cohp_pairs", + "description": "Number of atom pairs for which are the COHPs and iCOHPs calculated.", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_lobster_cohp_atom1_labels", + "description": "Species and indices of the first atom for which is the specific COHP/iCOHP calculated", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "x_lobster_number_of_cohp_pairs" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_lobster_cohp_atom2_labels", + "description": "Species and indices of the second atom for which is the specific COHP/iCOHP calculated", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "x_lobster_number_of_cohp_pairs" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_lobster_cohp_distances", + "description": "Distance between atoms of the pair for which is the specific COHP/iCOHP calculated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_lobster_number_of_cohp_pairs" + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_lobster_cohp_translations", + "description": "Vector connecting the unit-cell of the first atom with the one of the second atom\n\nThis is only used with LOBSTER versions 3.0.0 and above, older versions use\nx_lobster_cohp_number_of_bonds instead.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_lobster_number_of_cohp_pairs", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_lobster_integrated_cohp_at_fermi_level", + "description": "Calculated iCOHP values ingregrated up to the Fermi level.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "number_of_spin_channels", + "x_lobster_number_of_cohp_pairs" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_lobster_number_of_cohp_values", + "description": "Number of energy values for the COHP and iCOHP.", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_lobster_cohp_energies", + "description": "Array containing the set of discrete energy values for COHP and iCOHP.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "x_lobster_number_of_cohp_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_lobster_cohp_values", + "description": "Calculated COHP values.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "x_lobster_number_of_cohp_pairs", + "number_of_spin_channels", + "x_lobster_number_of_cohp_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_lobster_integrated_cohp_values", + "description": "Calculated iCOHP values.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "x_lobster_number_of_cohp_pairs", + "number_of_spin_channels", + "x_lobster_number_of_cohp_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_lobster_average_cohp_values", + "description": "Calculated COHP values averaged over all pairs.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "number_of_spin_channels", + "x_lobster_number_of_cohp_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_lobster_average_integrated_cohp_values", + "description": "Calculated iCOHP values averaged over all pairs.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "number_of_spin_channels", + "x_lobster_number_of_cohp_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_lobster_cohp_number_of_bonds", + "description": "Number of bonds between first atom and the second atom (including\nthe periodic images).\n\nThis is only used in older LOBSTER versions, new versions print one line\nfor every neighbor, so a pair which had x_lobster_icohp_number_of_bonds = 4\nin the old version would actually show as 4 lines in the ICOHPLIST or 4 columns\nin the COPHCAR in the new format.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [ + "x_lobster_number_of_cohp_pairs" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "x_lobster_section_coop", + "description": "This is a section containing the crystal orbital hamilton population (COOP) and integrated coop (iCOOP) values.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_lobster_number_of_coop_pairs", + "description": "Number of atom pairs for which are the COOPs and iCOOPs calculated.", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_lobster_coop_atom1_labels", + "description": "Species and indices of the first atom for which is the specific COOP/iCOOP calculated", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "x_lobster_number_of_coop_pairs" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_lobster_coop_atom2_labels", + "description": "Species and indices of the second atom for which is the specific COOP/iCOOP calculated", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "x_lobster_number_of_coop_pairs" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_lobster_coop_distances", + "description": "Distance between atoms of the pair for which is the specific COOP/iCOOP calculated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_lobster_number_of_coop_pairs" + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_lobster_coop_translations", + "description": "Vector connecting the unit-cell of the first atom with the one of the second atom\n\nThis is only used with LOBSTER versions 3.0.0 and above, older versions use\nx_lobster_coop_number_of_bonds instead.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_lobster_number_of_coop_pairs", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_lobster_integrated_coop_at_fermi_level", + "description": "Calculated iCOOP values ingregrated up to the Fermi level.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "number_of_spin_channels", + "x_lobster_number_of_coop_pairs" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_lobster_number_of_coop_values", + "description": "Number of energy values for the COOP and iCOOP.", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_lobster_coop_energies", + "description": "Array containing the set of discrete energy values for COOP and iCOOP.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "x_lobster_number_of_coop_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_lobster_coop_values", + "description": "Calculated COOP values.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "x_lobster_number_of_coop_pairs", + "number_of_spin_channels", + "x_lobster_number_of_coop_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_lobster_integrated_coop_values", + "description": "Calculated iCOOP values.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "x_lobster_number_of_coop_pairs", + "number_of_spin_channels", + "x_lobster_number_of_coop_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_lobster_average_coop_values", + "description": "Calculated COOP values averaged over all pairs.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "number_of_spin_channels", + "x_lobster_number_of_coop_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_lobster_average_integrated_coop_values", + "description": "Calculated iCOOP values averaged over all pairs.", + "type": { + "type_kind": "numpy", + "type_data": "float32" + }, + "shape": [ + "number_of_spin_channels", + "x_lobster_number_of_coop_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_lobster_coop_number_of_bonds", + "description": "Number of bonds between first atom and the second atom (including\nthe periodic images).\n\nThis is only used in older LOBSTER versions, new versions print one line\nfor every neighbor, so a pair which had x_lobster_icoop_number_of_bonds = 4\nin the old version would actually show as 4 lines in the ICOOPLIST or 4 columns\nin the COOPCAR in the new format.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [ + "x_lobster_number_of_coop_pairs" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "x_lobster_section_atom_projected_dos", + "description": "Section collecting the information on an atom projected density of states (DOS) evaluation.\nFIXME: this should ultimatelly go into some common section but that is not possible\nright now, see: https://matsci.org/t/section-atom-projected-dos/36008", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_lobster_atom_projected_dos_energies", + "description": "Array containing the set of discrete energy values for the atom-projected density\n(electronic-energy) of states (DOS).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_lobster_number_of_atom_projected_dos_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_lobster_atom_projected_dos_lm", + "description": "Tuples of $l$ and $m$ values for which x_lobster_atom_projected_dos_values_lm are given.\nFor the quantum number $l$ the conventional meaning of azimuthal quantum number is\nalways adopted. For the integer number $m$, besides the conventional use as\nmagnetic quantum number ($l+1$ integer values from $-l$ to $l$), a set of\ndifferent conventions is accepted (see the [m_kind wiki\npage](https://gitlab.rzg.mpg.de/nomad-lab/nomad-meta-info/wikis/metainfo/m-kind).\nThe adopted convention is specified by atom_projected_dos_m_kind.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_lobster_number_of_lm_atom_projected_dos", + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_lobster_atom_projected_dos_m_kind", + "description": "String describing what the integer numbers of $m$ in atom_projected_dos_lm mean.\nThe allowed values are listed in the [m_kind wiki\npage](https://gitlab.rzg.mpg.de/nomad-lab/nomad-meta-info/wikis/metainfo/m-kind).", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_lobster_atom_projected_dos_values_lm", + "description": "Values correspond to the number of states for a given energy (the set of discrete\nenergy values is given in atom_projected_dos_energies) divided into contributions\nfrom each $l,m$ channel for the atom-projected density (electronic-energy) of\nstates for atom specified in atom_projected_dos_atom_index.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_lobster_number_of_lm_atom_projected_dos", + "number_of_spin_channels", + "x_lobster_number_of_atom_projected_dos_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_lobster_atom_projected_dos_values_total", + "description": "Values correspond to the number of states for a given energy (the set of discrete\nenergy values is given in atom_projected_dos_energies) divided into contributions\nsummed up over all $l$ channels for the atom-projected density (electronic-energy)\nof states (DOS) for atom specified in atom_projected_dos_atom_index.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_spin_channels", + "x_lobster_number_of_atom_projected_dos_values" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_lobster_number_of_atom_projected_dos_values", + "description": "Gives the number of energy values for the atom-projected density of states (DOS)\nbased on x_lobster_atom_projected_dos_values_lm and\nx_lobster_atom_projected_dos_values_total.", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_lobster_number_of_lm_atom_projected_dos", + "description": "Gives the number of $l$, $m$ combinations for the atom projected density of states\n(DOS) defined in x_lobster_section_atom_projected_dos.", + "type": { + "type_kind": "python", + "type_data": "int" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_lobster_atom_projected_dos_atom_index", + "description": "Index of atom for which is the x_lobster_atom_projected_dos provided.", + "type": { + "type_kind": "python", + "type_data": "int" + } + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 17, + "m_parent_sub_section": "packages", + "name": "eelsdbparser.eelsdb_parser", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "EELSMeasurement", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "edges", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "publish_time", + "description": "The datetime that this was published on EELS DB.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "spectrum", + "sub_section": "/packages/4/section_definitions/5" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "authors", + "more": { + "repreats": true + }, + "sub_section": "/packages/20/section_definitions/2" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "EELSInstrument", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.spectroscopy.eels.max_energy" + ] + }, + "name": "max_energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.spectroscopy.eels.min_energy" + ] + }, + "name": "min_energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "guntype", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "beam_energy", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.spectroscopy.eels.resolution" + ] + }, + "name": "resolution", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "step_size", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "acquisition_mode", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "beam_current", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.spectroscopy.eels.detector_type", + "results.properties.spectroscopy.eels.detector_type__suggestion" + ] + }, + "name": "detector_type", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "dark_current", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "EELSProperty", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.spectroscopy.eels.detector_type", + "results.properties.spectroscopy.eels.detector_type__suggestion" + ] + }, + "name": "detector_type", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.spectroscopy.eels.resolution" + ] + }, + "name": "resolution", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.spectroscopy.eels.max_energy" + ] + }, + "name": "max_energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.spectroscopy.eels.min_energy" + ] + }, + "name": "min_energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "MyMeasurement", + "base_sections": [ + "/packages/4/section_definitions/3" + ], + "extends_base_section": true, + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "eels", + "sub_section": "/packages/17/section_definitions/0" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "MyInstrument", + "base_sections": [ + "/packages/4/section_definitions/2" + ], + "extends_base_section": true, + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "eels", + "sub_section": "/packages/17/section_definitions/1" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "MySpectroscopyProperties", + "base_sections": [ + "/packages/5/section_definitions/54" + ], + "extends_base_section": true, + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "m_annotations": { + "elasticsearch": [ + "eels" + ] + }, + "name": "eels", + "sub_section": "/packages/17/section_definitions/2" + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 18, + "m_parent_sub_section": "packages", + "name": "nexus", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "NXaberration", + "description": "Models for aberrations of electro-magnetic lenses in electron microscopy.\n\nThe notation follows `O. Krivanek et al. (1999) <https://doi.org/10.1016/S0304-3991(99)00013-3>`_\nand `O. Krivanek et al. (2003) <https://doi.org/10.1016/S0304-3991(03)00090-1>`_\nSee also `S. J. Pennycock and P. D. Nellist <https://doi.org/10.1007/978-1-4419-7200-2>`_ (page 44ff, and page 118ff)\nfor further details, additional literature, and the unit of the coefficients.\nConsult Table 7-2 of Ibid. publication on how to convert between\nconventions of different groups/vendors.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-group", + "https://doi.org/10.1016/S0304-3991(99)00013-3", + "https://doi.org/10.1016/S0304-3991(03)00090-1", + "https://doi.org/10.1007/978-1-4419-7200-2" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaberration", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "c_1_0", + "description": "Defocus", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-1-0-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_1_0", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "c_1_2_a", + "description": "Two-fold astigmatism", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-1-2-a-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_1_2_a", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "c_1_2_b", + "description": "Two-fold astigmatism", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-1-2-b-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_1_2_b", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "c_2_1_a", + "description": "Second-order axial coma", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-2-1-a-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_2_1_a", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "c_2_1_b", + "description": "Second-order axial coma", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-2-1-b-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_2_1_b", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "c_2_3_a", + "description": "Threefold astigmatism", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-2-3-a-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_2_3_a", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "c_2_3_b", + "description": "Threefold astigmatism", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-2-3-b-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_2_3_b", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "c_3_0", + "description": "Spherical aberration", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-3-0-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_3_0", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "c_3_2_a", + "description": "Star aberration", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-3-2-a-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_3_2_a", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "c_3_2_b", + "description": "Star aberration", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-3-2-b-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_3_2_b", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "c_3_4_a", + "description": "Fourfold astigmatism", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-3-4-a-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_3_4_a", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "c_3_4_b", + "description": "Fourfold astigmatism", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-3-4-b-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_3_4_b", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "c_5_0", + "description": "Fifth-order spherical aberration", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaberration.html#nxaberration-c-5-0-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "c_5_0", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "NXaperture", + "description": "A beamline aperture. This group is deprecated, use NXslit instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXaperture.html#nxaperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe reference point of the aperture is its center in the x and y axis. The reference point on the z axis is the\nsurface of the aperture pointing towards the source.\n\nIn complex (asymmetic) geometries an NXoff_geometry group can be used to provide an unambiguous reference.\n\n.. image:: aperture/aperture.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXaperture.html#nxaperture-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "material", + "description": "Absorbing material of the aperture", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXaperture.html#nxaperture-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "material", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of aperture", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXaperture.html#nxaperture-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/1/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/1/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "BLADE_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/1/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "NOTE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/1/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXaperture.html#nxaperture-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "location and shape of aperture\n\n.. TODO: documentation needs improvement, contributions welcome\n\n * description of terms is poor and leaves much to interpretation\n * Describe what is meant by translation _here_ and ...\n * Similar throughout base classes\n * Some base classes do this much better\n * Such as where is the gap written?", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXaperture.html#nxaperture-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the aperture and :ref:`NXoff_geometry` to describe its shape", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "BLADE_GEOMETRY", + "description": "location and shape of each blade", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXaperture.html#nxaperture-blade-geometry-group" + ], + "deprecated": "Use :ref:`NXoff_geometry` instead to describe the shape of the aperture", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "BLADE_GEOMETRY", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXnote", + "description": "describe any additional information in a note*", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXaperture.html#nxaperture-note-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXnote", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "NXaperture_em", + "description": "Details of an individual aperture for electron beams.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaperture-em.html#nxaperture-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture_em", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias of the aperture.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaperture-em.html#nxaperture-em-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Relevant value from the control software.\n\nThis is not always just the diameter of (not even in the case)\nof a circular aperture. Usually it is a mode setting value which\nis selected in the control software.\nWhich settings are behind the value should be defined\nfor now in the description field, if these are known\nin more detail.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaperture-em.html#nxaperture-em-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "value", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Ideally, a (globally) unique persistent identifier, link, or text to a\nresource which gives further details. Alternatively a free-text field.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaperture-em.html#nxaperture-em-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/2/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/2/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaperture-em.html#nxaperture-em-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Affine transformation which detail the arrangement in the \nmicroscope relative to the optical axis and beam path.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXaperture-em.html#nxaperture-em-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "NXapm", + "description": "Application definition for atom probe microscopy experiments.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXapm", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "NeXus NXDL schema to which this file conforms.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXapm" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "experiment_identifier", + "description": "Ideally, a (globally) unique persistent identifier \nfor referring to this experiment.\n\nThe identifier is usually defined/issued by the facility, laboratory,\nor the principle investigator. The identifier enables to link \nexperiments to e.g. proposals.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-experiment-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "experiment_description", + "description": "Free-text description about the experiment.\n\nUsers are strongly advised to detail the sample history in the \nrespective field and fill rather as completely as possible the fields\nof this application definition rather than write details about the\nexperiment into this free-text description field.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-experiment-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_description", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "ISO 8601 time code with local time zone offset to UTC information\nincluded when the microscope session started.\nIf the application demands that time codes in this section of the\napplication definition should only be used for specifying when the\nexperiment was performed - and the exact duration is not relevant\n- this start time field should be used.\n\nOften though it is useful to specify a time interval with specifying\nboth start_time and end_time to allow for more detailed bookkeeping\nand interpretation of the experiment. The user should be aware that\neven with having both time instances specified, it may not be possible\nto infer how long the experiment took or for how long data \nwere acquired.\n\nMore detailed timing data over the course of the experiment have to be\ncollected to compute this. These computations can take advantage of\nindividual time stamps in NXevent_em instances to provide\nadditional pieces of information.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "ISO 8601 time code with local time zone offset to UTC included\nwhen the microscope session ended.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Commercial or otherwise given name to the program which was used\nto create the file. Atom probe microscopy experiments are nowadays\nin most cases controlled via commercial software. These are often\ndesigned as integrated acquisition and instrument control software\nsolutions.\nFor AMETEK/Cameca local electrode atom probe (LEAP) instruments the\nleast processed (rawest) numerical results and metadata are stored\nin so-called RHIT and HITS files, which are proprietary and the\nspecifications of which are not publicly documented.\n\nSupplementary metadata are kept in a database which is connected\nto the instrument control software. RHIT and HITS are proprietary\nbinary file formats whose content must not be accessed with software\nother than of AMETEK (IVAS/AP Suite). In effect, RHIT and HITS files\nstore the experiment in a closed manner that is practically useless\nfor users unless they have access to the commercial software.\n\nTo arrive at a state that atom probe microscopy with LEAP instruments \ndelivers a dataset with which users can study reconstructed atomic\nposition and do e.g. composition analyses or other post-processing\nanalysis tasks, these raw data have to be processed. Therefore, it is\nnecessary that for an application definition to be useful, details about\nthe physical acquisition of the raw data and all its\nprocessing steps have to be stored.\n\nWith this a user can create derived quantities like ion hit positions\n(on the detector), calibrated time-of-flight data. These derived\nquantities are also needed to obtain calibrated mass-to-charge-state\nratios, and finally the tomographic reconstruction of the ion positions.\n\nIn most cases, an APM dataset is useful only if it gets post-processed\nvia so-called ranging. Ranging defines rules for mapping time-of-flight\nand mass-to-charge-state ratio values on ion species. In turn, these\nlabels decode elemental identities and can often also be used to\nresolve isotopes. All these steps are in most cases performed using\ncommercial software.\n\nFrequently, though, ranging and post-processing is also performed with\n(open-source) research software. Therefore, there is strictly speaking\nnot a single program used throughout an atom probe analysis not even\nfor the early data acquisition and processing stages to obtain a useful\nreconstructed and ranged dataset.\n\nTherefore, the application definition documents not only the measurement\nbut also the key post-processing steps which transform the proprietary\ndata into a tomographic reconstruction with ranging definitions.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "run_number", + "description": "Not the specimen name or the experiment identifier but the identifier\nthrough which the experiment is referred to in the control software.\nFor LEAP instruments it is recommended to use the IVAS/AP Suite\nrun_number. For other instruments, such as the one from Stuttgart or\nOxcart from Erlangen, or the instruments in Rouen, use the\nidentifier which is closest in meaning to the LEAP run number.\n\nAs a destructive microscopy method, a run can be performed only once.\nIt is possible, however, to interrupt a run and restart data acquisition\nwhile still using the same specimen. In this case, each evaporation run\nneeds to be distinguished with \ndifferent run numbers. We follow this habit of most atom probe groups.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-run-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "run_number", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "operation_mode", + "description": "What type of atom probe microscope experiment is performed.\nThis field can be used e.g. by materials database systems to\nqualitatively filter experiments.\nAPT are experiments where the analysis_chamber has no imaging gas.\nFor FIM analyses an imaging gas is used, which should be specified\nwith the atmosphere in the analysis_chamber group.\nCombinations of the two imaging modes are possible. For these apt_fim\nor other operation_mode the user should specify details in the\nexperiment_documentation field.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operation-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "operation_mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "apt", + "fim", + "apt_fim", + "other" + ] + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "experiment_documentation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "thumbnail", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "operator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "specimen", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "COORDINATE_SYSTEM_SET", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "atom_probe", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "experiment_documentation", + "description": "Binary container for a file or a compressed collection of files which \ncan be used to add further descriptions and details to the experiment.\nThe container can hold a compressed archive.\n\nRequired for operation_mode apt_fim or other to give further details.\nUsers should not abuse this field to provide free-text information.\nInstead, these should be mapped to respective groups and sections.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-experiment-documentation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "experiment_documentation", + "nx_type": "NXnote", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "thumbnail", + "description": "A small image that is representative of the entry; this can be an\nimage taken from the dataset like a thumbnail of a spectrum.\nA 640 x 480 pixel jpeg image is recommended. \nAdding a scale bar to that image is recommended but not required\nas the main purpose of the thumbnail is to provide e.g. thumbnail\nimages for displaying them in data repositories.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-thumbnail-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "thumbnail", + "nx_type": "NXnote", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/3" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "type", + "variable": false, + "more": { + "nx_name": "type" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "operator", + "description": "Contact information and eventually details of at least one person\ninvolved in the taking of the microscope session. This can be the\nprinciple investigator who performed this experiment.\nAdding multiple users if relevant is recommended.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "operator", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given (first) name and surname of the user.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "affiliation", + "description": "Name of the affiliation of the user at the point in time when the experiment was\nperformed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-affiliation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "affiliation", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "address", + "description": "Postal address of the affiliation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-address-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "address", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "email", + "description": "Email address of the user at the point in time when the experiment was\nperformed. Writing the most permanently used email is recommended.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-email-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "email", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "orcid", + "description": "Globally unique identifier of the user as offered by services like ORCID or\nResearcherID.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-orcid-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "orcid", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "telephone_number", + "description": "(Business) (tele)phone number of the user at the point in time when the\nexperiment was performed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-telephone-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "telephone_number", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "role", + "description": "Which role does the user have in the place and at the point \nin time when the experiment was performed? Technician operating\nthe microscope. Student, postdoc, principle investigator, guest\nare common examples.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-role-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "role", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "social_media_name", + "description": "Account name that is associated with the user in social media platforms.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-social-media-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "social_media_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "social_media_platform", + "description": "Name of the social media platform where the account under social_media_name is\nregistered.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-operator-social-media-platform-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "social_media_platform", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "specimen", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-specimen-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "specimen", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name or ideally (globally) unique persistent identifier.\nThe name distinguishes the specimen from all others and especially the\npredecessor/origin from where the specimen was cut.\nIn cases where the specimen was e.g. site-specifically cut from\nsamples or in cases of an instrument session during which multiple\nspecimens are loaded, the name has to be descriptive enough to resolve\nwhich specimen on e.g. the microtip array was taken. \n\nThe user is advised to store the details how specimens were \ncut/prepared from samples in the sample history.\nThis field must not be used for an alias of the specimen.\nInstead, use short_title.\n\nIn cases where multiple specimens have been loaded into the microscope\nthe name has to be the specific one, whose results are stored\nby this NXentry, because a single NXentry should be used only for\nthe characterization of a single specimen.\n\nDetails about the specimen preparation should be stored in the \nsample history.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-specimen-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "sample_history", + "description": "Ideally, a reference to the location of or a (globally) unique\npersistent identifier of e.g. another file which should document \nideally as many details as possible of the material, its \nmicrostructure, and its thermo-chemo-mechanical processing/preparation\nhistory.\n\nIn the case that such a detailed history of the sample/specimen is not\navailable, use this field as a free-text description to specify a\nsub-set of the entire sample history, i.e. what you would consider\nbeing the key steps and relevant information about the specimen,\nits material, microstructure, thermo-chemo-mechanical processing\nstate and details of the preparation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-specimen-sample-history-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "sample_history", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "preparation_date", + "description": "ISO 8601 time code with local time zone offset to UTC information\nwhen the specimen was prepared.\n\nIdeally report the end of the preparation, i.e. the last known time\nthe measured specimen surface was actively prepared. Usually this\nshould be a part of the sample history, i.e. the sample is imagined\nhanded over for the analysis. At the point it enters the microscope\nthe session starts.\n\nKnowing when the specimen was exposed to e.g. specific atmosphere is\nespecially required for environmentally sensitive material such as\nhydrogen charged specimens or experiments including tracers with a\nshort half time. Further time stamps prior to preparation_date should\nbetter be placed in resources which describe the sample_history.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-specimen-preparation-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "preparation_date", + "nx_optional": false, + "nx_units": "NX_TIME", + "nx_recommended": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "short_title", + "description": "Possibility to give an abbreviation of the specimen name field.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-specimen-short-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "short_title", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "atom_types", + "description": "Use Hill's system for listing elements of the periodic table which\nare inside or attached to the surface of the specimen and thus\nrelevant from a scientific point of view.\n\nThe purpose of the field is to offer materials database systems an\nopportunity to parse the relevant elements without having to interpret\nthese from the sample history.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-specimen-atom-types-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "atom_types", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Discouraged free-text field in case properly designed records for the\nsample_history are not available.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-specimen-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "Hard link to a location in the hierarchy of the NeXus file\nwhere the data for default plotting are stored.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcoordinate_system_set", + "description": "Container to hold different coordinate systems conventions.\n\nFor the specific idea and conventions to use with the\nNXcoordinate_system_set inspect the description of the\nNXcoordinate_system_set base class.\n\nSpecific details for application in atom probe microscopy follow.\nIn this research field scientists distinguish usually several\nEuclidean coordinate systems (CS):\n\n* The laboratory space; \n a CS specifying the room where the instrument is located in or \n a physical landmark on the instrument, e.g. the direction of the \n transfer rod where positive is the direction how the rod \n pushes into the instrument. \n* The specimen space; \n a CS affixed to either the base or the initial apex of the specimen, \n whose z axis points towards the detector. \n* The detector space; \n a CS affixed whose xy plane is usually in the detector and whose \n z axis points towards the specimen. \n* The reconstruction space; \n a CS associated with the tomographic reconstruction. \n Its orientation depends on the commercial software used. \n* Eventually further coordinate systems attached to the \n flight path of individual ions might be defined. \n\nCoordinate systems should be right-handed ones.\nClockwise rotations should be considered positive rotations.\n\nIn atom probe microscopy a frequently used choice for the detector\nspace (CS) is discussed with the so-called detector space image\n(stack). This is a stack of two-dimensional histograms of detected ions\nwithin a predefined evaporation ID interval. Typically, the set of\nion evaporation sequence IDs is grouped into chunks.\n\nFor each chunk a histogram of the ion hit positions on the detector\nis computed. This leaves the possibility for inconsistency between\nthe so-called detector space and the e.g. specimen space.\n\nThe transformation here resolves this ambiguity by specifying how\nthe positive z-axes of either coordinate systems is oriented.\nConsult the work of A. J. Breen and B. Gault and team\nfor further details.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-coordinate-system-set-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcoordinate_system_set", + "nx_type": "NXcoordinate_system_set", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/19" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "atom_probe", + "description": "Metadata and numerical data of the atom probe and the lab in which it \nstands.\n\nAn atom probe microscope (experiment) is different compared to a large-\nscale facility or electron accelerator experiments in at least two ways:\n\n* First, ionized atoms and molecular ion(s fragments) \n (in the case of atom probe tomography) \n and (primarily) imaging gas ions (in the case of field ion \n microscopy) are accelerated towards a position-sensitive \n and time-of-flight taking detector system. \n Hence, there is no real probe/beam. \n* Second, the specimen is the lens of an atom probe microscope. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "atom_probe", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "instrument_name", + "description": "Given name of the atom probe at the hosting institution. This is an \nalias. Examples could be LEAP5000, Raptor, Oxcart, one atom at a time,\netc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "instrument_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "location", + "description": "Location of the lab or place where the instrument is installed.\nUsing GEOREF is preferred.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-location-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "location", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "flight_path_length", + "description": "The space inside the atom probe that ions pass through nominally when they leave\nthe specimen and travel to the detector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-flight-path-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "flight_path_length", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "field_of_view", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-field-of-view-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "field_of_view", + "nx_optional": "true", + "nx_units": "NX_LENGTH" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "analysis_chamber", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "load_lock_chamber", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "buffer_chamber", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "getter_pump", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "roughening_pump", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/5", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "turbomolecular_pump", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/6", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "REFLECTRON", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "local_electrode", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/8", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "ion_detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/9", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "pulser", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/10", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "STAGE_LAB", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "control_software", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/12", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "specimen_monitoring", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/13", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "ion_impact_positions", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/14", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "hit_multiplicity", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/15", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "ion_filtering", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/16", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "voltage_and_bowl_correction", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/17", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "mass_to_charge_conversion", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/18", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "reconstruction", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/19", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 20, + "m_parent_sub_section": "sub_sections", + "name": "ranging", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/20", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "analysis_chamber", + "description": "Component of an instrument to store or place objects and specimens.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-analysis-chamber-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "analysis_chamber", + "nx_type": "NXchamber", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/13" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "load_lock_chamber", + "description": "Component of an instrument to store or place objects and specimens.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-load-lock-chamber-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "load_lock_chamber", + "nx_type": "NXchamber", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/13" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "buffer_chamber", + "description": "Component of an instrument to store or place objects and specimens.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-buffer-chamber-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "buffer_chamber", + "nx_type": "NXchamber", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/13" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "getter_pump", + "description": "Device to reduce an atmosphere to a controlled remaining pressure level.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-getter-pump-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "getter_pump", + "nx_type": "NXpump", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/95" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "roughening_pump", + "description": "Device to reduce an atmosphere to a controlled remaining pressure level.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-roughening-pump-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "roughening_pump", + "nx_type": "NXpump", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/95" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "turbomolecular_pump", + "description": "Device to reduce an atmosphere to a controlled remaining pressure level.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-turbomolecular-pump-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "turbomolecular_pump", + "nx_type": "NXpump", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/95" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXreflectron", + "description": "Device for reducing flight time differences of ions in ToF experiments.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reflectron-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXreflectron", + "nx_type": "NXreflectron", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/99" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Was the reflectron used?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reflectron-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "local_electrode", + "description": "A local electrode guiding the ion flight path.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-local-electrode-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "local_electrode", + "nx_type": "NXlens_em", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/70" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Identifier of the local_electrode in an e.g. database.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-local-electrode-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/8/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture_em", + "description": "Details of an individual aperture for electron beams.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-local-electrode-aperture-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture_em", + "nx_type": "NXaperture_em", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/2" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "inner_section_definitions", + "name": "ion_detector", + "description": "Detector for taking raw time-of-flight and\nion/hit impact positions data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ion_detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Description of the detector type. Specify if the detector is\nnot the usual type, i.e. not a delay-line detector.\nIn the case the detector is a multi-channel plate/\ndelay line detector, use mcp_dld. In the case the detector is\na phosphor CCD use phosphor_ccd. In other case specify\nthe detector type via free-text.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-detector-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-detector-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "model", + "description": "Given brand or model name by the manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-detector-model-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "model", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "serial_number", + "description": "Given hardware name/serial number or hash identifier issued by the manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-detector-serial-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "serial_number", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "manufacturer_name", + "description": "Given name of the manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-detector-manufacturer-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "manufacturer_name", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "signal_amplitude", + "description": "Amplitude of the signal detected on the multi-channel plate (MCP).\n\nThis field should be used for storing the signal amplitude quantity\nwithin ATO files. The ATO file format is used primarily by the\natom probe groups of the GPM in Rouen, France.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-detector-signal-amplitude-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "signal_amplitude", + "nx_optional": "true", + "nx_units": "NX_CURRENT" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions" + ], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "inner_section_definitions", + "name": "pulser", + "description": "Metadata for laser-, voltage-, or combined pulsing triggering field evaporation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-pulser-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "pulser", + "nx_type": "NXpulser_apm", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/94" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "pulse_mode", + "description": "How is field evaporation physically triggered.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-pulser-pulse-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "pulse_mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "laser", + "high_voltage", + "laser_and_high_voltage" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "pulse_frequency", + "description": "Frequency with which the high voltage or laser pulser fires.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-pulser-pulse-frequency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pulse_frequency", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "pulse_fraction", + "description": "Fraction of the pulse_voltage that is applied in addition\nto the standing_voltage at peak voltage of a pulse.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-pulser-pulse-fraction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pulse_fraction", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "pulsed_voltage", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-pulser-pulsed-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pulsed_voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXstage_lab", + "description": "A stage lab can be used to hold, align, orient, and prepare a specimen.\n\nModern stages are multi-functional devices. Many of which offer a controlled\nenvironment around (a part) of the specimen. Stages enable experimentalists\nto apply stimuli. A stage_lab is a multi-purpose/-functional tools which\ncan have multiple actuators, sensors, and other components.\n\nWith such stages comes the need for storing various (meta)data \nthat are generated while manipulating the sample.\n\nModern stages realize a hierarchy of components: For example the specimen\nmight be mounted on a multi-axial tilt rotation holder. This holder is \nfixed in the support unit which connects the holder to the rest of the\nmicroscope.\n\nIn other examples, taken from atom probe microscopy, researchers may work\nwith wire samples which are clipped into a larger fixing unit for\nconvenience and enable for a more careful specimen handling.\nThis fixture unit is known in atom probe jargon as a stub.\nStubs in turn are positioned onto pucks.\nPucks are then loaded onto carousels.\nA carousel is a carrier unit with which eventually entire sets of specimens\ncan be moved in between parts of the microscope.\n\nAn NXstage_lab instance reflects this hierarchical design. The stage is the \nroot of the hierarchy. A stage carries the holder.\nIn the case that it is not practical to distinguish these two layers,\nthe holder should be given preference.\n\nSome examples for stage_labs in applications:\n\n* A nanoparticle on a copper grid. The copper grid is the holder. \n The grid itself is fixed to the stage. \n* An atom probe specimen fixed in a stub. In this case the stub can be \n considered the holder, while the cryostat temperature control unit is \n a component of the stage. \n* Samples with arrays of specimens, like a microtip on a microtip array \n is an example of a three-layer hierarchy commonly employed for \n efficient sequential processing of atom probe experiments. \n* With one entry of an application definition only one microtip should be \n described. Therefore, the microtip is the specimen, \n the array is the holder and the remaining mounting unit \n that is attached to the cryo-controller is the stage. \n* For in-situ experiments with e.g. chips with read-out electronics \n as actuators, the chips are again placed in a larger unit. \n* Other examples are (quasi) in-situ experiments where experimentalists \n anneal or deform the specimen via e.g. in-situ tensile testing machines \n which are mounted on the specimen holder. \n\nTo cover for an as flexible design of complex stages, users should nest\nmultiple instances of NXstage_lab objects according to their needs to reflect\nthe differences between what they consider as the holder and what \nthey consider is the stage.\n\nInstances should be named with integers starting from 1 as the top level unit.\nIn the microtip example stage_lab_1 for the stage, stage_lab_2 for the holder\n(microtip array), stage_lab_3 for the microtip specimen, respectively. \nThe depends_on keyword should be used with relative or absolute naming inside\nthe file to specify how different stage_lab instances build a hierarchy\nif this is not obvious from numbered identifiers like the stage_lab_1 to \nstage_lab 3 example. The lower it is the number the higher it is the\nrank in the hierarchy.\n\nFor specific details and inspiration about stages in electron microscopes:\n\n* `Holders with multiple axes <https://www.nanotechnik.com/e5as.html>`_ \n* `Chip-based designs <https://www.protochips.com/products/fusion/fusion-select-components/>`_ \n* `Further chip-based designs <https://www.nanoprobetech.com/about>`_\n* `Stages in transmission electron microscopy <https://doi.org/10.1007/978-3-662-14824-2>`_ (page 103, table 4.2) \n* `Further stages in transmission electron microscopy <https://doi.org/10.1007/978-1-4757-2519-3>`_ (page 124ff)\n* `Specimens in atom probe <https://doi.org/10.1007/978-1-4614-8721-0>`_ (page 47ff)\n* `Exemplar micro-manipulators <https://nano.oxinst.com/products/omniprobe/omniprobe-200>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-stage-lab-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXstage_lab", + "nx_type": "NXstage_lab", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/128" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "base_temperature", + "description": "Average temperature at the specimen base, i.e. base temperature, during the\nmeasurement.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-stage-lab-base-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "base_temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "inner_section_definitions", + "name": "control_software", + "description": "The majority of atom probe microscopes come from a\nsingle commercial manufacturer `AMETEK (formerly Cameca) <https://www.atomprobe.com>`_.\nTheir instruments are controlled via an(/a set) of integrated\ninstrument control system(s) (APSuite/IVAS/DAVis).\n\nBy contrast, instruments which were built by individual\nresearch groups such as of the French (GPM, Rouen, France),\nthe Schmitz (Inspico, Stuttgart, Germany),\nthe Felfer (Oxcart, Erlangen, Germany),\nthe Northwestern (D. Isheim, Seidman group et al.),\nor the PNNL group (Pacific Northwest National Laborary,\nPortland, Oregon, U.S.) have other solutions\nto control the instrument.\n\nSome of which are modularized and open,\nsome of which realize also integrated control units with\nportions of eventually undisclosed source code and\n(so far) lacking (support of)/open APIs.\n\nCurrently, there is no accepted/implemented\ncommunity-specific API for getting finely granularized\naccess to such control settings.\n\nThese considerations motivated the design of the NXapm\napplication definition in that it stores quantities in NXcollection.\ngroups to begin with. Holding heterogeneous, not yet standardized\nbut relevant pieces of information is the purpose of this collection.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-control-software-group", + "https://www.atomprobe.com" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control_software", + "nx_type": "NXcollection", + "nx_optional": "true", + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "analysis_chamber", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/12/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "analysis_chamber", + "description": "Track time-dependent settings over the course of the measurement about the\nenvironment in the analysis chamber such as gas pressure values etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-control-software-analysis-chamber-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "analysis_chamber", + "nx_type": "NXcollection", + "nx_optional": "true", + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "pressure", + "description": "Average pressure in the analysis chamber.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-control-software-analysis-chamber-pressure-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pressure", + "nx_units": "NX_PRESSURE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[pressure]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "inner_section_definitions", + "name": "specimen_monitoring", + "description": "A place where details about the initial shape of the specimen\ncan be stored. Ideally, here also data about the shape evolution\nof the specimen can be stored. There are currently very few\ntechniques which can measure the shape evolution:\n\n* Correlative electron microscopy coupled with modeling \n but this usually takes an interrupted experiment \n in which the specimen is transferred, an image taken, \n and a new evaporation sequence initiated. \n Examples are `I. Mouton et al. <https://doi.org/10.1017/S1431927618016161>`_ and `C. Fletcher <https://doi.org/10.1088/1361-6463/abaaa6>`_.\n* Another, less accurate method, though, is to monitor \n the specimen evolution via the in-built camera system \n (if available) in the instrument. \n* Another method is to use correlated scanning force microscopy \n methods like reported in `C. Fleischmann <https://doi.org/10.1016/j.ultramic.2018.08.010>`_. \n* A continuous monitoring of the specimen in a \n correlative electron microscopy/atom probe experiment \n is planned to be developed by `T. Kelly et al. <https://doi.org/10.1017/S1431927620022205>`_ ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-specimen-monitoring-group", + "https://doi.org/10.1017/S1431927618016161", + "https://doi.org/10.1088/1361-6463/abaaa6", + "https://doi.org/10.1016/j.ultramic.2018.08.010", + "https://doi.org/10.1017/S1431927620022205" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "specimen_monitoring", + "nx_type": "NXcollection", + "nx_optional": "true", + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "initial_radius", + "description": "Ideally measured or best elaborated guess of the initial radius of the specimen.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-specimen-monitoring-initial-radius-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "initial_radius", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shank_angle", + "description": "Ideally measured or best elaborated guess of the shank angle.\nThis is a measure of the specimen taper. Define it in such a way\nthat the base of the specimen is modelled as a conical frustrum so\nthat the shank angle is the (shortest) angle between the specimen\nspace z-axis and a vector on the lateral surface of the cone.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-specimen-monitoring-shank-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "shank_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "inner_section_definitions", + "name": "ion_impact_positions", + "description": "Details about where ions hit the ion_detector and data processing\nsteps related to analog-to-digital conversion of detector signals\ninto ion hit positions. For AMETEK LEAP instruments this processing\ntakes place partly in the control unit of the detector partly\nin the software. The process is controlled by the acquisition/\ninstrument control software (IVAS/APSuite/DAVis).\nThe exact details are not documented by AMETEK in an open manner.\nFor instruments built by individual research groups,\nlike the Oxcart instrument, individual timing data from the\ndelay-line detector are openly accessible.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-impact-positions-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ion_impact_positions", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-impact-positions-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "arrival_time_pairs", + "description": "Raw readings from the analog-to-digital-converter\ntiming circuits of the detector wires.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-impact-positions-arrival-time-pairs-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "arrival_time_pairs", + "nx_recommended": "true", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions", + "n_dld_wires", + 2 + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "hit_positions", + "description": "Evaluated ion impact coordinates at the detector\n(either as computed from the arrival time data\nor as reported by the control software).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-impact-positions-hit-positions-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "hit_positions", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions", + 2 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "detection_rate", + "description": "Average detection rate over the course of the experiment.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-impact-positions-detection-rate-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "detection_rate", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "inner_section_definitions", + "name": "hit_multiplicity", + "description": "Data post-processing step which is, like the impact position analyses, \nalso usually executed in the integrated control software. \nThis processing yields how many ions were detected with each pulse.\n\nIt is possible that multiple ions evaporate and hit the same or \ndifferent pixels of the detector on the same pulse. \nThese data form the basis to analyses of the so-called\n(hit) multiplicity of an ion. \nMultiplicity must not be confused with how many \natoms of the same element or isotope, respectively,\na molecular ion contains (which is encoded with the\nisotope_vector field of each NXion instance.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-hit-multiplicity-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "hit_multiplicity", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-hit-multiplicity-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "pulses_since_last_ion", + "description": "Number of pulses since the last detected ion pulse.\nFor multi-hit records, after the first record, this is zero.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-hit-multiplicity-pulses-since-last-ion-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "pulses_since_last_ion", + "nx_recommended": "true", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "n_ions" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "hit_multiplicity", + "description": "Hit multiplicity.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-hit-multiplicity-hit-multiplicity-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "hit_multiplicity", + "nx_recommended": "true", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "n_ions" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "pulse_id", + "description": "Number of pulses since the start of the atom probe run/evaporation sequence.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-hit-multiplicity-pulse-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "pulse_id", + "nx_optional": "true", + "nx_units": "NX_UNITLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "n_ions" + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "inner_section_definitions", + "name": "ion_filtering", + "description": "Like impact position and hit multiplicity computations, \nion filtering is a data post-processing step with which users\nidentify which of the detected ions should be included\nin the voltage-and-bowl correction.\nThis post-processing is usually performed via GUI interaction\nin the reconstruction pipeline of IVAS/APSuite.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-filtering-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ion_filtering", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-filtering-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "evaporation_id_included", + "description": "Bitmask which is set to true if the ion is considered and false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ion-filtering-evaporation-id-included-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "evaporation_id_included", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [ + "n_ions" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "inner_section_definitions", + "name": "voltage_and_bowl_correction", + "description": "Data post-processing step to correct for ion impact \nposition flight path differences, detector biases, \nand nonlinearities. This step is usually performed\nwith commercial software.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-voltage-and-bowl-correction-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "voltage_and_bowl_correction", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-voltage-and-bowl-correction-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "raw_tof", + "description": "Raw time-of-flight data as read out from the acquisition software if these data\nare available and accessible.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-voltage-and-bowl-correction-raw-tof-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "raw_tof", + "nx_recommended": "true", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "calibrated_tof", + "description": "Calibrated time-of-flight.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-voltage-and-bowl-correction-calibrated-tof-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "calibrated_tof", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions" + ], + "dimensionality": "[time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "tof_calibration", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/17/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "tof_calibration", + "description": "The key idea and algorithm of the voltage-and-bowl correction \nis qualitatively similar for instruments of different manufacturers\nor research groups.\n\nSpecific differences exists though in the form of different\ncalibration models. For now we do not wish to resolve or \ngeneralize these differences. Rather the purpose of this collection\nis to provide a container where model-specific parameters\nand calibration models can be stored if users know these\nfor sure.\n\nFor AMETEK LEAP atom probes this should be the place for\nstoring initial calibration values. These values are\naccessible normally only by AMETEK service engineers.\nThey use these for calibrating the detector and instrument.\n\nUsers can also use this NXcollection for storing the\niteratively identified calibrations which scientists\nwill get displayed in e.g. AP Suite while they execute\nthe voltage-and-bowl correction as a part of the\nreconstruction pipeline in APSuite.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-voltage-and-bowl-correction-tof-calibration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "tof_calibration", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "inner_section_definitions", + "name": "mass_to_charge_conversion", + "description": "Data post-processing step in which calibrated time-of-flight data\n(ToF) are interpreted into mass-to-charge-state ratios.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-mass-to-charge-conversion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "mass_to_charge_conversion", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-mass-to-charge-conversion-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "mass_to_charge", + "description": "Mass-to-charge-state ratios", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-mass-to-charge-conversion-mass-to-charge-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mass_to_charge", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions" + ], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "parameter", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/18/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "parameter", + "description": "Store vendor-specific calibration models here (if available).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-mass-to-charge-conversion-parameter-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "parameter", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "inner_section_definitions", + "name": "reconstruction", + "description": "Data post-processing step to create a tomographic reconstruction\nof the specimen based on selected calibrated ion hit positions,\nthe evaporation sequence, and voltage curve data.\nVery often scientists use own software scripts according to\npublished procedures, so-called reconstruction protocols,\ni.e. numerical recipes how to compute x, y, z atomic positions\nfrom the input data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reconstruction", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nSimilar comments as voltage_and_bowl_correction apply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "protocol_name", + "description": "Qualitative statement about which reconstruction protocol was used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-protocol-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "protocol_name", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "bas_original", + "bas_modified", + "geiser", + "gault", + "ivas", + "apsuite", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "reconstructed_positions", + "description": "Three-dimensional reconstructed positions of the ions.\nInterleaved array of x, y, z positions in the specimen space.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-reconstructed-positions-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "reconstructed_positions", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions", + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "parameter", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/19/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "naive_point_cloud_density_map", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/19/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "parameter", + "description": "Different reconstruction protocols exist. Although these approaches\nare qualitatively similar, each protocol uses different parameters\n(and interprets these differently). The source code to IVAS/APSuite\nis not open. For now users should store reconstruction parameter\nin a collection.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-parameter-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "parameter", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "naive_point_cloud_density_map", + "description": "To get a first overview of the reconstructed dataset,\nthe format conversion computes a simple 3d histogram\nof the ion density using one nanometer cubic bins without\napplying smoothening algorithms on this histogram.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-naive-point-cloud-density-map-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "naive_point_cloud_density_map", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-naive-point-cloud-density-map-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/19/inner_section_definitions/1/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "A default three-dimensional histogram of the total number of ions in each bin.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-naive-point-cloud-density-map-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "counts", + "description": "Array of counts for each bin.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-naive-point-cloud-density-map-data-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "counts", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_z", + "n_y", + "n_x" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "zpos", + "description": "Bin positions along the z axis.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-naive-point-cloud-density-map-data-zpos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "zpos", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "ypos", + "description": "Bin positions along the y axis.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-naive-point-cloud-density-map-data-ypos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "ypos", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "xpos", + "description": "Bin positions along the x axis.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-reconstruction-naive-point-cloud-density-map-data-xpos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "xpos", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "inner_section_definitions", + "name": "ranging", + "description": "Data post-processing step in which elemental, isotopic,\nand/or molecular identities are assigned to the ions.\nThe documentation of these steps is based on ideas\ndescribed in the literature:\n\n* `M. K. Miller <https://doi.org/10.1002/sia.1719>`_ \n* `D. Haley et al. <https://doi.org/10.1017/S1431927620024290>`_ \n* `M. K\u00fchbach et al. <https://doi.org/10.1017/S1431927621012241>`_ ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-group", + "https://doi.org/10.1002/sia.1719", + "https://doi.org/10.1017/S1431927620024290", + "https://doi.org/10.1017/S1431927621012241" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ranging", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "number_of_ion_types", + "description": "How many ion types are distinguished.\nIf no ranging was performed each ion is of the special unknown type.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-number-of-ion-types-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_POSINT", + "nx_name": "number_of_ion_types", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "maximum_number_of_atoms_per_molecular_ion", + "description": "Assumed maximum value that suffices to store all relevant\nmolecular ions, even the most complicated ones. \nCurrently a value of 32 is used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-maximum-number-of-atoms-per-molecular-ion-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "maximum_number_of_atoms_per_molecular_ion", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "mass_to_charge_distribution", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/20/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "background_quantification", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/20/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "peak_search_and_deconvolution", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/20/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "peak_identification", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/20/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "mass_to_charge_distribution", + "description": "Specifies the computation of the mass-to-charge histogram.\nUsually mass-to-charge values are studied as an ensemble quantity,\nspecifically these values are binned.\nThe (NXprocess) stores the settings of this binning.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-mass-to-charge-distribution-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "mass_to_charge_distribution", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-mass-to-charge-distribution-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "range_minmax", + "description": "Smallest and largest mass-to-charge value.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-mass-to-charge-distribution-range-minmax-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "range_minmax", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "range_increment", + "description": "Binning width", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-mass-to-charge-distribution-range-increment-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "range_increment", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "mass_spectrum", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/20/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "mass_spectrum", + "description": "A default histogram aka mass spectrum of\nthe mass-to-charge-state ratio values.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-mass-to-charge-distribution-mass-spectrum-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "mass_spectrum", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "counts", + "description": "Array of counts for each bin.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-mass-to-charge-distribution-mass-spectrum-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "counts", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_bins" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "bin_ends", + "description": "End of mass-to-charge-state ratio bin.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-mass-to-charge-distribution-mass-spectrum-bin-ends-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "bin_ends", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "background_quantification", + "description": "Details of the background model which was used to\ncorrect the total counts per bin into counts.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-background-quantification-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "background_quantification", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-background-quantification-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "peak_search_and_deconvolution", + "description": "How where peaks in the background-corrected \nmass-to-charge histogram identified?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-search-and-deconvolution-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "peak_search_and_deconvolution", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-search-and-deconvolution-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "PEAK", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/20/inner_section_definitions/2/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpeak", + "description": "Description of peaks, their functional form or measured support.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-search-and-deconvolution-peak-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpeak", + "nx_type": "NXpeak", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/89" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "peak_identification", + "description": "Details about how peaks, with taking into account\nerror models, were interpreted as ion types or not.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-identification-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "peak_identification", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.\nApart from the classical approach to use AMETEK software for this\nprocessing step, a number of open-source alternative tools exists.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-identification-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/3/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/20/inner_section_definitions/3/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXion", + "description": "Set of atoms of a molecular ion or fragment in e.g. ToF mass spectrometry.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-identification-ion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXion", + "nx_type": "NXion", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/67" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "isotope_vector", + "description": "A vector of isotope hash values.\nThese values have to be stored in an array, sorted in decreasing order.\nThe array is filled with zero hash values indicating unused places.\nThe individual hash values are built with the following hash function:\n\nThe hash value :math:`H` is :math:`H = Z + N*256` with :math:`Z`\nthe number of protons and :math:`N` the number of neutrons\nof each isotope respectively.\n\nZ and N have to be 8-bit unsigned integers.\nFor the rationale behind this `M. K\u00fchbach et al. (2021) <https://doi.org/10.1017/S1431927621012241>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-identification-ion-isotope-vector-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "isotope_vector", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "charge_state", + "description": "Signed charge state of the ion in multiples of electron charge.\n\nOnly positive values will be measured in atom probe microscopy as the\nions are accelerated by a negatively signed bias electric field.\nIn the case that the charge state is not explicitly recoverable,\nthe value should be set to zero.\n\nIn atom probe microscopy this is for example the case when using\nclassical range file formats like RNG, RRNG for atom probe data.\nThese file formats do not document the charge state explicitly.\nThey report the number of atoms of each element per molecular ion\nsurplus the mass-to-charge-state-ratio interval.\nWith this it is possible to recover the charge state only for\nspecific molecular ions as the accumulated mass of the molecular ion\nis defined by the isotopes, which without knowing the charge leads\nto an underconstrained problem.\nDetails on ranging can be found in the literature: `M. K. Miller <https://doi.org/10.1002/sia.1719>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-identification-ion-charge-state-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "charge_state", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "mass_to_charge_range", + "description": "Associated lower (mqmin) and upper (mqmax) bounds of \nmass-to-charge-state ratio interval(s) [mqmin, mqmax]\n(boundaries included) for which the respective ion is labelled\nas an ion of the here referred to ion_type.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXapm.html#nxapm-entry-atom-probe-ranging-peak-identification-ion-mass-to-charge-range-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mass_to_charge_range", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ranges", + 2 + ], + "flexible_unit": true + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "NXarchive", + "description": "This is a definition for data to be archived by ICAT (http://www.icatproject.org/).\n\n.. text from the icatproject.org site\n\n the database (with supporting software) that provides an \n interface to all ISIS experimental data and will provide \n a mechanism to link all aspects of ISIS research from \n proposal through to publication. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-group", + "http://www.icatproject.org/" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXarchive", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/4/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "index", + "variable": false, + "more": { + "nx_name": "index" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "experiment_identifier", + "description": "unique identifier for the experiment", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-experiment-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "experiment_description", + "description": "Brief description of the experiment and its objectives", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-experiment-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_description", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "collection_identifier", + "description": "ID of user or DAQ define group of data files ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-collection-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "collection_description", + "description": "Brief summary of the collection, including grouping criteria ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-collection-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "entry_identifier", + "description": "unique identifier for this measurement as provided by the facility", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-entry-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "entry_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "TODO: needs documentation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "collection_time", + "description": "TODO: needs documentation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-collection-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "collection_time", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "run_cycle", + "description": "TODO: needs documentation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-run-cycle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "run_cycle", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "revision", + "description": "revision ID of this file, may be after recalibration, reprocessing etc.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-revision-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "revision", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "comment", + "variable": false, + "more": { + "nx_name": "comment" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXarchive" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "The program and version used for generating this file", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "release_date", + "description": "when this file is to be released into PD", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-release-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "release_date", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "user", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/4/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/4/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/4/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "user", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "user", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of user responsible for this entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-user-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "role", + "description": "role of the user", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-user-role-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "role", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "facility_user_id", + "description": "ID of the user in the facility burocracy database", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-user-facility-user-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "facility_user_id", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of instrument", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Brief description of the instrument", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-instrument-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/4/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-Ray Source", + "Pulsed Muon Source", + "Rotating Anode X-Ray", + "Fixed Tube X-Ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "sample_id", + "description": "Unique database id of the sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-sample-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "sample_id", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of the sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "sample", + "sample+can", + "calibration sample", + "normalisation sample", + "simulated data", + "none", + "sample_environment" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "description": "Chemical formula formatted according to CIF conventions", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-chemical-formula-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "chemical_formula", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "preparation_date", + "description": "Date of preparation of the sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-preparation-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "preparation_date", + "nx_optional": false, + "nx_units": "NX_TIME", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "situation", + "description": "Description of the environment the sample is in: \nair, vacuum, oxidizing atmosphere, dehydrated, etc.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-situation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "situation", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "air", + "vacuum", + "inert atmosphere", + "oxidising atmosphere", + "reducing atmosphere", + "sealed can", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Sample temperature. This could be a scanned variable", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "magnetic_field", + "description": "Applied magnetic field", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-magnetic-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "magnetic_field", + "nx_units": "NX_CURRENT", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "repeats": false, + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "direction", + "variable": false, + "more": { + "nx_name": "direction" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x", + "y", + "z" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "electric_field", + "description": "Applied electric field", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-electric-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "electric_field", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "direction", + "variable": false, + "more": { + "nx_name": "direction" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x", + "y", + "z" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "stress_field", + "description": "Applied external stress field", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-stress-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "stress_field", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "direction", + "variable": false, + "more": { + "nx_name": "direction" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x", + "y", + "z" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "pressure", + "description": "Applied pressure", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarchive.html#nxarchive-entry-sample-pressure-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pressure", + "nx_units": "NX_PRESSURE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[pressure]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "NXarpes", + "description": "This is an application definition for angular resolved photo electron spectroscopy.\n\nIt has been drawn up with hemispherical electron analysers in mind. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXarpes", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/5/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "entry", + "variable": false, + "more": { + "nx_name": "entry" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXarpes" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/5/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/5/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/5/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/5/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "monochromator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/5/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "analyser", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/5/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "monochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "monochromator", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-monochromator-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "analyser", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "analyser", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "lens_mode", + "description": "setting for the electron analyser lens", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-lens-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "lens_mode", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "acquisition_mode", + "description": "The acquisition mode of the detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-acquisition-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "acquisition_mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "swept", + "fixed" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "entrance_slit_shape", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-entrance-slit-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "entrance_slit_shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "curved", + "straight" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "entrance_slit_setting", + "description": "dial setting of the entrance slit", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-entrance-slit-setting-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "entrance_slit_setting", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "entrance_slit_size", + "description": "size of the entrance slit", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-entrance-slit-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "entrance_slit_size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "pass_energy", + "description": "energy of the electrons on the mean path of the analyser", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-pass-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pass_energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "time_per_channel", + "description": "todo: define more clearly", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-time-per-channel-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "time_per_channel", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "angles", + "description": "Angular axis of the analyser data\nwhich dimension the axis applies to is defined\nusing the normal NXdata methods.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-angles-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "angles", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "Energy axis of the analyser data\nwhich dimension the axis applies to is defined\nusing the normal NXdata methods.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-energies-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "energies", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "sensor_size", + "description": "number of raw active elements in each dimension", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-sensor-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "sensor_size", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + 2 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "region_origin", + "description": "origin of rectangular region selected for readout", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-region-origin-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "region_origin", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + 2 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "region_size", + "description": "size of rectangular region selected for readout", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-instrument-analyser-region-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "region_size", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + 2 + ], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Sample temperature. This could be a scanned variable", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXarpes.html#nxarpes-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "NXattenuator", + "description": "A device that reduces the intensity of a beam by attenuation.\n\nIf uncertain whether to use :ref:`NXfilter` (band-pass filter)\nor :ref:`NXattenuator` (reduces beam intensity), then choose \n:ref:`NXattenuator`.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXattenuator", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance from sample. Note, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type or composition of attenuator, e.g. polythene", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "thickness", + "description": "Thickness of attenuator along beam direction", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "scattering_cross_section", + "description": "Scattering cross section (coherent+incoherent)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-scattering-cross-section-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "scattering_cross_section", + "nx_units": "NX_CROSS_SECTION", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[area]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "absorption_cross_section", + "description": "Absorption cross section", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-absorption-cross-section-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "absorption_cross_section", + "nx_units": "NX_CROSS_SECTION", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[area]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "attenuator_transmission", + "description": "The nominal amount of the beam that gets through\n(transmitted intensity)/(incident intensity)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-attenuator-transmission-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "attenuator_transmission", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "status", + "description": "In or out or moving of the beam", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-status-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "status", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "in", + "out", + "moving" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "time", + "variable": false, + "more": { + "nx_name": "time", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe reference point of the attenuator is its center in the x and y axis. The reference point on the z axis is the\nsurface of the attenuator pointing towards the source.\n\nIn complex (asymmetic) geometries an NXoff_geometry group can be used to provide an unambiguous reference.\n\n.. image:: attenuator/attenuator.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/6/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/6/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "Shape of this component. Particulary useful to define the origin for position and orientation in non-standard cases.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXattenuator.html#nxattenuator-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "NXbeam", + "description": "Properties of the neutron or X-ray beam at a given location. \n\nThis group is intended to be referenced\nby beamline component groups within the :ref:`NXinstrument` group or by the :ref:`NXsample` group. This group is\nespecially valuable in storing the results of instrument simulations in which it is useful\nto specify the beam profile, time distribution etc. at each beamline component. Otherwise,\nits most likely use is in the :ref:`NXsample` group in which it defines the results of the neutron\nscattering by the sample, e.g., energy transfer, polarizations.\n\nNote that incident_wavelength and related fields can be a scalar values or arrays, depending on the use case.\nTo support these use cases, the explicit dimensionality of these fields is not specified, but it can be inferred\nby the presense of and shape of accompanying fields, such as incident_wavelength_weights for a polychromatic beam.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance from sample. Note, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "incident_energy", + "description": "Energy carried by each particle of the beam on entering the beamline component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-incident-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "m" + ], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "final_energy", + "description": "Energy carried by each particle of the beam on leaving the beamline component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-final-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "final_energy", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "m" + ], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "energy_transfer", + "description": "Change in particle energy caused by the beamline component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-energy-transfer-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy_transfer", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "m" + ], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength", + "description": "In the case of a monochromatic beam this is the scalar\nwavelength.\n\nSeveral other use cases are permitted, depending on the\npresence or absence of other incident_wavelength_X\nfields.\n\nIn the case of a polychromatic beam this is an array of\nlength **m** of wavelengths, with the relative weights\nin ``incident_wavelength_weights``.\n\nIn the case of a monochromatic beam that varies shot-\nto-shot, this is an array of wavelengths, one for each\nrecorded shot. Here, ``incident_wavelength_weights`` and\nincident_wavelength_spread are not set.\n\nIn the case of a polychromatic beam that varies shot-to-\nshot, this is an array of length **m** with the relative\nweights in ``incident_wavelength_weights`` as a 2D array.\n\nIn the case of a polychromatic beam that varies shot-to-\nshot and where the channels also vary, this is a 2D array\nof dimensions **nP** by **m** (slow to fast) with the\nrelative weights in ``incident_wavelength_weights`` as a 2D\narray.\n\nNote, :ref:`variants <Design-Variants>` are a good way\nto represent several of these use cases in a single dataset,\ne.g. if a calibrated, single-value wavelength value is\navailable along with the original spectrum from which it\nwas calibrated.\nWavelength on entering beamline component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-incident-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength_weights", + "description": "In the case of a polychromatic beam this is an array of\nlength **m** of the relative weights of the corresponding\nwavelengths in ``incident_wavelength``.\n\nIn the case of a polychromatic beam that varies shot-to-\nshot, this is a 2D array of dimensions **nP** by **m**\n(slow to fast) of the relative weights of the\ncorresponding wavelengths in ``incident_wavelength``.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-incident-wavelength-weights-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_wavelength_weights", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength_spread", + "description": "The wavelength spread FWHM for the corresponding\nwavelength(s) in incident_wavelength.\n\nIn the case of shot-to-shot variation in the wavelength\nspread, this is a 2D array of dimension **nP** by\n**m** (slow to fast) of the spreads of the\ncorresponding wavelengths in incident_wavelength.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-incident-wavelength-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_wavelength_spread", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "incident_beam_divergence", + "description": "Beam crossfire in degrees parallel to the laboratory X axis\n\nThe dimension **c** is a series of moments of that represent\nthe standard uncertainty (e.s.d.) of the directions of\nof the beam. The first and second moments are in the XZ and YZ\nplanes around the mean source beam direction, respectively.\n\nFurther moments in **c** characterize co-variance terms, so\nthe next moment is the product of the first two, and so on.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-incident-beam-divergence-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_beam_divergence", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "c" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "extent", + "description": "Size of the beam entering this component. Note this represents\na rectangular beam aperture, and values represent FWHM", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-extent-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "extent", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + 2 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "final_wavelength", + "description": "Wavelength on leaving beamline component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-final-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "final_wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "m" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "incident_polarization", + "description": "Polarization vector on entering beamline component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-incident-polarization-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "incident_polarization", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + 2 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "final_polarization", + "description": "Polarization vector on leaving beamline component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-final-polarization-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "final_polarization", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + 2 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "incident_polarization_stokes", + "description": "Polarization vector on entering beamline component using Stokes notation\n\nThe Stokes parameters are four components labelled I,Q,U,V or S_0,S_1,S_2,S_3.\nThese are defined with the standard Nexus coordinate frame unless it is\noverridden by an NXtransformations field pointed to by a depends_on attribute.\nThe last component, describing the circular polarization state, is positive\nfor a right-hand circular state - that is the electric field vector rotates\nclockwise at the sample and over time when observed from the source.\n\nI (S_0) is the beam intensity (often normalized to 1). Q, U, and V scale \nlinearly with the total degree of polarization, and indicate the relative\nmagnitudes of the pure linear and circular orientation contributions.\n \nQ (S_1) is linearly polarized along the x axis (Q > 0) or y axis (Q < 0).\n \nU (S_2) is linearly polarized along the x==y axis (U > 0) or the\n-x==y axis (U < 0). \n\nV (S_3) is circularly polarized. V > 0 when the electric field vector rotates\nclockwise at the sample with respect to time when observed from the source; \nV < 0 indicates the opposite rotation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-incident-polarization-stokes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "incident_polarization_stokes", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + 4 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "final_polarization_stokes", + "description": "Polarization vector on leaving beamline component using Stokes notation\n(see incident_polarization_stokes).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-final-polarization-stokes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "final_polarization_stokes", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + 4 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "final_wavelength_spread", + "description": "Wavelength spread FWHM of beam leaving this component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-final-wavelength-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "final_wavelength_spread", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "m" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "final_beam_divergence", + "description": "Divergence FWHM of beam leaving this component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-final-beam-divergence-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "final_beam_divergence", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + 2 + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "flux", + "description": "flux incident on beam plane area", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-flux-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "flux", + "nx_units": "NX_FLUX", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "1 / [time] / [area]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "The NeXus coordinate system defines the Z axis to be along the nominal beam\ndirection. This is the same as the McStas coordinate system (see :ref:Design-CoordinateSystem).\nHowever, the additional transformations needed to represent an altered beam\ndirection can be provided using this depends_on field that contains the path\nto a NXtransformations group. This could represent redirection of the beam,\nor a refined beam direction.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/7/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/7/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "Distribution of beam with respect to relevant variable e.g. wavelength. This is mainly\nuseful for simulations which need to store plottable information at each beamline\ncomponent.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Direction (and location) for the beam. The location of the beam can be given by\nany point which it passes through as its offset attribute.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "DIRECTION", + "description": "Direction of beam vector, its value is ignored. If missing, then the beam direction is defined as [0,0,1]\nand passes through the origin", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-transformations-direction-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "DIRECTION", + "nx_nameType": "any", + "nx_units": "NX_TRANSFORMATION", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "transformation", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "reference_plane", + "description": "Direction of normal to reference plane used to measure azimuth relative to the beam, its value is ignored.\nThis also defines the parallel and perpendicular components of the beam's polarization.\nIf missing, then the reference plane normal is defined as [0,1,0] and passes through the origin", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam.html#nxbeam-transformations-reference-plane-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "reference_plane", + "nx_nameType": "any", + "nx_units": "NX_TRANSFORMATION", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "transformation", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "NXbeam_stop", + "description": "A device that blocks the beam completely, usually to protect a detector. \n\nBeamstops and their positions are important for SANS\nand SAXS experiments.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam_stop", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "description of beamstop", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "circular", + "rectangular" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "Size of beamstop. If this is not sufficient to describe the beam stop use\nNXoff_geometry instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x", + "description": "x position of the beamstop in relation to the detector.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "y", + "description": "y position of the beamstop in relation to the detector.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "distance_to_detector", + "description": "distance of the beamstop to the detector.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-distance-to-detector-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance_to_detector", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "status", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-status-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "status", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "in", + "out" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe reference point of the beam stop is its center in the x and y axis. The reference point on the z axis is the\nsurface of the beam stop pointing towards the source.\n\n.. image:: beam_stop/beam_stop.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/8/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/8/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "CYLINDRICAL_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/8/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/8/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "engineering shape, orientation and position of the beam stop.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the beamstop and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcylindrical_geometry", + "description": "This group is an alternative to NXoff_geometry for describing the shape\nof the beam stop. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-cylindrical-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcylindrical_geometry", + "nx_type": "NXcylindrical_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/24" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbeam-stop.html#nxbeam-stop-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "NXbending_magnet", + "description": "A bending magnet", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbending_magnet", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "critical_energy", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-critical-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "critical_energy", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "bending_radius", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-bending-radius-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bending_radius", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "magnetic_field", + "description": "strength of magnetic field of dipole magnets", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-magnetic-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "magnetic_field", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "accepted_photon_beam_divergence", + "description": "An array of four numbers giving X+, X-, Y+ and Y- half divergence", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-accepted-photon-beam-divergence-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "accepted_photon_beam_divergence", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "source_distance_x", + "description": "Distance of source point from particle beam waist in X (horizontal) direction.\nNote, it is recommended to use NXtransformations instead to place component.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-source-distance-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "source_distance_x", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "source_distance_y", + "description": "Distance of source point from particle beam waist in Y (vertical) direction.\nNote, it is recommended to use NXtransformations instead to place component.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-source-distance-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "source_distance_y", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "divergence_x_plus", + "description": "Accepted photon beam divergence in X+ (horizontal outboard) direction.\nNote that divergence_x_plus+divergence_x_minus is the total horizontal beam divergence.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-divergence-x-plus-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "divergence_x_plus", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "divergence_x_minus", + "description": "Accepted photon beam divergence in X- (horizontal inboard) direction.\nNote that divergence_x_plus+divergence_x_minus is the total horizontal beam divergence.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-divergence-x-minus-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "divergence_x_minus", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "divergence_y_plus", + "description": "Accepted photon beam divergence in Y+ (vertical upward) direction.\nNote that divergence_y_plus+divergence_y_minus is the total vertical beam divergence.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-divergence-y-plus-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "divergence_y_plus", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "divergence_y_minus", + "description": "Accepted photon beam divergence in Y- (vertical downward) direction.\nNote that divergence_y_plus+divergence_y_minus is the total vertical beam divergence.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-divergence-y-minus-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "divergence_y_minus", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a bending magnet.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "spectrum", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/9/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/9/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/9/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/9/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "spectrum", + "description": "bending magnet spectrum", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-spectrum-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "spectrum", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "\"Engineering\" position of bending magnet", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the bending magnet and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXbending-magnet.html#nxbending-magnet-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "NXcalibration", + "description": "Subclass of NXprocess to describe post-processing calibrations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcalibration", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "last_process", + "description": "Indicates the name of the last operation applied in the NXprocess sequence.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-last-process-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "last_process", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Has the calibration been applied?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "coefficients", + "description": "For non-linear energy calibrations, e.g. in a TOF, a polynomial function is fit\nto a set of features (peaks) at well defined energy positions to determine\nE(TOF). Here we can store the array of fit coefficients.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-coefficients-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "coefficients", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "ncoeff" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "fit_function", + "description": "For non-linear energy calibrations. Here we can store the formula of the\nfit function.\n\nUse a0, a1, ..., an for the coefficients, corresponding to the values in the coefficients field.\n\nUse x0, x1, ..., xn for the variables.\n\nThe formula should be numpy compliant.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-fit-function-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "fit_function", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "scaling", + "description": "For linear calibration. Scaling parameter.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-scaling-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "scaling", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "offset", + "description": "For linear calibration. Offset parameter.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "offset", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "calibrated_axis", + "description": "A vector representing the axis after calibration, matching the data length", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-calibrated-axis-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "calibrated_axis", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "ncal" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "original_axis", + "description": "Vector containing the data coordinates in the original uncalibrated axis", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-original-axis-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "original_axis", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "ncal" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "A description of the procedures employed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcalibration.html#nxcalibration-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "NXcanSAS", + "description": "Implementation of the canSAS standard to store reduced small-angle scattering data of any dimension.\n\n.. index:: canSAS\n\nFor more details, see:\n\n* http://www.cansas.org/\n* http://www.cansas.org/formats/canSAS1d/1.1/doc/\n* http://cansas-org.github.io/canSAS2012/\n* https://github.com/canSAS-org/NXcanSAS_examples\n\nThe minimum requirements for *reduced* small-angle scattering data \nas described by canSAS are summarized in the following figure:\n\n.. _canSAS_2012_minimum:\n\n.. figure:: canSAS/2012-minimum.png\n :width: 60%\n \n The minimum requirements for *reduced* small-angle scattering data.\n (:download:`full image <canSAS/2012-minimum.png>`)\n See :ref:`below <NXcanSAS_minimum>` for the minimum required \n information for a NeXus data file\n written to the NXcanSAS specification.\n\n.. rubric:: Implementation of canSAS standard in NeXus\n\nThis application definition is an implementation of the canSAS\nstandard for storing both one-dimensional and multi-dimensional \n*reduced* small-angle scattering data.\n\n* NXcanSAS is for reduced SAS data and metadata to be stored together in one file.\n* *Reduced* SAS data consists of :math:`I(\\vec{Q})` or :math:`I(|\\vec{Q}|)`\n* External file links are not to be used for the reduced data. \n* A good practice/practise is, at least, to include a reference to how the data was acquired and processed. Yet this is not a requirement.\n* There is no need for NXcanSAS to refer to any raw data.\n\nThe canSAS data format has a structure similar to NeXus, not identical.\nTo allow canSAS data to be expressed in NeXus, yet identifiable\nby the canSAS standard, an additional group attribute ``canSAS_class``\nwas introduced. Here is the mapping of some common groups.\n\n=============== ============ ==========================\ngroup (*) NX_class canSAS_class\n=============== ============ ==========================\nsasentry NXentry SASentry\nsasdata NXdata SASdata\nsasdetector NXdetector SASdetector\nsasinstrument NXinstrument SASinstrument\nsasnote NXnote SASnote\nsasprocess NXprocess SASprocess\nsasprocessnote NXcollection SASprocessnote\nsastransmission NXdata SAStransmission_spectrum\nsassample NXsample SASsample\nsassource NXsource SASsource\n=============== ============ ==========================\n\n(*) The name of each group is a suggestion,\nnot a fixed requirement and is chosen as fits each data file. \nSee the section on defining\n:ref:`NXDL group and field names <RegExpName>`.\n\nRefer to the NeXus Coordinate System drawing (:ref:`Design-CoordinateSystem`)\nfor choice and direction of :math:`x`, :math:`y`, and :math:`z` axes.\n\n.. _NXcanSAS_minimum:\n\n.. rubric:: The minimum required information for a NeXus data file\n written to the NXcanSAS specification.\n\n.. literalinclude:: canSAS/minimum-required.txt\n :tab-width: 4\n :linenos:\n :language: text", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-group", + "http://www.cansas.org/", + "http://www.cansas.org/formats/canSAS1d/1.1/doc/", + "http://cansas-org.github.io/canSAS2012/", + "https://github.com/canSAS-org/NXcanSAS_examples" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXcanSAS", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": ".. index:: NXcanSAS (applications); SASentry\n\nPlace the canSAS ``SASentry`` group as a child of a NeXus ``NXentry`` group\n(when data from multiple techniques are being stored)\nor as a replacement for the ``NXentry`` group. \n\nNote: It is required for all numerical objects to provide\na *units* attribute that describes the engineering units. \nUse the Unidata UDunits [#]_ specification \nas this is compatible with various community standards.\n\n.. [#] The UDunits specification also includes instructions for derived units.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASentry" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1.1" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this subentry conforms.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXcanSAS" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Title of this *SASentry*. \nMake it so that you can recognize the data by its title.\nCould be the name of the sample,\nthe name for the measured data, or something else representative.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "run", + "description": "Run identification for this *SASentry*. \nFor many facilities, this is an integer, such as en experiment number. \nUse multiple instances of ``run`` as needed, keeping\nin mind that HDF5 requires unique names for all entities\nin a group.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-run-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "run", + "nx_minOccurs": "1", + "nx_maxOccurs": "unbounded", + "nx_nameType": "any", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "name", + "variable": false, + "more": { + "nx_name": "name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "TRANSMISSION_SPECTRUM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/5", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "A *SASData* group contains a single reduced small-angle scattering data set \nthat can be represented as :math:`I(\\vec{Q})` or :math:`I(|\\vec{Q}|)`.\n\n*Q* can be either a vector (:math:`\\vec{Q}`) or a vector magnitude (:math:`|\\vec{Q}|`)\n\nThe name of each *SASdata* group must be unique within a SASentry group. \nSuggest using names such as ``sasdata01``.\n\nNOTE: For the first *SASdata* group, be sure to write the chosen name \ninto the `SASentry/@default` attribute, as in::\n\n SASentry/@default=\"sasdata01\"\n\nA *SASdata* group has several attributes:\n\n* I_axes\n* Q_indices\n* Mask_indices\n\nTo indicate the dependency relationships of other varied parameters, \nuse attributes similar to ``@Mask_indices`` (such as ``@Temperature_indices``\nor ``@Pressure_indices``).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "I" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASdata" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 5, + "m_parent_sub_section": "attributes", + "name": "I_axes", + "variable": true, + "more": { + "nx_name": "I_axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 6, + "m_parent_sub_section": "attributes", + "name": "Q_indices", + "variable": true, + "more": { + "nx_name": "Q_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 7, + "m_parent_sub_section": "attributes", + "name": "mask", + "variable": false, + "more": { + "nx_name": "mask", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 8, + "m_parent_sub_section": "attributes", + "name": "Mask_indices", + "variable": true, + "more": { + "nx_name": "Mask_indices", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 9, + "m_parent_sub_section": "attributes", + "name": "timestamp", + "variable": false, + "more": { + "nx_name": "timestamp", + "nx_type": "NX_DATE_TIME", + "nx_optional": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "Q", + "description": ".. index:: NXcanSAS (applications); Q\n \nArray of :math:`Q` data to accompany :math:`I`.\n\n.. figure:: canSAS/Q-geometry.jpg\n :width: 60%\n\n The :math:`\\vec{Q}` geometry.\n (:download:`full image <canSAS/Q-geometry.jpg>`)\n\n:math:`Q` may be represented as either\nthe three-dimensional scattering vector :math:`\\vec{Q}`\nor the magnitude of the scattering vector, :math:`|\\vec{Q}|`.\n\n.. math:: |\\vec{Q}| = (4\\pi/\\lambda) sin(\\theta) \n\nWhen we write :math:`Q`, we may refer to either or both of \n:math:`|\\vec{Q}|` \nor :math:`\\vec{Q}`, depending on the context.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-q-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "Q", + "nx_units": "NX_PER_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_optional": "false" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1/m", + "1/nm", + "1/angstrom" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "uncertainties", + "variable": false, + "more": { + "nx_name": "uncertainties", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "resolutions", + "variable": false, + "more": { + "nx_name": "resolutions", + "nx_type": "NX_CHAR", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "resolutions_description", + "variable": false, + "more": { + "nx_name": "resolutions_description", + "nx_type": "NX_CHAR", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "I", + "description": ".. index:: NXcanSAS (applications); I\n \nArray of intensity (:math:`I`) data.\n\nThe intensity may be represented in one of these forms:\n\n**absolute units**: :math:`d\\Sigma/d\\Omega(Q)`\ndifferential cross-section\nper unit volume per unit solid angle (such as: 1/cm/sr or 1/m/sr)\n\n**absolute units**: :math:`d\\sigma/d\\Omega(Q)`\ndifferential cross-section\nper unit atom per unit solid angle (such as: cm^2 or m^2)\n\n**arbitrary units**: :math:`I(Q)`\nusually a ratio of two detectors \nbut units are meaningless (such as: a.u. or counts)\n\nThis presents a few problems \nfor analysis software to sort out when reading the data.\nFortunately, it is possible to analyze the *units* to determine which type of\nintensity is being reported and make choices at the time the file is read. But this is\nan area for consideration and possible improvement.\n\nOne problem arises with software that automatically converts data into some canonical\nunits used by that software. The software should not convert units between these different\ntypes of intensity indiscriminately.\n\nA second problem is that when arbitrary units are used, then the set of possible\nanalytical results is restricted. With such units, no meaningful volume fraction \nor number density can be determined directly from :math:`I(Q)`.\n\nIn some cases, it is possible to apply a factor to convert the arbitrary \nunits to an absolute scale. This should be considered as a possibility \nof the analysis process.\n\nWhere this documentation says *typical units*, it is possible that small-angle\ndata may be presented in other units and still be consistent with NeXus.\nSee the :ref:`design-units` section.\n ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-i-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "I", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_optional": "false" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1/m", + "1/cm", + "m2/g", + "cm2/g", + "arbitrary" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "uncertainties", + "variable": false, + "more": { + "nx_name": "uncertainties", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "scaling_factor", + "variable": false, + "more": { + "nx_name": "scaling_factor", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "Idev", + "description": ".. index:: NXcanSAS (applications); Idev\n\nEstimated **uncertainty** (usually standard deviation)\nin :math:`I`. Must have the same units as :math:`I`.\n\nWhen present, the name of this field is also \nrecorded in the *uncertainties* attribute of *I*, as in::\n\n I/@uncertainties=\"Idev\"", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-idev-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "Idev", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_optional": "false" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1/m", + "1/cm", + "m2/g", + "cm2/g", + "arbitrary" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "Qdev", + "description": ".. index:: NXcanSAS (applications); Qdev\n\nEstimated :math:`Q` **resolution** (usually standard deviation). \nMust have the same units as :math:`Q`.\n\nWhen present, the name of this field is also \nrecorded in the *resolutions* attribute of *Q*, \nas in::\n\n Q/@resolutions=\"Qdev\"\n\nor::\n\n Q/@resolutions=\"dQw\", \"dQl\"", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-qdev-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "Qdev", + "nx_units": "NX_PER_LENGTH", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_optional": "false" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1/m", + "1/nm", + "1/angstrom" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "dQw", + "description": ".. index:: NXcanSAS (applications); dQw\n\n:math:`Q` **resolution** along the axis of scanning \n(the high-resolution *slit width* direction). \nUseful for defining resolution data from \nslit-smearing instruments such as Bonse-Hart geometry.\nMust have the same units as :math:`Q`.\n\nWhen present, the name of this field is also \nrecorded in the *resolutions* attribute of *Q*, \nas in::\n\n Q/@resolutions=\"dQw\", \"dQl\"", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-dqw-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "dQw", + "nx_units": "NX_PER_LENGTH", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_optional": "false" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1/m", + "1/nm", + "1/angstrom" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "dQl", + "description": ".. index:: NXcanSAS (applications); dQl\n\n:math:`Q` **resolution** perpendicular to the axis of scanning \n(the low-resolution *slit length* direction). \nUseful for defining resolution data from \nslit-smearing instruments such as Bonse-Hart geometry.\nMust have the same units as :math:`Q`.\n\nWhen present, the name of this field is also \nrecorded in the *resolutions* attribute of *Q*, \nas in::\n\n Q/@resolutions=\"dQw\", \"dQl\"", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-dql-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "dQl", + "nx_units": "NX_PER_LENGTH", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_optional": "false" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1/m", + "1/nm", + "1/angstrom" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "Qmean", + "description": "Mean value of :math:`Q` for this data point. \nUseful when describing data that has been \nbinned from higher-resolution data. \n\nIt is expected that ``Q`` is provided \nand that both ``Q`` and ``Qmean`` will have the same units.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-qmean-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "Qmean", + "nx_minOccurs": "0", + "nx_units": "NX_PER_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_optional": "false" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1/m", + "1/nm", + "1/angstrom" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "ShadowFactor", + "description": "A numerical factor applied to pixels affected by the beam stop penumbra. \nUsed in data files from NIST/NCNR instruments.\n\nSee: J.G. Barker and J.S. Pedersen (1995) *J. Appl. Cryst.* **28**, 105-114.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-data-shadowfactor-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "ShadowFactor", + "nx_minOccurs": "0", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Description of the small-angle scattering instrument.\n\nConsider, carefully, the relevance to the SAS data analysis process\nwhen adding subgroups in this **NXinstrument** group. Additional information\ncan be added but will likely be ignored by standardized data anlysis processes.\n\nThe NeXus :ref:`NXbeam` base class may be added as a subgroup of this **NXinstrument**\ngroup *or* as a subgroup of the **NXsample** group to describe properties of the beam at any \npoint downstream from the source. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASinstrument" + ] + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "COLLIMATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture", + "description": ":ref:`NXaperture` is generic and limits the variation in data files.\n\nPossible NeXus base class alternatives are: :ref:`NXpinhole` or :ref:`NXslit`.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-aperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture", + "nx_type": "NXaperture", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASaperture" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "describe the type of aperture (pinhole, 4-blade slit, Soller slit, ...)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-aperture-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_gap", + "description": "opening along the :math:`x` axis", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-aperture-x-gap-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "x_gap", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "y_gap", + "description": "opening along the :math:`y` axis", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-aperture-y-gap-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "y_gap", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollimator", + "description": "Description of a collimating element (defines the divergence of the beam) in the instrument.\n\nTo document a slit, pinhole, or the beam, refer to the \ndocumentation of the ``NXinstrument`` group above.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-collimator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollimator", + "nx_type": "NXcollimator", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SAScollimation" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "length", + "description": "Amount/length of collimation inserted (as on a SANS instrument)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-collimator-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "length", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance from this collimation element to the sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-collimator-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "Description of a detector in the instrument.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASdetector" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Identifies the name of this detector", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "SDD", + "description": "Distance between sample and detector.\n\nNote: In NXdetector, the ``distance`` field records the \ndistance to the previous component ... most often the sample.\nThis use is the same as ``SDD`` for most SAS \ninstruments but not all. For example, Bonse-Hart cameras \nhave one or more crystals between the sample and detector.\n \nWe define here the field ``SDD`` to document without\nambiguity the distance between sample and detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-sdd-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "SDD", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "slit_length", + "description": "Slit length of the instrument for this detector, \nexpressed in the same units as :math:`Q`.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-slit-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "slit_length", + "nx_units": "NX_PER_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_position", + "description": "Location of the detector in :math:`x`", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-x-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "x_position", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "y_position", + "description": "Location of the detector in :math:`y`", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-y-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "y_position", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "roll", + "description": "Rotation of the detector about the :math:`z` axis (roll)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-roll-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "roll", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "pitch", + "description": "Rotation of the detector about the :math:`x` axis (roll)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-pitch-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pitch", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "yaw", + "description": "Rotation of the detector about the :math:`y` axis (yaw)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-yaw-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "yaw", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "beam_center_x", + "description": "Position of the beam center on the detector.\n\nThis is the x position where the direct beam would hit the detector plane.\nThis is a length and can be outside of the actual\ndetector. The length can be in physical units or pixels\nas documented by the units attribute. The value can be any\nreal number (positive, zero, or negative).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-beam-center-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_x", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "beam_center_y", + "description": "Position of the beam center on the detector.\n\nThis is the y position where the direct beam would hit the detector plane.\nThis is a length and can be outside of the actual\ndetector. The length can be in physical units or pixels\nas documented by the units attribute. The value can be any\nreal number (positive, zero, or negative).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-beam-center-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_y", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-detector-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "Description of the radiation source.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASsource" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "radiation", + "description": "Name of the radiation used.\nNote that this is **not** the name of the facility!\n\nThis field contains a value from either the \n``probe`` or ``type`` fields in :ref:`NXsource`. Thus, \nit is redundant with existing NeXus structure.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-radiation-field" + ], + "deprecated": "Use either (or both) ``probe`` or ``type`` fields from ``NXsource`` (issue #765)", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "radiation", + "nx_maxOccurs": "1", + "nx_optional": "true" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "neutron", + "x-ray", + "muon", + "electron", + "ultraviolet", + "visible light", + "positron", + "proton" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "beam_shape", + "description": "Text description of the shape of the beam (incident on the sample).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-beam-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "beam_shape", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength", + "description": "wavelength (:math:`\\lambda`) of radiation incident on the sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-incident-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "incident_wavelength", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "wavelength_min", + "description": "Some facilities specify wavelength using a range. \nThis is the lowest wavelength in such a range.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-wavelength-min-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "wavelength_min", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "wavelength_max", + "description": "Some facilities specify wavelength using a range. \nThis is the highest wavelength in such a range.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-wavelength-max-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "wavelength_max", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength_spread", + "description": "Some facilities specify wavelength using a range. \nThis is the width (FWHM) of such a range.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-incident-wavelength-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "incident_wavelength_spread", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "beam_size_x", + "description": "Size of the incident beam along the x axis.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-beam-size-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "beam_size_x", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "beam_size_y", + "description": "Size of the incident beam along the y axis.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-instrument-source-beam-size-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "beam_size_y", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Description of the sample.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASsample" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "**ID**: Text string that identifies this sample.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "thickness", + "description": "Thickness of this sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "thickness", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "transmission", + "description": "Transmission (:math:`I/I_0`) of this sample. \nThere is no *units* attribute as this number is dimensionless.\n\nNote: the ability to store a transmission *spectrum*, \ninstead of a single value, is provided elsewhere in the structure, \nin the *SAStransmission_spectrum* element.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-transmission-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "transmission", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "repeats": false, + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Temperature of this sample.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "details", + "description": "Any additional sample details.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-details-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "details", + "nx_minOccurs": "0", + "nx_maxOccurs": "unbounded", + "nx_nameType": "any", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_position", + "description": "Location of the sample in :math:`x`", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-x-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "x_position", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "y_position", + "description": "Location of the sample in :math:`y`", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-y-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "y_position", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "roll", + "description": "Rotation of the sample about the :math:`z` axis (roll)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-roll-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "roll", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "pitch", + "description": "Rotation of the sample about the :math:`x` axis (roll)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-pitch-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pitch", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "yaw", + "description": "Rotation of the sample about the :math:`y` axis (yaw)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-sample-yaw-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "yaw", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Description of a processing or analysis step.\n\nAdd additional fields as needed to describe value(s) of any \nvariable, parameter, or term related to the *SASprocess* step.\nBe sure to include *units* attributes for all numerical fields.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/10" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASprocess" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Optional name for this data processing or analysis step", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-process-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "date", + "description": "Optional date for this data processing or analysis step. [#iso8601]_\n\n\n.. [#iso8601] ISO-8601 standard time representation.\n\n NeXus dates and times are reported in ISO-8601 \n (e.g., ``yyyy-mm-ddThh:mm:ss``) \n or modified ISO-8601 (e.g., ``yyyy-mm-dd hh:mm:ss``). \n \n See: http://www.w3.org/TR/NOTE-datetime \n or http://en.wikipedia.org/wiki/ISO_8601 for more details.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-process-date-field", + "http://www.w3.org/TR/NOTE-datetime", + "http://en.wikipedia.org/wiki/ISO_8601" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "date", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Optional description for this data processing or analysis step", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-process-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "term", + "description": "Specifies the value of a single variable, parameter, \nor term (while defined here as a string, it could be a number) \nrelated to the *SASprocess* step.\n\nNote:\nThe name *term* is not required, it could take any name,\nas long as the name is unique within this group.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-process-term-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "term", + "nx_minOccurs": "0", + "nx_maxOccurs": "unbounded", + "nx_nameType": "any", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "NOTE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/11/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXnote", + "description": "Any additional notes or subprocessing steps will be documented here.\n\nAn **NXnote** group can be added to any NeXus group at or below the \n**NXentry** group. It is shown here as a suggestion of a good place \nto *consider* its use.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-process-note-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXnote", + "nx_type": "NXnote", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/93/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollection", + "description": "Describes anything about *SASprocess* that is not already described.\n\nAny content not defined in the canSAS standard can be placed at this point.\n\nNote:\nThe name of this group is flexible, it could take any name,\nas long as it is unique within the **NXprocess** group.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-process-collection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASprocessnote" + ] + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollection", + "description": "Free form description of anything not covered by other elements.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-collection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/7" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SASnote" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "TRANSMISSION_SPECTRUM", + "description": "The *SAStransmission_spectrum* element\n\nThis describes certain data obtained from a variable-wavelength source\nsuch as pulsed-neutron source.\n\n\nThe name of each *SAStransmission_spectrum* group must be unique within a SASentry group. \nSuggest using names such as ``sastransmission_spectrum01``.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-transmission-spectrum-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "TRANSMISSION_SPECTRUM", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "T" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "canSAS_class", + "variable": true, + "more": { + "nx_name": "canSAS_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "SAStransmission_spectrum" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 5, + "m_parent_sub_section": "attributes", + "name": "T_axes", + "variable": true, + "more": { + "nx_name": "T_axes" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "T" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 6, + "m_parent_sub_section": "attributes", + "name": "name", + "variable": false, + "more": { + "nx_name": "name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 7, + "m_parent_sub_section": "attributes", + "name": "timestamp", + "variable": false, + "more": { + "nx_name": "timestamp", + "nx_type": "NX_DATE_TIME", + "nx_optional": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "lambda", + "description": "Wavelength of the radiation.\n\nThis array is of the same shape as ``T`` and ``Tdev``.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-transmission-spectrum-lambda-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "lambda", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "T", + "description": "Transmission values (:math:`I/I_0`)\nas a function of wavelength.\n\nThis array is of the same shape as ``lambda`` and ``Tdev``.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-transmission-spectrum-t-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "T", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "uncertainties", + "variable": false, + "more": { + "nx_name": "uncertainties" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "Tdev", + "description": ".. index:: NXcanSAS (applications); Tdev\n\nEstimated uncertainty (usually standard deviation)\nin :math:`T`. Must have the same units as :math:`T`.\n\nThis is the field is named in the *uncertainties* attribute of *T*, as in::\n\n T/@uncertainties=\"Tdev\"\n \nThis array is of the same shape as ``lambda`` and ``T``.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXcanSAS.html#nxcansas-entry-transmission-spectrum-tdev-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "Tdev", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "NXcapillary", + "description": "A capillary lens to focus the X-ray beam.\n\nBased on information provided by Gerd Wellenreuther (DESY).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcapillary", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type of the capillary", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "single_bounce", + "polycapillary", + "conical_capillary" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "manufacturer", + "description": "The manufacturer of the capillary. This is actually important as \nit may have an impact on performance.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-manufacturer-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "manufacturer", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "maximum_incident_angle", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-maximum-incident-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "maximum_incident_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "accepting_aperture", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-accepting-aperture-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "accepting_aperture", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "working_distance", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-working-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "working_distance", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "focal_size", + "description": "The focal size in FWHM", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-focal-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "focal_size", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a capillary lens.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "gain", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/12/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "transmission", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/12/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/12/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "gain", + "description": "The gain of the capillary as a function of energy", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-gain-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "gain", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "transmission", + "description": "The transmission of the capillary as a function of energy", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-transmission-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "transmission", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcapillary.html#nxcapillary-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "NXchamber", + "description": "Component of an instrument to store or place objects and specimens.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXchamber.html#nxchamber-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXchamber", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXchamber.html#nxchamber-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Free-text field for describing details about the chamber.\nFor example out of which material was the chamber built.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXchamber.html#nxchamber-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/13/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXchamber.html#nxchamber-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "NXcite", + "description": "A literature reference\n\nDefinition to include references for example for detectors,\nmanuals, instruments, acquisition or analysis software used.\n\nThe idea would be to include this in the relevant NeXus object:\n:ref:`NXdetector` for detectors, :ref:`NXinstrument` for instruments, etc.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcite.html#nxcite-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcite", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "This should describe the reason for including this reference.\nFor example: The dataset in this group was normalised using the method \nwhich is described in detail in this reference.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcite.html#nxcite-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "url", + "description": "URL referencing the document or data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcite.html#nxcite-url-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "url", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "doi", + "description": "DOI referencing the document or data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcite.html#nxcite-doi-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "doi", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "endnote", + "description": "Bibliographic reference data in EndNote format.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcite.html#nxcite-endnote-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "endnote", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "bibtex", + "description": "Bibliographic reference data in BibTeX format.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcite.html#nxcite-bibtex-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "bibtex", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "NXcollection", + "description": "An unvalidated set of terms, such as the description of a beam line.\n\nUse :ref:`NXcollection` to gather together any set of terms.\nThe original suggestion is to use this as a container \nclass for the description of a beamline.\n\nFor NeXus validation, :ref:`NXcollection` will always generate \na warning since it is always an optional group. \nAnything (groups, fields, or attributes) placed in\nan :ref:`NXcollection` group will not be validated.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollection.html#nxcollection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "NXcollectioncolumn", + "description": "Subclass of NXelectronanalyser to describe the electron collection column of a\nphotoelectron analyser.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollectioncolumn", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "scheme", + "description": "Scheme of the electron collection lens, i.e. standard, deflector, PEEM, momentum\nmicroscope, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-scheme-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "scheme", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "extractor_voltage", + "description": "Voltage applied to the extractor lens", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-extractor-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "extractor_voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "extractor_current", + "description": "Current necessary to keep the extractor lens at a set voltage. Variations\nindicate leakage, field emission or arc currents to the extractor lens.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-extractor-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "extractor_current", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "working_distance", + "description": "Distance between sample and detector entrance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-working-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "working_distance", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Labelling of the lens setting in use.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "projection", + "description": "The space projected in the angularly dispersive directions, real or reciprocal", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-projection-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "projection", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "real", + "reciprocal" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "magnification", + "description": "The magnification of the electron lens assembly.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-magnification-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "magnification", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Specifies the position of the collectioncolumn by pointing to the last\ntransformation in the transformation chain in the NXtransformations group.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/16/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/16/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DEFLECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/16/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "LENS_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/16/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Collection of axis-based translations and rotations to describe the location and\ngeometry of the deflector as a component in the instrument. Conventions from the\nNXtransformations base class are used. In principle, the McStas coordinate\nsystem is used. The first transformation has to point either to another\ncomponent of the system or . (for pointing to the reference frame) to relate it\nrelative to the experimental setup. Typically, the components of a system should\nall be related relative to each other and only one component should relate to\nthe reference coordinate system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture", + "description": "The size and position of an aperture inserted in the column, e.g. field aperture\nor contrast aperture", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-aperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture", + "nx_type": "NXaperture", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdeflector", + "description": "Deflectors in the collection column section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdeflector", + "nx_type": "NXdeflector", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/26" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlens_em", + "description": "Individual lenses in the collection column section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcollectioncolumn.html#nxcollectioncolumn-lens-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlens_em", + "nx_type": "NXlens_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/70" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "name": "NXcollimator", + "description": "A beamline collimator.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollimator", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Soller", + "radial", + "oscillating", + "honeycomb" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "soller_angle", + "description": "Angular divergence of Soller collimator", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-soller-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "soller_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "divergence_x", + "description": "divergence of collimator in local x direction", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-divergence-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "divergence_x", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "divergence_y", + "description": "divergence of collimator in local y direction", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-divergence-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "divergence_y", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "frequency", + "description": "Frequency of oscillating collimator", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-frequency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "frequency", + "nx_units": "NX_FREQUENCY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "blade_thickness", + "description": "blade thickness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-blade-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "blade_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "blade_spacing", + "description": "blade spacing", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-blade-spacing-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "blade_spacing", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "absorbing_material", + "description": "name of absorbing material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-absorbing-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "absorbing_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "transmitting_material", + "description": "name of transmitting material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-transmitting-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "transmitting_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nAssuming a collimator with a \"flat\" entry surface, the reference plane is the plane which contains this surface. The reference\npoint of the collimator in the x and y axis is the centre of the collimator entry surface on that plane. The reference plane is orthogonal\nto the z axis and the location of this plane is the reference point on the z axis. The collimator faces negative z values.\n\n.. image:: collimator/collimator.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/17/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "frequency_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/17/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/17/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/17/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "position, shape and size", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the collimator and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "frequency_log", + "description": "Log of frequency", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-frequency-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "frequency_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcollimator.html#nxcollimator-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "section_definitions", + "name": "NXcontainer", + "description": "State of a container holding the sample under investigation.\n\nA container is any object in the beam path which absorbs the beam and \nwhose contribution to the overall attenuation/scattering needs to be \ndetermined to process the experimental data. Examples of containers \ninclude glass capillary tubes, vanadium cans, windows in furnaces or \ndiamonds in a Diamond Anvil Cell. The following figures show a complex\nexample of a container:\n\n.. figure:: container/ComplexExampleContainer.png\n \n A hypothetical capillary furnace. The beam passes from left to right\n (blue dashes), passing through window 1, then window 2, before \n passing through the downstream wall of the capillary. It is then \n scattered by the sample with scattered beams passing through the \n upstream wall of the capillary, then windows 4 and 5. As part of the\n corrections for a PDF experiment it is necessary to subtract the PDF\n of the empty container (i.e. each of the windows and the capillary).\n To calculate the PDF of the empty container it is necessary to have \n the measured scattering data and to know the nature (e.g. density, \n elemental composition, etc.) of the portion of the container which \n the beam passed through.\n \n.. figure:: container/ComplexContainerBeampath.png\n \n A complete description of the shapes of the container elements with \n their orientation relative to the beam and also information on \n whether they are upstream or downstream of the sample is also \n therefore important. For example, although the windows 2 and 4 have \n the same shape, the path taken through them by the beam is very \n different and this needs to be modelled. Furthermore, it is not \n inconceivable that windows might move during an experiment and thus \n the changes to the beampath would need to be accounted for.\n\nThis class encodes the position of the container with respect to the \nsample and allows the calculation of the beampath through the container.\nIt also includes sufficient data to model beam absorption of the \ncontainer and a link to a dataset containing a measurement of the \ncontainer with nothing inside, to allow data corrections (at a specific\nbeam energy/measurement time) to be made.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcontainer", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of container.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Verbose description of container and how it fits into the wider \nexperimental set up.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "description": "Chemical composition of the material the container is made from.\nSpecified using CIF conventions. Abbreviated version of CIF \nstandard: \n\n* Only recognized element symbols may be used.\n* Each element symbol is followed by a 'count' number. A count of \n '1' may be omitted.\n* A space or parenthesis must separate each cluster of (element \n symbol + count).\n* Where a group of elements is enclosed in parentheses, the \n multiplier for the group must follow the closing parentheses. \n That is, all element and group multipliers are assumed to be \n printed as subscripted numbers.\n* Unless the elements are ordered in a manner that corresponds to \n their chemical structure, the order of the elements within any \n group or moiety depends on whether or not carbon is present.\n* If carbon is present, the order should be: \n\n - C, then H, then the other elements in alphabetical order of \n their symbol. \n - If carbon is not present, the elements are listed purely in \n alphabetic order of their symbol. \n \n* This is the *Hill* system used by Chemical Abstracts.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-chemical-formula-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "chemical_formula", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "density", + "description": "Density of the material the container is made from.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "packing_fraction", + "description": "Fraction of the volume of the container occupied by the material \nforming the container.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-packing-fraction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "packing_fraction", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "relative_molecular_mass", + "description": "Relative molecular mass of container.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-relative-molecular-mass-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "relative_molecular_mass", + "nx_units": "NX_MASS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "[mass]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "beam", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/18/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/18/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "orientation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/18/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "beam", + "description": "Details of beam incident on container, including the position \nrelative to the sample (to determine whether the container is \nupstream or downstream of the sample).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "beam", + "nx_type": "NXbeam", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/7" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "Shape of the container. In combination with orientation this \nshould allow the beampath through the container to be modelled to \nallow the adsorption to be calculated.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "orientation", + "description": "The angle the container makes to the beam and how it may change \nduring the experiment.In combination with shape this should allow \nthe beampath through the container to be modelled to allow the \nadsorption of the container to be calculated.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcontainer.html#nxcontainer-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "orientation", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "section_definitions", + "name": "NXcoordinate_system_set", + "description": "Container to hold different coordinate systems conventions.\n\nIt is the purpose of this base class to define these conventions and\noffer a place to store mappings between different coordinate systems\nwhich are relevant for the interpretation of the data described\nby the application definition and base class instances.\n\nFor each Cartesian coordinate system users should use a set of\nNXtransformations:\n\n* These should define the three base vectors. \n* The location of the origin. \n* The affine transformations which bring each axis of this coordinate system \n into registration with the McStas coordinate system. \n* Equally, affine transformations should be given for the inverse mapping. \n\nAs an example one may take an experiment or computer simulation where\nthere is a laboratory (lab) coordinate system, a sample/specimen coordinate\nsystem, a crystal coordinate system, and additional coordinate systems,\nwhich are eventually attached to components of the instrument.\n\nIf no additional transformation is specified in this group or if an\ninstance of an NXcoordinate_system_set is absent it should be assumed\nthe so-called McStas coordinate system is used.\n\nMany application definitions in NeXus refer to this `McStas <https://mailman2.mcstas.org/pipermail/mcstas-users/2021q2/001431.html>`_ coordinate system.\nThis is a Cartesian coordinate system whose z axis points along the neutron \npropagation axis. The systems y axis is vertical up, while the x axis points\nleft when looking along the z-axis. Thus, McStas is a right-handed coordinate system.\n\nWithin each NXtransformations a depends_on section is required. The depends_on\nfield specifies if the coordinate system is the root/reference\n(which is indicated by writing \".\" in the depends_on section.)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcoordinate-system-set.html#nxcoordinate-system-set-group", + "https://mailman2.mcstas.org/pipermail/mcstas-users/2021q2/001431.html" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcoordinate_system_set", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/19/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "A group of transformations which specify:\n\n* Three base vectors of the coordinate system. \n* Origin of the coordinate system. \n* A depends_on keyword. Its value can be \".\" or the name of an \n NXtransformations instance which needs to exist in the \n NXcoordinate_system_set instance. \n* If the coordinate system is the reference one it has to be named \n reference. \n\nIn case of having more than one NXtransformations there has to be for \neach additional coordinate system, i.e. the one not the reference:\n\n* A set of translations and rotations which map each base vector to the reference. \n* A set of translations and rotations which map each reference base vector \n to the coordinate system. \n\nThe NXtransformations for these mappings need to be formatted\naccording to the descriptions in NXtransformations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcoordinate-system-set.html#nxcoordinate-system-set-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "section_definitions", + "name": "NXcorrector_cs", + "description": "Corrector for aberrations in an electron microscope.\n\nDifferent vendors use a different naming schemes for aberration coefficients.\nIt is the users responsibility to map to the best matching values.\n\nIn transmission electron microscopes the spherical aberration corrector is\na component that is controlled via instructing the microscope to achieve\nset point values. The corrector is composed of multiple lenses and other\nparts with vendor-specific details which are often undisclosed.\n\nIn the case of Nion Co. microscopes the coefficients of the corrector can be\nretrieved via NionSwift, which is why currently the Nion convention for the\naberration coefficients is used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcorrector-cs.html#nxcorrector-cs-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcorrector_cs", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Was the corrector used?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcorrector-cs.html#nxcorrector-cs-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcorrector-cs.html#nxcorrector-cs-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Ideally, a (globally) unique persistent identifier, link,\nor text to a resource which gives further details. If this does not exist\na free-text field to report further details about the corrector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcorrector-cs.html#nxcorrector-cs-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/20/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "ABERRATION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/20/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "LENS_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/20/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/20/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcorrector-cs.html#nxcorrector-cs-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaberration", + "description": "Models for aberrations of electro-magnetic lenses in electron microscopy.\n\nThe notation follows `O. Krivanek et al. (1999) <https://doi.org/10.1016/S0304-3991(99)00013-3>`_\nand `O. Krivanek et al. (2003) <https://doi.org/10.1016/S0304-3991(03)00090-1>`_\nSee also `S. J. Pennycock and P. D. Nellist <https://doi.org/10.1007/978-1-4419-7200-2>`_ (page 44ff, and page 118ff)\nfor further details, additional literature, and the unit of the coefficients.\nConsult Table 7-2 of Ibid. publication on how to convert between\nconventions of different groups/vendors.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcorrector-cs.html#nxcorrector-cs-aberration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaberration", + "nx_type": "NXaberration", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/0" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlens_em", + "description": "Description of an electro-magnetic lens or a compound lens.\n\nFor NXtransformations the origin of the coordinate system is placed\nin the center of the lens\n(its polepiece, pinhole, or another point of reference).\nThe origin should be specified in the NXtransformations.\n\nFor details of electro-magnetic lenses in the literature see e.g. `L. Reimer <https://doi.org/10.1007/978-3-540-38967-5>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcorrector-cs.html#nxcorrector-cs-lens-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlens_em", + "nx_type": "NXlens_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/70" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Collection of axis-based translations and rotations to describe a geometry.\nMay also contain axes that do not move and therefore do not have a transformation\ntype specified, but are useful in understanding coordinate frames within which\ntransformations are done, or in documenting important directions, such as the\ndirection of gravity.\n\nA nested sequence of transformations lists the translation and rotation steps\nneeded to describe the position and orientation of any movable or fixed device.\n\nThere will be one or more transformations (axes) defined by one or more fields\nfor each transformation. Transformations can also be described by NXlog groups when\nthe values change with time. The all-caps name ``AXISNAME`` designates the\nparticular axis generating a transformation (e.g. a rotation axis or a translation\naxis or a general axis). The attribute ``units=\"NX_TRANSFORMATION\"`` designates the\nunits will be appropriate to the ``transformation_type`` attribute:\n\n* ``NX_LENGTH`` for ``translation``\n* ``NX_ANGLE`` for ``rotation``\n* ``NX_UNITLESS`` for axes for which no transformation type is specified\n\nThis class will usually contain all axes of a sample stage or goniometer or\na detector. The NeXus default McSTAS coordinate frame is assumed, but additional\nuseful coordinate axes may be defined by using axes for which no transformation\ntype has been specified.\n\nThe entry point (``depends_on``) will be outside of this class and point to a\nfield in here. Following the chain may also require following ``depends_on``\nlinks to transformations outside, for example to a common base table. If\na relative path is given, it is relative to the group enclosing the ``depends_on``\nspecification.\n\nFor a chain of three transformations, where :math:`T_1` depends on :math:`T_2`\nand that in turn depends on :math:`T_3`, the final transformation :math:`T_f` is\n\n.. math:: T_f = T_3 T_2 T_1\n\nIn explicit terms, the transformations are a subset of affine transformations\nexpressed as 4x4 matrices that act on homogeneous coordinates, :math:`w=(x,y,z,1)^T`.\n\nFor rotation and translation,\n\n.. math:: T_r &= \\begin{pmatrix} R & o \\\\ 0_3 & 1 \\end{pmatrix} \\\\ T_t &= \\begin{pmatrix} I_3 & t + o \\\\ 0_3 & 1 \\end{pmatrix}\n\nwhere :math:`R` is the usual 3x3 rotation matrix, :math:`o` is an offset vector,\n:math:`0_3` is a row of 3 zeros, :math:`I_3` is the 3x3 identity matrix and\n:math:`t` is the translation vector.\n\n:math:`o` is given by the ``offset`` attribute, :math:`t` is given by the ``vector``\nattribute multiplied by the field value, and :math:`R` is defined as a rotation\nabout an axis in the direction of ``vector``, of angle of the field value.\n\nNOTE\n\nOne possible use of ``NXtransformations`` is to define the motors and\ntransformations for a diffractometer (goniometer). Such use is mentioned\nin the ``NXinstrument`` base class. Use one ``NXtransformations`` group \nfor each diffractometer and name the group appropriate to the device.\nCollecting the motors of a sample table or xyz-stage in an NXtransformations\ngroup is equally possible.\n\n\nFollowing the section on the general dscription of axis in NXtransformations is a section which\ndocuments the fields commonly used within NeXus for positioning purposes and their meaning. Whenever\nthere is a need for positioning a beam line component please use the existing names. Use as many fields\nas needed in order to position the component. Feel free to add more axis if required. In the description\ngiven below, only those atttributes which are defined through the name are spcified. Add the other attributes\nof the full set:\n\n* vector\n* offset\n* transformation_type\n* depends_on\n\nas needed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcorrector-cs.html#nxcorrector-cs-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "section_definitions", + "name": "NXcrystal", + "description": "A crystal monochromator or analyzer. \n\nPermits double bent\nmonochromator comprised of multiple segments with anisotropic \nGaussian mosaic.\n\nIf curvatures are set to zero or are absent, array \nis considered to be flat.\n\nScattering vector is perpendicular to surface. Crystal is oriented\nparallel to beam incident on crystal before rotation, and lies in\nvertical plane.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcrystal", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "usage", + "description": "How this crystal is used. Choices are in the list.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-usage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "usage", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Bragg", + "Laue" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type or material of monochromating substance. \nChemical formula can be specified separately.\nUse the \"reflection\" field to indicate the (hkl) orientation.\nUse the \"d_spacing\" field to record the lattice plane spacing.\n\nThis field was changed (2010-11-17) from an enumeration to\na string since common usage showed a wider variety of use\nthan a simple list. These are the items in the list at \nthe time of the change: PG (Highly Oriented Pyrolytic Graphite) |\nGe | Si | Cu | Fe3Si | CoFe | Cu2MnAl (Heusler) | Multilayer |\nDiamond.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "description": "The chemical formula specified using CIF conventions.\nAbbreviated version of CIF standard: \n\n* Only recognized element symbols may be used.\n* Each element symbol is followed by a 'count' number. A count of '1' may be omitted.\n* A space or parenthesis must separate each cluster of (element symbol + count).\n* Where a group of elements is enclosed in parentheses, the multiplier for the \n group must follow the closing parentheses. That is, all element and group \n multipliers are assumed to be printed as subscripted numbers.\n* Unless the elements are ordered in a manner that corresponds to their chemical \n structure, the order of the elements within any group or moiety depends on \n whether or not carbon is present.\n* If carbon is present, the order should be: \n C, then H, then the other elements in alphabetical order of their symbol. \n If carbon is not present, the elements are listed purely in alphabetic \n order of their symbol. \n* This is the *Hill* system used by Chemical Abstracts.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-chemical-formula-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "chemical_formula", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "order_no", + "description": "A number which describes if this is the first, second,.. \n:math:`n^{th}` crystal in a multi crystal monochromator", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-order-no-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "order_no", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "cut_angle", + "description": "Cut angle of reflecting Bragg plane and plane of crystal surface", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-cut-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "cut_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "space_group", + "description": "Space group of crystal structure", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-space-group-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "space_group", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "unit_cell", + "description": "Unit cell parameters (lengths and angles)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-unit-cell-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp", + 6 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "unit_cell_a", + "description": "Unit cell lattice parameter: length of side a", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-unit-cell-a-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_a", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "unit_cell_b", + "description": "Unit cell lattice parameter: length of side b", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-unit-cell-b-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_b", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "unit_cell_c", + "description": "Unit cell lattice parameter: length of side c", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-unit-cell-c-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_c", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "unit_cell_alpha", + "description": "Unit cell lattice parameter: angle alpha", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-unit-cell-alpha-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_alpha", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "unit_cell_beta", + "description": "Unit cell lattice parameter: angle beta", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-unit-cell-beta-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_beta", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "unit_cell_gamma", + "description": "Unit cell lattice parameter: angle gamma", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-unit-cell-gamma-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_gamma", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "unit_cell_volume", + "description": "Volume of the unit cell", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-unit-cell-volume-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_volume", + "nx_units": "NX_VOLUME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "orientation_matrix", + "description": "Orientation matrix of single crystal sample using Busing-Levy convention:\nW. R. Busing and H. A. Levy (1967). Acta Cryst. 22, 457-464", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-orientation-matrix-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "orientation_matrix", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "Optimum diffracted wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "d_spacing", + "description": "spacing between crystal planes of the reflection", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-d-spacing-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "d_spacing", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "scattering_vector", + "description": "Scattering vector, Q, of nominal reflection", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-scattering-vector-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "scattering_vector", + "nx_units": "NX_WAVENUMBER", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "reflection", + "description": "Miller indices (hkl) values of nominal reflection", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-reflection-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "reflection", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + 3 + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "thickness", + "description": "Thickness of the crystal. (Required for Laue orientations - see \"usage\" field)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "density", + "description": "mass density of the crystal", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "segment_width", + "description": "Horizontal width of individual segment", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-segment-width-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "segment_width", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "segment_height", + "description": "Vertical height of individual segment", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-segment-height-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "segment_height", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "segment_thickness", + "description": "Thickness of individual segment", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-segment-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "segment_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "segment_gap", + "description": "Typical gap between adjacent segments", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-segment-gap-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "segment_gap", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "segment_columns", + "description": "number of segment columns in horizontal direction", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-segment-columns-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "segment_columns", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "segment_rows", + "description": "number of segment rows in vertical direction", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-segment-rows-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "segment_rows", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "mosaic_horizontal", + "description": "horizontal mosaic Full Width Half Maximum", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-mosaic-horizontal-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mosaic_horizontal", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "mosaic_vertical", + "description": "vertical mosaic Full Width Half Maximum", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-mosaic-vertical-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mosaic_vertical", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "curvature_horizontal", + "description": "Horizontal curvature of focusing crystal", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-curvature-horizontal-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "curvature_horizontal", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "curvature_vertical", + "description": "Vertical curvature of focusing crystal", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-curvature-vertical-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "curvature_vertical", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "is_cylindrical", + "description": "Is this crystal bent cylindrically?", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-is-cylindrical-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "is_cylindrical", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "cylindrical_orientation_angle", + "description": "If cylindrical: cylinder orientation angle", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-cylindrical-orientation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "cylindrical_orientation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "Polar (scattering) angle at which crystal assembly is positioned. \nNote: some instrument geometries call this term 2theta.\nNote: it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "Azimuthal angle at which crystal assembly is positioned.\nNote: it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "bragg_angle", + "description": "Bragg angle of nominal reflection", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-bragg-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bragg_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "average/nominal crystal temperature", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "temperature_coefficient", + "description": "how lattice parameter changes with temperature", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-temperature-coefficient-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature_coefficient", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a crystal.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/21/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "temperature_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/21/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "reflectivity", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/21/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "transmission", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/21/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/21/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/21/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/21/inner_section_definitions/6", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "Position of crystal", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the crystal and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "temperature_log", + "description": "log file of crystal temperature", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-temperature-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "temperature_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "reflectivity", + "description": "crystal reflectivity versus wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-reflectivity-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reflectivity", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "transmission", + "description": "crystal transmission versus wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-transmission-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "transmission", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "A NXshape group describing the shape of the crystal arrangement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-shape-group" + ], + "deprecated": "Use NXoff_geometry instead to describe the shape of the monochromator", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Transformations used by this component to define its position and orientation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcrystal.html#nxcrystal-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "section_definitions", + "name": "NXcsg", + "description": "Constructive Solid Geometry base class, using :ref:`NXquadric` and :ref:`NXoff_geometry`", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcsg.html#nxcsg-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcsg", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "operation", + "description": "One of the standard construction solid geometry set operations,\nor if the CSG is a pointer to the geometry provided by an\n:ref:`NXquadric` or an :ref:`NXoff_geometry`. Takes values:", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcsg.html#nxcsg-operation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "operation", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "UNION", + "INTERSECTION", + "DIFFERENCE", + "COMPLEMENT", + "IS_QUADRIC", + "IS_MESH" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "geometry", + "description": "Path to a field that is either an :ref:`NXquadric` (if\n'operation' = IS_QUADRIC) or an :ref:`NXoff_geometry` (if\n'operation' = IS_MESH) that defines the surface making up the\nconstructive solid geometry component. Compulsory if 'operation'\nis IS_QUADRIC or IS_MESH.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcsg.html#nxcsg-geometry-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "geometry", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "a", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/22/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "b", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/22/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "a", + "description": "The first operand of constructive solid geometry\noperation. Compulsory if 'operation' is UNION, INTERSECTION,\nDIFFERENCE or COMPLEMENT.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcsg.html#nxcsg-a-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "a", + "nx_type": "NXcsg", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/22" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "b", + "description": "The second operand of constructive solid geometry\noperation. Compulsory if 'operation' is UNION, INTERSECTION or\nDIFFERENCE.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcsg.html#nxcsg-b-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "b", + "nx_type": "NXcsg", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/22" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "section_definitions", + "name": "NXcxi_ptycho", + "description": "Application definition for a ptychography experiment, compatible with CXI from version 1.6. \n\nThis is compatible with CXI from version 1.6 if this application definition\nis put at the top \"entry\" level. Above this a \"cxi_version\" field should be defined. The CXI format is name based, rather than class based, and so it is important\nto pay attention to the naming convention to be CXI compatible. There are duplications due to the format merger. These should be achieved by linking, \nwith hdf5 Virtual Dataset being used to restructure any data that needs to be remapped. To be fully CXI compatible, all units (including energy) must be in SI units. \n\nAn example here is that CXI expects the data to always to have shape (npts_x*npts_y, frame_size_x, frame_size_y). For nexus this is only true for arbitrary scan paths\nwith raster format scans taking shape (npts_x, npts_y, frame_size_x, frame_size_y). ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXcxi_ptycho", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry_1", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "data_1", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "sample_1", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry_1", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry_1", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXcxi_ptycho" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument_1", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument_1", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument_1", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "source_1", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "beam_1", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "detector_1", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "source_1", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-source-1-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "source_1", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-source-1-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "This is the energy of the machine, not the beamline.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-source-1-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-source-1-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "muon", + "electron", + "ultraviolet", + "visible light", + "positron", + "proton" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-source-1-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "beam_1", + "description": "Properties of the neutron or X-ray beam at a given location. \n\nThis group is intended to be referenced\nby beamline component groups within the :ref:`NXinstrument` group or by the :ref:`NXsample` group. This group is\nespecially valuable in storing the results of instrument simulations in which it is useful\nto specify the beam profile, time distribution etc. at each beamline component. Otherwise,\nits most likely use is in the :ref:`NXsample` group in which it defines the results of the neutron\nscattering by the sample, e.g., energy transfer, polarizations.\n\nNote that incident_wavelength and related fields can be a scalar values or arrays, depending on the use case.\nTo support these use cases, the explicit dimensionality of these fields is not specified, but it can be inferred\nby the presense of and shape of accompanying fields, such as incident_wavelength_weights for a polychromatic beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-beam-1-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "beam_1", + "nx_type": "NXbeam", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/7" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-beam-1-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "extent", + "description": "Size of the beam entering this component. Note this represents\na rectangular beam aperture, and values represent FWHM", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-beam-1-extent-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "extent", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "incident_beam_divergence", + "description": "Beam crossfire in degrees parallel to the laboratory X axis\n\nThe dimension **c** is a series of moments of that represent\nthe standard uncertainty (e.s.d.) of the directions of\nof the beam. The first and second moments are in the XZ and YZ\nplanes around the mean source beam direction, respectively.\n\nFurther moments in **c** characterize co-variance terms, so\nthe next moment is the product of the first two, and so on.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-beam-1-incident-beam-divergence-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_beam_divergence", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "incident_beam_energy", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-beam-1-incident-beam-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_beam_energy", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "incident_energy_spread", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-beam-1-incident-energy-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_energy_spread", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector_1", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector_1", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "translation", + "description": "This is an array of shape (npts_x*npts_y, 3) and can be a Virtual Dataset of x and y", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "translation", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes", + "nx_optional": "false", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "interpretation", + "variable": false, + "more": { + "nx_name": "interpretation", + "nx_optional": "false", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "npts_x", + "npts_y", + "frame_size_x", + "frame_size_y" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "The distance between the detector and the sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "beam_center_x", + "description": "This is the x position where the direct beam would hit the detector.\nThis is a length and can be outside of the actual\ndetector. The length can be in physical units or pixels\nas documented by the units attribute.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-beam-center-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_x", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "beam_center_y", + "description": "This is the y position where the direct beam would hit the detector.\nThis is a length and can be outside of the actual\ndetector. The length can be in physical units or pixels\nas documented by the units attribute.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-beam-center-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_y", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "units", + "variable": false, + "more": { + "nx_name": "units", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "transformations", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "transformations", + "description": "Collection of axis-based translations and rotations to describe a geometry.\nMay also contain axes that do not move and therefore do not have a transformation\ntype specified, but are useful in understanding coordinate frames within which\ntransformations are done, or in documenting important directions, such as the\ndirection of gravity.\n\nA nested sequence of transformations lists the translation and rotation steps\nneeded to describe the position and orientation of any movable or fixed device.\n\nThere will be one or more transformations (axes) defined by one or more fields\nfor each transformation. Transformations can also be described by NXlog groups when\nthe values change with time. The all-caps name ``AXISNAME`` designates the\nparticular axis generating a transformation (e.g. a rotation axis or a translation\naxis or a general axis). The attribute ``units=\"NX_TRANSFORMATION\"`` designates the\nunits will be appropriate to the ``transformation_type`` attribute:\n\n* ``NX_LENGTH`` for ``translation``\n* ``NX_ANGLE`` for ``rotation``\n* ``NX_UNITLESS`` for axes for which no transformation type is specified\n\nThis class will usually contain all axes of a sample stage or goniometer or\na detector. The NeXus default McSTAS coordinate frame is assumed, but additional\nuseful coordinate axes may be defined by using axes for which no transformation\ntype has been specified.\n\nThe entry point (``depends_on``) will be outside of this class and point to a\nfield in here. Following the chain may also require following ``depends_on``\nlinks to transformations outside, for example to a common base table. If\na relative path is given, it is relative to the group enclosing the ``depends_on``\nspecification.\n\nFor a chain of three transformations, where :math:`T_1` depends on :math:`T_2`\nand that in turn depends on :math:`T_3`, the final transformation :math:`T_f` is\n\n.. math:: T_f = T_3 T_2 T_1\n\nIn explicit terms, the transformations are a subset of affine transformations\nexpressed as 4x4 matrices that act on homogeneous coordinates, :math:`w=(x,y,z,1)^T`.\n\nFor rotation and translation,\n\n.. math:: T_r &= \\begin{pmatrix} R & o \\\\ 0_3 & 1 \\end{pmatrix} \\\\ T_t &= \\begin{pmatrix} I_3 & t + o \\\\ 0_3 & 1 \\end{pmatrix}\n\nwhere :math:`R` is the usual 3x3 rotation matrix, :math:`o` is an offset vector,\n:math:`0_3` is a row of 3 zeros, :math:`I_3` is the 3x3 identity matrix and\n:math:`t` is the translation vector.\n\n:math:`o` is given by the ``offset`` attribute, :math:`t` is given by the ``vector``\nattribute multiplied by the field value, and :math:`R` is defined as a rotation\nabout an axis in the direction of ``vector``, of angle of the field value.\n\nNOTE\n\nOne possible use of ``NXtransformations`` is to define the motors and\ntransformations for a diffractometer (goniometer). Such use is mentioned\nin the ``NXinstrument`` base class. Use one ``NXtransformations`` group \nfor each diffractometer and name the group appropriate to the device.\nCollecting the motors of a sample table or xyz-stage in an NXtransformations\ngroup is equally possible.\n\n\nFollowing the section on the general dscription of axis in NXtransformations is a section which\ndocuments the fields commonly used within NeXus for positioning purposes and their meaning. Whenever\nthere is a need for positioning a beam line component please use the existing names. Use as many fields\nas needed in order to position the component. Feel free to add more axis if required. In the description\ngiven below, only those atttributes which are defined through the name are spcified. Add the other attributes\nof the full set:\n\n* vector\n* offset\n* transformation_type\n* depends_on\n\nas needed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "transformations", + "nx_type": "NXtransformations", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "vector", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-detector-1-transformations-vector-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "vector", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-entry-1-instrument-1-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "npts_x", + "npts_y" + ], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes", + "nx_type": "NX_CHAR", + "nx_optional": "false" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_indices", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-data-x-indices-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "x_indices", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "y_indices", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-data-y-indices-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "y_indices", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "data_1", + "description": "To ensure CXI compatibility the data in this group must always have shape that is\n(npts_x*npts_y, frame_size_x, frame_size_y). For nexus-style raster scans it is proposed that\nhdf5 virtual dataset is used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-data-1-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data_1", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample_1", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-sample-1-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample_1", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-sample-1-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "transformations", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/3/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "geometry_1", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/23/inner_section_definitions/3/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "transformations", + "description": "This must contain two fields with the x and y motors that are linked via the \ndependency tree according to the real-life motor layout dependency.\nFor raster scans x and y will have shape (npts_x, npts_y)\nFor arbitrary scans x and y will be (npts_x*npts_y,)\nAn attribute with the units for each motor is required. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-sample-1-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "transformations", + "nx_type": "NXtransformations", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_optional": "false", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry_1", + "description": "An unvalidated set of terms, such as the description of a beam line.\n\nUse :ref:`NXcollection` to gather together any set of terms.\nThe original suggestion is to use this as a container \nclass for the description of a beamline.\n\nFor NeXus validation, :ref:`NXcollection` will always generate \na warning since it is always an optional group. \nAnything (groups, fields, or attributes) placed in\nan :ref:`NXcollection` group will not be validated.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXcxi-ptycho.html#nxcxi-ptycho-sample-1-geometry-1-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry_1", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 24, + "m_parent_sub_section": "section_definitions", + "name": "NXcylindrical_geometry", + "description": "Geometry description for cylindrical shapes.\nThis class can be used in place of ``NXoff_geometry`` when an exact\nrepresentation for cylinders is preferred.\nFor example, for Helium-tube, neutron detectors.\nIt can be used to describe the shape of any beamline component, including detectors.\nIn the case of detectors it can be used to define the shape of a single pixel, or,\nif the pixel shapes are non-uniform, to describe the shape of the whole detector.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcylindrical-geometry.html#nxcylindrical-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcylindrical_geometry", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "vertices", + "description": "List of x,y,z coordinates for vertices.\nThe origin of the coordinates is the position of the parent component, for\nexample the NXdetector which the geometry describes.\nIf the shape describes a single pixel for a detector with uniform pixel shape\nthen the origin is the position of each pixel as described by the\n``x/y/z_pixel_offset`` datasets in ``NXdetector``.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcylindrical-geometry.html#nxcylindrical-geometry-vertices-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "vertices", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "cylinders", + "description": "List of indices of vertices in the ``vertices`` dataset to form each cylinder.\nEach cylinder is described by three vertices A, B, C.\nFirst vertex A lies on the cylinder axis and circular face, second point B\non edge of the same face as A, and third point C at the other face and on axis.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcylindrical-geometry.html#nxcylindrical-geometry-cylinders-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "cylinders", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "j", + 3 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "detector_number", + "description": "Maps cylinders in ``cylinder``, by index, with a detector id.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXcylindrical-geometry.html#nxcylindrical-geometry-detector-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "detector_number", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "k" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 25, + "m_parent_sub_section": "section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-group", + "https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "AXISNAME", + "description": "Dimension scale defining an axis of the data.\nClient is responsible for defining the dimensions of the data.\nThe name of this field may be changed to fit the circumstances.\nStandard NeXus client tools will use the attributes to determine\nhow to use this field.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-axisname-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "AXISNAME", + "nx_nameType": "any", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "distribution", + "variable": false, + "more": { + "nx_name": "distribution", + "nx_type": "NX_BOOLEAN" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "first_good", + "variable": false, + "more": { + "nx_name": "first_good", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "last_good", + "variable": false, + "more": { + "nx_name": "last_good", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "Use the group ``axes`` attribute (NIAC2014)" + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "FIELDNAME_errors", + "description": "\"Errors\" (meaning *uncertainties* or *standard deviations*)\nassociated with any field named ``FIELDNAME`` in this ``NXdata``\ngroup (e.g. an axis, signal or auxiliary signal).\n\nThe dimensions of the ``FIELDNAME_errors`` field must match\nthe dimensions of the ``FIELDNAME`` field.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-fieldname-errors-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "FIELDNAME_errors", + "nx_nameType": "any", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "DATA", + "description": ".. index:: plotting\n\nThis field contains the data values to be used as the \nNeXus *plottable data*.\nClient is responsible for defining the dimensions of the data.\nThe name of this field may be changed to fit the circumstances.\nStandard NeXus client tools will use the attributes to determine\nhow to use this field.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-data-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "DATA", + "nx_nameType": "any", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal", + "nx_type": "NX_POSINT", + "nx_deprecated": "Use the group ``signal`` attribute (NIAC2014)" + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes", + "nx_deprecated": "Use the group ``axes`` attribute (NIAC2014)" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "errors", + "description": "Standard deviations of data values - \nthe data array is identified by the group attribute ``signal``. \nThe ``errors`` array must have the same dimensions as ``DATA``.\nClient is responsible for defining the dimensions of the data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-errors-field" + ], + "deprecated": "Use ``DATA_errors`` instead (NIAC2018)", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "errors", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "scaling_factor", + "description": "The elements in data are usually float values really. For\nefficiency reasons these are usually stored as integers\nafter scaling with a scale factor. This value is the scale\nfactor. It is required to get the actual physical value,\nwhen necessary.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-scaling-factor-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "scaling_factor", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "offset", + "description": "An optional offset to apply to the values in data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "offset", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Title for the plot.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x", + "description": "This is an array holding the values to use for the x-axis of\ndata. The units must be appropriate for the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nx" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "y", + "description": "This is an array holding the values to use for the y-axis of\ndata. The units must be appropriate for the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_axis": "2" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "ny" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "z", + "description": "This is an array holding the values to use for the z-axis of\ndata. The units must be appropriate for the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdata.html#nxdata-z-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "z", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_axis": "3" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nz" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 26, + "m_parent_sub_section": "section_definitions", + "name": "NXdeflector", + "description": "Deflectors as they are used e.g. in an electron analyser.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdeflector", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Qualitative type of deflector with respect to the number of pole pieces", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "dipole", + "quadrupole", + "hexapole", + "octupole" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Colloquial or short name for the deflector. For manufacturer names and\nidentifiers use respective manufacturer fields.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "manufacturer_name", + "description": "Name of the manufacturer who built/constructed the deflector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-manufacturer-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "manufacturer_name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "manufacturer_model", + "description": "Hardware name, hash identifier, or serial number that was given by the\nmanufacturer to identify the deflector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-manufacturer-model-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "manufacturer_model", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Ideally an identifier, persistent link, or free text which gives further details\nabout the deflector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "voltage", + "description": "Excitation voltage of the deflector. For dipoles it is a single number. For\nhigher orders, it is an array.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "current", + "description": "Excitation current of the deflector. For dipoles it is a single number. For\nhigher orders, it is an array.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "current", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Specifies the position of the deflector by pointing to the last transformation\nin the transformation chain in the NXtransformations group.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/26/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Collection of axis-based translations and rotations to describe the location and\ngeometry of the deflector as a component in the instrument. Conventions from the\nNXtransformations base class are used. In principle, the McStas coordinate\nsystem is used. The first transformation has to point either to another\ncomponent of the system or . (for pointing to the reference frame) to relate it\nrelative to the experimental setup. Typically, the components of a system should\nall be related relative to each other and only one component should relate to\nthe reference coordinate system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdeflector.html#nxdeflector-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 27, + "m_parent_sub_section": "section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Total time of flight", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "tof+1" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "raw_time_of_flight", + "description": "In DAQ clock pulses", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-raw-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "raw_time_of_flight", + "nx_units": "NX_PULSES", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "tof+1" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "frequency", + "variable": false, + "more": { + "nx_name": "frequency", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "detector_number", + "description": "Identifier for detector (pixels)\nCan be multidimensional, if needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-detector-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "detector_number", + "nx_optional": false, + "nx_axis": "2" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j", + "tof" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "data_errors", + "description": "The best estimate of the uncertainty in the data value (array size should match the data field). Where\npossible, this should be the standard deviation, which has the same units\nas the data. The form data_error is deprecated.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-data-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data_errors", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j", + "tof" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_pixel_offset", + "description": "Offset from the detector center in x-direction.\nCan be multidimensional when needed.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-x-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "y_pixel_offset", + "description": "Offset from the detector center in the y-direction.\nCan be multidimensional when different values are required for each pixel.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-y-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_axis": "2", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "2" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "z_pixel_offset", + "description": "Offset from the detector center in the z-direction.\nCan be multidimensional when different values are required for each pixel.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-z-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "z_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "This is the distance to the previous component in the\ninstrument; most often the sample. The usage depends on the\nnature of the detector: Most often it is the distance of the\ndetector assembly. But there are irregular detectors. In this\ncase the distance must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "This is the azimuthal angle angle of the detector towards\nthe previous component in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the azimuthal_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the azimuthal_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "name/manufacturer/model/etc. information", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "serial_number", + "description": "Serial number for the detector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-serial-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "serial_number", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "local_name", + "description": "Local name for the detector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-local-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "local_name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "solid_angle", + "description": "Solid angle subtended by the detector at the sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-solid-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "solid_angle", + "nx_units": "NX_SOLID_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "[angle] * [angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "dead_time", + "description": "Detector dead time", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-dead-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "dead_time", + "nx_units": "NX_TIME", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "gas_pressure", + "description": "Detector gas pressure", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-gas-pressure-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "gas_pressure", + "nx_units": "NX_PRESSURE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "[pressure]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "detection_gas_path", + "description": "maximum drift space dimension", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-detection-gas-path-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "detection_gas_path", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "crate", + "description": "Crate number of detector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-crate-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "crate", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "i", + "j" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "local_name", + "variable": false, + "more": { + "nx_name": "local_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "slot", + "description": "Slot number of detector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-slot-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "slot", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "i", + "j" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "local_name", + "variable": false, + "more": { + "nx_name": "local_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "input", + "description": "Input number of detector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-input-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "input", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "i", + "j" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "local_name", + "variable": false, + "more": { + "nx_name": "local_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Description of type such as He3 gas cylinder, He3 PSD, scintillator,\nfission chamber, proportion counter, ion chamber, ccd, pixel, image plate,\nCMOS, ...", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "real_time", + "description": "Real-time of the exposure (use this if exposure time varies for\neach array element, otherwise use ``count_time`` field).\n \nMost often there is a single real time value that is constant across\nan entire image frame. In such cases, only a 1-D array is needed.\nBut there are detectors in which the real time\nchanges per pixel. In that case, more than one dimension is needed. Therefore\nthe rank of this field should be less than or equal to (detector rank + 1).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-real-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "real_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "start time for each frame, with the ``start`` attribute as absolute reference", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "start_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "start", + "variable": false, + "more": { + "nx_name": "start", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "stop_time", + "description": "stop time for each frame, with the ``start`` attribute as absolute reference", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-stop-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "stop_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "start", + "variable": false, + "more": { + "nx_name": "start", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "calibration_date", + "description": "date of last calibration (geometry and/or efficiency) measurements", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-calibration-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "calibration_date", + "nx_optional": true + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "layout", + "description": "How the detector is represented", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-layout-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "layout", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "point", + "linear", + "area" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "count_time", + "description": "Elapsed actual counting time", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-count-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "count_time", + "nx_units": "NX_TIME", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "sequence_number", + "description": "In order to properly sort the order of the images taken in (for\nexample) a tomography experiment, a sequence number is stored with each\nimage.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-sequence-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "sequence_number", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "beam_center_x", + "description": "This is the x position where the direct beam would hit the detector.\nThis is a length and can be outside of the actual\ndetector. The length can be in physical units or pixels\nas documented by the units attribute.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-beam-center-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_x", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "beam_center_y", + "description": "This is the y position where the direct beam would hit the detector.\nThis is a length and can be outside of the actual\ndetector. The length can be in physical units or pixels\nas documented by the units attribute.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-beam-center-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_y", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "frame_start_number", + "description": "This is the start number of the first frame of a scan. In protein crystallography measurements one\noften scans a couple of frames on a give sample, then does something else,\nthen returns to the same sample and scans some more frames. Each time with\na new data file. This number helps concatenating such measurements.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-frame-start-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "frame_start_number", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "diameter", + "description": "The diameter of a cylindrical detector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-diameter-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "diameter", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "acquisition_mode", + "description": "The acquisition mode of the detector.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-acquisition-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "acquisition_mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "gated", + "triggered", + "summed", + "event", + "histogrammed", + "decimated" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "angular_calibration_applied", + "description": "True when the angular calibration has been applied in the\nelectronics, false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-angular-calibration-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "angular_calibration_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "angular_calibration", + "description": "Angular calibration data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-angular-calibration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "angular_calibration", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "name": "flatfield_applied", + "description": "True when the flat field correction has been applied in the\nelectronics, false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-flatfield-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "flatfield_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "name": "flatfield", + "description": "Flat field correction data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-flatfield-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "flatfield", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 40, + "m_parent_sub_section": "quantities", + "name": "flatfield_errors", + "description": "Errors of the flat field correction data.\nThe form flatfield_error is deprecated.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-flatfield-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "flatfield_errors", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 41, + "m_parent_sub_section": "quantities", + "name": "pixel_mask_applied", + "description": "True when the pixel mask correction has been applied in the\nelectronics, false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-pixel-mask-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "pixel_mask_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 42, + "m_parent_sub_section": "quantities", + "name": "pixel_mask", + "description": "The 32-bit pixel mask for the detector. Can be either one mask\nfor the whole dataset (i.e. an array with indices i, j) or\neach frame can have its own mask (in which case it would be\nan array with indices np, i, j).\n\nContains a bit field for each pixel to signal dead,\nblind or high or otherwise unwanted or undesirable pixels.\nThey have the following meaning:\n\n.. can't make a table here, a bullet list will have to do for now\n\n* bit 0: gap (pixel with no sensor)\n* bit 1: dead\n* bit 2: under responding\n* bit 3: over responding\n* bit 4: noisy\n* bit 5: -undefined-\n* bit 6: pixel is part of a cluster of problematic pixels (bit set in addition to others)\n* bit 7: -undefined-\n* bit 8: user defined mask (e.g. around beamstop)\n* bits 9-30: -undefined-\n* bit 31: virtual pixel (corner pixel with interpolated value)\n\nNormal data analysis software would\nnot take pixels into account\nwhen a bit in (mask & 0x0000FFFF) is\nset. Tag bit in the upper\ntwo bytes would indicate special pixel\nproperties that normally\nwould not be a sole reason to reject the\nintensity value (unless\nlower bits are set.\n\nIf the full bit depths is not required, providing a\nmask with fewer bits is permissible.\n\nIf needed, additional pixel masks can be specified by\nincluding additional entries named pixel_mask_N, where\nN is an integer. For example, a general bad pixel mask\ncould be specified in pixel_mask that indicates noisy\nand dead pixels, and an additional pixel mask from\nexperiment-specific shadowing could be specified in\npixel_mask_2. The cumulative mask is the bitwise OR\nof pixel_mask and any pixel_mask_N entries.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-pixel-mask-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "pixel_mask", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "i", + "j" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 43, + "m_parent_sub_section": "quantities", + "name": "image_key", + "description": "This field allow to distinguish different types of exposure to the same detector \"data\" field.\nSome techniques require frequent (re-)calibration inbetween measuremnts and this way of\nrecording the different measurements preserves the chronological order with is important for\ncorrect processing.\n\nThis is used for example in tomography (`:ref:`NXtomo`) sample projections,\ndark and flat images, a magic number is recorded per frame.\n\nThe key is as follows:\n\n* projection (sample) = 0\n* flat field = 1\n* dark field = 2\n* invalid = 3\n* background (no sample, but buffer where applicable) = 4\n\nIn cases where the data is of type :ref:`NXlog` this can also be an NXlog.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-image-key-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "image_key", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "np" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 44, + "m_parent_sub_section": "quantities", + "name": "countrate_correction_applied", + "description": "Counting detectors usually are not able to measure all incoming particles,\nespecially at higher count-rates. Count-rate correction is applied to\naccount for these errors.\n\nTrue when count-rate correction has been applied, false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-countrate-correction-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "countrate_correction_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 45, + "m_parent_sub_section": "quantities", + "name": "countrate_correction_lookup_table", + "description": "The countrate_correction_lookup_table defines the LUT used for count-rate\ncorrection. It maps a measured count :math:`c` to its corrected value\n:math:`countrate\\_correction\\_lookup\\_table[c]`.\n\n:math:`m` denotes the length of the table.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-countrate-correction-lookup-table-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "countrate_correction_lookup_table", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "m" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 46, + "m_parent_sub_section": "quantities", + "name": "virtual_pixel_interpolation_applied", + "description": "True when virtual pixel interpolation has been applied, false otherwise.\n\nWhen virtual pixel interpolation is applied, values of some pixels may\ncontain interpolated values. For example, to account for space between\nreadout chips on a module, physical pixels on edges and corners between\nchips may have larger sensor areas and counts may be distributed between\ntheir logical pixels.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-virtual-pixel-interpolation-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "virtual_pixel_interpolation_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 47, + "m_parent_sub_section": "quantities", + "name": "bit_depth_readout", + "description": "How many bits the electronics reads per pixel.\nWith CCD's and single photon counting detectors,\nthis must not align with traditional integer sizes.\nThis can be 4, 8, 12, 14, 16, ...", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-bit-depth-readout-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "bit_depth_readout", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 48, + "m_parent_sub_section": "quantities", + "name": "detector_readout_time", + "description": "Time it takes to read the detector (typically milliseconds).\nThis is important to know for time resolved experiments.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-detector-readout-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "detector_readout_time", + "nx_units": "NX_TIME", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 49, + "m_parent_sub_section": "quantities", + "name": "trigger_delay_time", + "description": "Time it takes to start exposure after a trigger signal has been received.\nThis is the reaction time of the detector firmware after receiving the trigger signal\nto when the detector starts to acquire the exposure, including any user set delay..\nThis is important to know for time resolved experiments.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-trigger-delay-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "trigger_delay_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 50, + "m_parent_sub_section": "quantities", + "name": "trigger_delay_time_set", + "description": "User-specified trigger delay.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-trigger-delay-time-set-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "trigger_delay_time_set", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 51, + "m_parent_sub_section": "quantities", + "name": "trigger_internal_delay_time", + "description": "Time it takes to start exposure after a trigger signal has been received.\nThis is the reaction time of the detector hardware after receiving the\ntrigger signal to when the detector starts to acquire the exposure.\nIt forms the lower boundary of the trigger_delay_time when the user\ndoes not request an additional delay.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-trigger-internal-delay-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "trigger_internal_delay_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 52, + "m_parent_sub_section": "quantities", + "name": "trigger_dead_time", + "description": "Time during which no new trigger signal can be accepted.\nTypically this is the\ntrigger_delay_time + exposure_time + readout_time.\nThis is important to know for time resolved experiments.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-trigger-dead-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "trigger_dead_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 53, + "m_parent_sub_section": "quantities", + "name": "frame_time", + "description": "This is time for each frame. This is exposure_time + readout time.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-frame-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "frame_time", + "nx_units": "NX_TIME", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 54, + "m_parent_sub_section": "quantities", + "name": "gain_setting", + "description": "The gain setting of the detector. This is a detector-specific value\nmeant to document the gain setting of the detector during data\ncollection, for detectors with multiple available gain settings.\n\nExamples of gain settings include:\n\n* ``standard``\n* ``fast``\n* ``auto``\n* ``high``\n* ``medium``\n* ``low``\n* ``mixed high to medium``\n* ``mixed medium to low``\n\nDevelopers are encouraged to use one of these terms, or to submit\nadditional terms to add to the list.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-gain-setting-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "gain_setting", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 55, + "m_parent_sub_section": "quantities", + "name": "saturation_value", + "description": "The value at which the detector goes into saturation.\nEspecially common to CCD detectors, the data\nis known to be invalid above this value.\n\nFor example, given a saturation_value and an underload_value, the valid\npixels are those less than or equal to the saturation_value and greater\nthan or equal to the underload_value.\n\nThe precise type should match the type of the data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-saturation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "saturation_value", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 56, + "m_parent_sub_section": "quantities", + "name": "underload_value", + "description": "The lowest value at which pixels for this detector would be reasonably\nmeasured. The data is known to be invalid below this value.\n\nFor example, given a saturation_value and an underload_value, the valid\npixels are those less than or equal to the saturation_value and greater\nthan or equal to the underload_value.\n\nThe precise type should match the type of the data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-underload-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "underload_value", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 57, + "m_parent_sub_section": "quantities", + "name": "number_of_cycles", + "description": "CCD images are sometimes constructed by summing\ntogether multiple short exposures in the\nelectronics. This reduces background etc.\nThis is the number of short exposures used to sum\nimages for an image.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-number-of-cycles-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "number_of_cycles", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 58, + "m_parent_sub_section": "quantities", + "name": "sensor_material", + "description": "At times, radiation is not directly sensed by the detector.\nRather, the detector might sense the output from some\nconverter like a scintillator.\nThis is the name of this converter material.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-sensor-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "sensor_material", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 59, + "m_parent_sub_section": "quantities", + "name": "sensor_thickness", + "description": "At times, radiation is not directly sensed by the detector.\nRather, the detector might sense the output from some\nconverter like a scintillator.\nThis is the thickness of this converter material.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-sensor-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sensor_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 60, + "m_parent_sub_section": "quantities", + "name": "threshold_energy", + "description": "Single photon counter detectors can be adjusted\nfor a certain energy range in which they\nwork optimally. This is the energy setting for this.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-threshold-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "threshold_energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 61, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe reference point of the detector is the center of the first pixel.\nIn complex geometries the NXoff_geometry groups can be used to provide an unambiguous reference.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/27/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "efficiency", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/27/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "calibration_method", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/27/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data_file", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/27/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/27/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR_MODULE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/27/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/27/inner_section_definitions/6", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "Position and orientation of detector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the detector and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "efficiency", + "description": "Spectral efficiency of detector with respect to e.g. wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-efficiency-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "efficiency", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "efficiency" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + ".", + ". .", + ". . .", + ". . . .", + "wavelength" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "wavelength_indices", + "variable": false, + "more": { + "nx_name": "wavelength_indices" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "0" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "efficiency", + "description": "efficiency of the detector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-efficiency-efficiency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "efficiency", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "This field can be two things:\n\n#. For a pixel detector it provides the nominal wavelength\n for which the detector has been calibrated.\n\n#. For other detectors this field has to be seen together with\n the efficiency field above.\n For some detectors, the efficiency is wavelength dependent.\n Thus this field provides the wavelength axis for the efficiency field.\n In this use case, the efficiency and wavelength arrays must\n have the same dimensionality.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-efficiency-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j" + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "calibration_method", + "description": "summary of conversion of array data to pixels (e.g. polynomial\napproximations) and location of details of the calibrations", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-calibration-method-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "calibration_method", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data_file", + "description": "Any additional freeform information not covered by the other base classes.\n\nThis class can be used to store additional information in a \nNeXus file e.g. pictures, movies, audio, additional text logs", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-data-file-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data_file", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollection", + "description": "Use this group to provide other data related to this NXdetector group.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-collection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector_module", + "description": "For use in special cases where the data in NXdetector\nis represented in several parts, each with a separate geometry.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-detector-module-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector_module", + "nx_type": "NXdetector_module", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/29" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector.html#nxdetector-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 28, + "m_parent_sub_section": "section_definitions", + "name": "NXdetector_group", + "description": "Logical grouping of detectors. When used, describes a group of detectors.\n\nEach detector is represented as an NXdetector \nwith its own detector data array. Each detector data array\nmay be further decomposed into array sections by use of\nNXdetector_module groups. Detectors can be grouped logically\ntogether using NXdetector_group. Groups can be further grouped\nhierarchically in a single NXdetector_group (for example, if\nthere are multiple detectors at an endstation or multiple \nendstations at a facility). Alternatively, multiple \nNXdetector_groups can be provided.\n\nThe groups are defined hierarchically, with names given\nin the group_names field, unique identifying indices given\nin the field group_index, and the level in the hierarchy\ngiven in the group_parent field. For example if an x-ray\ndetector group, DET, consists of four detectors in a\nrectangular array::\n \n DTL DTR\n DLL DLR\n \nWe could have::\n \n group_names: [\"DET\", \"DTL\", \"DTR\", \"DLL\", \"DLR\"]\n group_index: [1, 2, 3, 4, 5]\n group_parent: [-1, 1, 1, 1, 1]", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-group.html#nxdetector-group-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector_group", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "group_names", + "description": "An array of the names of the detectors given in NXdetector\ngroups or the names of hierarchical groupings of detectors\ngiven as names of NXdetector_group groups or in\nNXdetector_group group_names and group_parent fields as\nhaving children.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-group.html#nxdetector-group-group-names-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "group_names", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "group_index", + "description": "An array of unique identifiers for detectors or groupings \nof detectors.\n\nEach ID is a unique ID for the corresponding detector or group\nnamed in the field group_names. The IDs are positive integers\nstarting with 1. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-group.html#nxdetector-group-group-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "group_index", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "i" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "group_parent", + "description": "An array of the hierarchical levels of the parents of detectors\nor groupings of detectors.\n\nA top-level grouping has parent level -1.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-group.html#nxdetector-group-group-parent-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "group_parent", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "group_type", + "description": "Code number for group type, e.g. bank=1, tube=2 etc.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-group.html#nxdetector-group-group-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "group_type", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 29, + "m_parent_sub_section": "section_definitions", + "name": "NXdetector_module", + "description": "Geometry and logical description of a detector module. When used, child group to NXdetector.\n\nMany detectors consist of multiple\nsmaller modules. Sometimes it is important to know the exact position of such\nmodules.\nThis is the purpose of this group. It is a child group to NXdetector.\n\nNote, the pixel size is given as values in the array fast_pixel_direction and slow_pixel_direction.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-module.html#nxdetector-module-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector_module", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data_origin", + "description": "A dimension-2 or dimension-3 field which gives the indices\nof the origin of the hyperslab of data for this module in the\nmain area detector image in the parent NXdetector module.\n\nThe data_origin is 0-based.\n\nThe frame number dimension (np) is omitted. Thus the\ndata_origin field for a dimension-2 dataset with indices (np, i, j)\nwill be an array with indices (i, j), and for a dimension-3\ndataset with indices (np, i, j, k) will be an array with indices\n(i, j, k).\n\nThe :ref:`order <Design-ArrayStorageOrder>` of indices (i, j or i, j, k) is slow to fast.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-module.html#nxdetector-module-data-origin-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data_origin", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data_size", + "description": "Two or three values for the size of the module in pixels in\neach direction. Dimensionality and order of indices is the\nsame as for data_origin.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-module.html#nxdetector-module-data-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data_size", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "module_offset", + "description": "Offset of the module in regards to the origin of the detector in an\narbitrary direction.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-module.html#nxdetector-module-module-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "module_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "offset_units", + "variable": false, + "more": { + "nx_name": "offset_units", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "fast_pixel_direction", + "description": "Values along the direction of :ref:`fastest varying <Design-ArrayStorageOrder>` :index:`pixel direction<dimension; fastest varying>`. Each value in this\narray is the size of a pixel in the units specified. Alternatively, if only one\nvalue is given, all pixels in this direction have the same value. The direction\nitself is given through the vector attribute.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-module.html#nxdetector-module-fast-pixel-direction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "fast_pixel_direction", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "offset_units", + "variable": false, + "more": { + "nx_name": "offset_units", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "slow_pixel_direction", + "description": "Values along the direction of :ref:`slowest varying<Design-ArrayStorageOrder>` :index:`pixel direction<dimension; slowest varying>`. Each value in this\narray is the size of a pixel in the units specified. Alternatively, if only one\nvalue is given, all pixels in this direction have the same value. The direction\nitself is given through the vector attribute.\n ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-module.html#nxdetector-module-slow-pixel-direction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "slow_pixel_direction", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "offset_units", + "variable": false, + "more": { + "nx_name": "offset_units", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Points to the start of the dependency chain for this module. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdetector-module.html#nxdetector-module-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 30, + "m_parent_sub_section": "section_definitions", + "name": "NXdirecttof", + "description": "This is a application definition for raw data from a direct geometry TOF spectrometer", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXdirecttof", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXtofraw" + }, + "base_sections": [ + "/packages/18/section_definitions/133" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/30/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/133/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXdirecttof" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/30/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "We definitly want the rotation_speed and energy of the chopper. Thus either \na fermi_chopper or a disk_chopper group is required. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "fermi_chopper", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/30/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "disk_chopper", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/30/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "fermi_chopper", + "description": "A Fermi chopper, possibly with curved slits.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-instrument-fermi-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "fermi_chopper", + "nx_type": "NXfermi_chopper", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/44" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_speed", + "description": "chopper rotation speed", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-instrument-fermi-chopper-rotation-speed-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_speed", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-instrument-fermi-chopper-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "disk_chopper", + "description": "A device blocking the beam in a temporal periodic pattern.\n\nA disk which blocks the beam but has one or more slits to periodically\nlet neutrons through as the disk rotates. Often used in pairs, one\nNXdisk_chopper should be defined for each disk.\n\nThe rotation of the disk is commonly monitored by recording a timestamp for\neach full rotation of disk, by having a sensor in the stationary disk housing\nsensing when it is aligned with a feature (such as a magnet) on the disk.\nWe refer to this below as the \"top-dead-center signal\".\n\nAngles and positive rotation speeds are measured in an anticlockwise\ndirection when facing away from the source.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-instrument-disk-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "disk_chopper", + "nx_type": "NXdisk_chopper", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/31" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_speed", + "description": "chopper rotation speed", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-instrument-disk-chopper-rotation-speed-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_speed", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXdirecttof.html#nxdirecttof-entry-instrument-disk-chopper-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 31, + "m_parent_sub_section": "section_definitions", + "name": "NXdisk_chopper", + "description": "A device blocking the beam in a temporal periodic pattern.\n\nA disk which blocks the beam but has one or more slits to periodically\nlet neutrons through as the disk rotates. Often used in pairs, one\nNXdisk_chopper should be defined for each disk.\n\nThe rotation of the disk is commonly monitored by recording a timestamp for\neach full rotation of disk, by having a sensor in the stationary disk housing\nsensing when it is aligned with a feature (such as a magnet) on the disk.\nWe refer to this below as the \"top-dead-center signal\".\n\nAngles and positive rotation speeds are measured in an anticlockwise\ndirection when facing away from the source.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdisk_chopper", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type of the disk-chopper: only one from the enumerated list (match text exactly)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Chopper type single", + "contra_rotating_pair", + "synchro_pair" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_speed", + "description": "Chopper rotation speed. Positive for anticlockwise rotation when\nfacing away from the source, negative otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-rotation-speed-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_speed", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "slits", + "description": "Number of slits", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-slits-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "slits", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "slit_angle", + "description": "Angular opening", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-slit-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "slit_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "pair_separation", + "description": "Disk spacing in direction of beam", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-pair-separation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pair_separation", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "slit_edges", + "description": "Angle of each edge of every slit from the position of the\ntop-dead-center timestamp sensor, anticlockwise when facing\naway from the source.\nThe first edge must be the opening edge of a slit, thus the last edge\nmay have an angle greater than 360 degrees.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-slit-edges-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "slit_edges", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "2n" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "top_dead_center", + "description": "Timestamps of the top-dead-center signal. The times are relative\nto the \"start\" attribute and in the units specified in the \"units\"\nattribute. Please note that absolute\ntimestamps under unix are relative to ``1970-01-01T00:00:00.0Z``.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-top-dead-center-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "top_dead_center", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "start", + "variable": false, + "more": { + "nx_name": "start", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "beam_position", + "description": "Angular separation of the center of the beam and the\ntop-dead-center timestamp sensor, anticlockwise when facing\naway from the source.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-beam-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_position", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "radius", + "description": "Radius of the disk", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-radius-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "radius", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "slit_height", + "description": "Total slit height", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-slit-height-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "slit_height", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "phase", + "description": "Chopper phase angle", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-phase-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "phase", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "delay", + "description": "Time difference between timing system t0 and chopper driving clock signal", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-delay-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "delay", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "ratio", + "description": "Pulse reduction factor of this chopper in relation to other\nchoppers/fastest pulse in the instrument", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-ratio-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "ratio", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Effective distance to the origin.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "wavelength_range", + "description": "Low and high values of wavelength range transmitted", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-wavelength-range-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength_range", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe reference plane of the disk chopper includes the surface of the spinning disk which faces\nthe source. The reference point in the x and y axis is the point on this surface which is the\ncentre of the axle which the disk is spinning around. The reference plane is orthogonal to\nthe z axis and its position is the reference point on that axis.\n \nNote: This reference point in almost all practical cases is not where the beam passes though.\n \n.. image:: disk_chopper/disk_chopper.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/31/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/31/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/31/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the chopper and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXdisk-chopper.html#nxdisk-chopper-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 32, + "m_parent_sub_section": "section_definitions", + "name": "NXdistortion", + "description": "Subclass of NXprocess to describe post-processing distortion correction.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdistortion", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "last_process", + "description": "Indicates the name of the last operation applied in the NXprocess sequence.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-last-process-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "last_process", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Has the distortion correction been applied?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "symmetry", + "description": "For `symmetry-guided distortion correction`_,\nwhere a pattern of features is mapped to the regular geometric structure\nexpected from the symmetry. Here we record the number of elementary symmetry\noperations.\n\n .. _symmetry-guided distortion correction: https://www.sciencedirect.com/science/article/abs/pii/S0304399118303474?via%3Dihub", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-symmetry-field", + "https://www.sciencedirect.com/science/article/abs/pii/S0304399118303474?via%3Dihub" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "symmetry", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "original_centre", + "description": "For symmetry-guided distortion correction. Here we record the coordinates of the\nsymmetry centre point.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-original-centre-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "original_centre", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "original_points", + "description": "For symmetry-guided distortion correction. Here we record the coordinates of the\nrelevant symmetry points.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-original-points-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "original_points", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsym", + 2 + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "cdeform_field", + "description": "Column deformation field for general non-rigid distortion corrections. 2D matrix\nholding the column information of the mapping of each original coordinate.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-cdeform-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "cdeform_field", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "ndx", + "ndy" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "rdeform_field", + "description": "Row deformation field for general non-rigid distortion corrections. 2D matrix\nholding the row information of the mapping of each original coordinate.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-rdeform-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rdeform_field", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "ndx", + "ndy" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of the procedures employed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXdistortion.html#nxdistortion-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 33, + "m_parent_sub_section": "section_definitions", + "name": "NXebeam_column", + "description": "Container for components to form a controlled electron beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXebeam_column", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "electron_gun", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "LENS_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "CORRECTOR_CS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "STAGE_LAB", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "SENSOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "BEAM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/7", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "electron_gun", + "description": "The source which creates the electron beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "electron_gun", + "nx_type": "NXsource", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "voltage", + "description": "Voltage relevant to compute the energy of the electrons\nimmediately after they left the gun.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "Type of radiation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "electron" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "emitter_type", + "description": "Emitter type used to create the beam.\n\nIf the emitter type is other, give further details\nin the description field.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-emitter-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "emitter_type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "filament", + "schottky", + "cold_cathode_field_emitter", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "emitter_material", + "description": "Material of which the emitter is build, e.g. the filament material.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-emitter-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "emitter_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Ideally, a (globally) unique persistent identifier, link,\nor text to a resource which gives further details.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/1/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/33/inner_section_definitions/1/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Affine transformation which detail the arrangement in the\nmicroscope relative to the optical axis and beam path.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-electron-gun-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/119/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture_em", + "description": "Details of an individual aperture for electron beams.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-aperture-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture_em", + "nx_type": "NXaperture_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/2" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlens_em", + "description": "Description of an electro-magnetic lens or a compound lens.\n\nFor NXtransformations the origin of the coordinate system is placed\nin the center of the lens\n(its polepiece, pinhole, or another point of reference).\nThe origin should be specified in the NXtransformations.\n\nFor details of electro-magnetic lenses in the literature see e.g. `L. Reimer <https://doi.org/10.1007/978-3-540-38967-5>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-lens-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlens_em", + "nx_type": "NXlens_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/70" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcorrector_cs", + "description": "Corrector for aberrations in an electron microscope.\n\nDifferent vendors use a different naming schemes for aberration coefficients.\nIt is the users responsibility to map to the best matching values.\n\nIn transmission electron microscopes the spherical aberration corrector is\na component that is controlled via instructing the microscope to achieve\nset point values. The corrector is composed of multiple lenses and other\nparts with vendor-specific details which are often undisclosed.\n\nIn the case of Nion Co. microscopes the coefficients of the corrector can be\nretrieved via NionSwift, which is why currently the Nion convention for the\naberration coefficients is used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-corrector-cs-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcorrector_cs", + "nx_type": "NXcorrector_cs", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/20" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXstage_lab", + "description": "A stage lab can be used to hold, align, orient, and prepare a specimen.\n\nModern stages are multi-functional devices. Many of which offer a controlled\nenvironment around (a part) of the specimen. Stages enable experimentalists\nto apply stimuli. A stage_lab is a multi-purpose/-functional tools which\ncan have multiple actuators, sensors, and other components.\n\nWith such stages comes the need for storing various (meta)data \nthat are generated while manipulating the sample.\n\nModern stages realize a hierarchy of components: For example the specimen\nmight be mounted on a multi-axial tilt rotation holder. This holder is \nfixed in the support unit which connects the holder to the rest of the\nmicroscope.\n\nIn other examples, taken from atom probe microscopy, researchers may work\nwith wire samples which are clipped into a larger fixing unit for\nconvenience and enable for a more careful specimen handling.\nThis fixture unit is known in atom probe jargon as a stub.\nStubs in turn are positioned onto pucks.\nPucks are then loaded onto carousels.\nA carousel is a carrier unit with which eventually entire sets of specimens\ncan be moved in between parts of the microscope.\n\nAn NXstage_lab instance reflects this hierarchical design. The stage is the \nroot of the hierarchy. A stage carries the holder.\nIn the case that it is not practical to distinguish these two layers,\nthe holder should be given preference.\n\nSome examples for stage_labs in applications:\n\n* A nanoparticle on a copper grid. The copper grid is the holder. \n The grid itself is fixed to the stage. \n* An atom probe specimen fixed in a stub. In this case the stub can be \n considered the holder, while the cryostat temperature control unit is \n a component of the stage. \n* Samples with arrays of specimens, like a microtip on a microtip array \n is an example of a three-layer hierarchy commonly employed for \n efficient sequential processing of atom probe experiments. \n* With one entry of an application definition only one microtip should be \n described. Therefore, the microtip is the specimen, \n the array is the holder and the remaining mounting unit \n that is attached to the cryo-controller is the stage. \n* For in-situ experiments with e.g. chips with read-out electronics \n as actuators, the chips are again placed in a larger unit. \n* Other examples are (quasi) in-situ experiments where experimentalists \n anneal or deform the specimen via e.g. in-situ tensile testing machines \n which are mounted on the specimen holder. \n\nTo cover for an as flexible design of complex stages, users should nest\nmultiple instances of NXstage_lab objects according to their needs to reflect\nthe differences between what they consider as the holder and what \nthey consider is the stage.\n\nInstances should be named with integers starting from 1 as the top level unit.\nIn the microtip example stage_lab_1 for the stage, stage_lab_2 for the holder\n(microtip array), stage_lab_3 for the microtip specimen, respectively. \nThe depends_on keyword should be used with relative or absolute naming inside\nthe file to specify how different stage_lab instances build a hierarchy\nif this is not obvious from numbered identifiers like the stage_lab_1 to \nstage_lab 3 example. The lower it is the number the higher it is the\nrank in the hierarchy.\n\nFor specific details and inspiration about stages in electron microscopes:\n\n* `Holders with multiple axes <https://www.nanotechnik.com/e5as.html>`_ \n* `Chip-based designs <https://www.protochips.com/products/fusion/fusion-select-components/>`_ \n* `Further chip-based designs <https://www.nanoprobetech.com/about>`_\n* `Stages in transmission electron microscopy <https://doi.org/10.1007/978-3-662-14824-2>`_ (page 103, table 4.2) \n* `Further stages in transmission electron microscopy <https://doi.org/10.1007/978-1-4757-2519-3>`_ (page 124ff)\n* `Specimens in atom probe <https://doi.org/10.1007/978-1-4614-8721-0>`_ (page 47ff)\n* `Exemplar micro-manipulators <https://nano.oxinst.com/products/omniprobe/omniprobe-200>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-stage-lab-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXstage_lab", + "nx_type": "NXstage_lab", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/128" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsensor", + "description": "A sensor used to monitor an external or internal condition.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-sensor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsensor", + "nx_type": "NXsensor", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/111" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXbeam", + "description": "Individual ocharacterization results for the position, shape,\nand characteristics of the electron beam.\n\nNXtransformations should be used to specify the location\nof the position at which the beam was probed. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXebeam-column.html#nxebeam-column-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam", + "nx_type": "NXbeam", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/7" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 34, + "m_parent_sub_section": "section_definitions", + "name": "NXelectronanalyser", + "description": "Subclass of NXinstrument to describe a photoelectron analyser.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXelectronanalyser", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Free text description of the type of the detector ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name or model of the equipment", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energy_resolution", + "description": "Energy resolution of the electron analyser (FWHM of gaussian broadening)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-energy-resolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy_resolution", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "momentum_resolution", + "description": "Momentum resolution of the electron analyser (FWHM)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-momentum-resolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "momentum_resolution", + "nx_units": "NX_WAVENUMBER", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "angular_resolution", + "description": "Angular resolution of the electron analyser (FWHM)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-angular-resolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "angular_resolution", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "spatial_resolution", + "description": "Spatial resolution of the electron analyser (Airy disk radius)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-spatial-resolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "spatial_resolution", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "fast_axes", + "description": "List of the axes that are acquired simultaneously by the detector.\nThese refer only to the experimental variables recorded by the electron analyser.\nOther variables such as temperature, manipulator angles etc. are labeled as fast or slow in the data.\n\n.. csv-table:: Examples\n :header: \"Mode\", \"fast_axes\", \"slow_axes\"\n\n Hemispherical in ARPES mode, \"['energy', 'kx']\",\"\"\n \"Hemispherical with channeltron, sweeping energy mode\", \"\", [\\\"energy\\\"]\n \"Tof\", \"['energy', 'kx', 'ky']\",\"\"\n \"Momentum microscope, spin-resolved\", \"['energy', 'kx', 'ky']\", \"['spin up-down', 'spin left-right']\"\n\nAxes may be less abstract than this, i.e. ['detector_x', 'detector_y'].\nIf energy_scan_mode=sweep, fast_axes: ['energy', 'kx']; slow_axes: ['energy'] is allowed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-fast-axes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "fast_axes", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "nfa" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "slow_axes", + "description": "List of the axes that are acquired by scanning a physical parameter, listed in\norder of decreasing speed. See fast_axes for examples.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-slow-axes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "slow_axes", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "nsa" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Refers to the last transformation specifying the positon of the manipulator in\nthe NXtransformations chain.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/34/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTIONCOLUMN", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/34/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "ENERGYDISPERSION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/34/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "SPINDISPERSION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/34/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/34/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "DEFLECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/34/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "LENS_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/34/inner_section_definitions/6", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Collection of axis-based translations and rotations to describe the location and\ngeometry of the manipulator as a component in the instrument. Conventions from\nthe NXtransformations base class are used. In principle, the McStas coordinate\nsystem is used. The first transformation has to point either to another\ncomponent of the system or . (for pointing to the reference frame) to relate it\nrelative to the experimental setup. Typically, the components of a system should\nall be related relative to each other and only one component should relate to\nthe reference coordinate system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollectioncolumn", + "description": "Describes the electron collection (spatial and momentum imaging) column", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-collectioncolumn-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollectioncolumn", + "nx_type": "NXcollectioncolumn", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/16" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXenergydispersion", + "description": "Describes the energy dispersion section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-energydispersion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXenergydispersion", + "nx_type": "NXenergydispersion", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/38" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspindispersion", + "description": "Describes the spin dispersion section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-spindispersion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspindispersion", + "nx_type": "NXspindispersion", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/126" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "Describes the electron detector", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdeflector", + "description": "Deflectors outside the main optics ensambles described by the subclasses", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdeflector", + "nx_type": "NXdeflector", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/26" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlens_em", + "description": "Individual lenses outside the main optics ensambles described by the subclasses", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectronanalyser.html#nxelectronanalyser-lens-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlens_em", + "nx_type": "NXlens_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/70" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 35, + "m_parent_sub_section": "section_definitions", + "name": "NXelectrostatic_kicker", + "description": "definition for a electrostatic kicker.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXelectrostatic_kicker", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "extended description of the kicker.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "beamline_distance", + "description": "define position of beamline element relative to production target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-beamline-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beamline_distance", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "timing", + "description": "kicker timing as defined by ``description`` attribute", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-timing-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "timing", + "nx_units": "NX_TIME", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "set_current", + "description": "current set on supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-set-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_current", + "nx_units": "NX_CURRENT", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "set_voltage", + "description": "volage set on supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-set-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_voltage", + "nx_units": "NX_VOLTAGE", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "read_current", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/35/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "read_voltage", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/35/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_current", + "description": "current read from supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-read-current-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_current", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-read-current-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_voltage", + "description": "voltage read from supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-read-voltage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_voltage", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXelectrostatic-kicker.html#nxelectrostatic-kicker-read-voltage-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 36, + "m_parent_sub_section": "section_definitions", + "name": "NXellipsometry", + "description": "Ellipsometry, complex systems, up to variable angle spectroscopy.\n\nInformation on ellipsometry is provided, e.g. in:\n\n* H. Fujiwara, Spectroscopic ellipsometry: principles and applications,\n John Wiley & Sons, 2007.\n* R. M. A. Azzam and N. M. Bashara, Ellipsometry and Polarized Light,\n North-Holland Publishing Company, 1977.\n* H. G. Tompkins and E. A. Irene, Handbook of Ellipsometry,\n William Andrew, 2005.\n\nOpen access sources:\n\n* https://www.angstromadvanced.com/resource.asp\n* https://pypolar.readthedocs.io/en/latest/\n\nReview articles:\n\n* T. E. Jenkins, \"Multiple-angle-of-incidence ellipsometry\",\n J. Phys. D: Appl. Phys. 32, R45 (1999),\n https://doi.org/10.1088/0022-3727/32/9/201\n* D. E. Aspnes, \"Spectroscopic ellipsometry - Past, present, and future\",\n Thin Solid Films 571, 334-344 (2014),\n https://doi.org/10.1016/j.tsf.2014.03.056\n* R. M. A. Azzam, \"Mueller-matrix ellipsometry: a review\",\n Proc. SPIE 3121, Polarization: Measurement, Analysis, and Remote Sensing,\n (3 October 1997),\n https://doi.org/10.1117/12.283870\n* E. A. Irene, \"Applications of spectroscopic ellipsometry to microelectronics\",\n Thin Solid Films 233, 96-111 (1993),\n https://doi.org/10.1016/0040-6090(93)90069-2\n* S. Zollner et al., \"Spectroscopic ellipsometry from 10 to 700 K\",\n Adv. Opt. Techn., (2022),\n https://doi.org/10.1515/aot-2022-0016", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-group", + "https://www.angstromadvanced.com/resource.asp", + "https://pypolar.readthedocs.io/en/latest/", + "https://doi.org/10.1088/0022-3727/32/9/201", + "https://doi.org/10.1016/j.tsf.2014.03.056", + "https://doi.org/10.1117/12.283870", + "https://doi.org/10.1016/0040-6090(93)90069-2", + "https://doi.org/10.1515/aot-2022-0016" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXellipsometry", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "This is the application definition describing ellipsometry experiments.\n\nSuch experiments may be as simple as identifying how a reflected\nbeam of light with a single wavelength changes its polarization state,\nto a variable angle spectroscopic ellipsometry experiment.\n\nThe application definition defines:\n\n* elements of the experimental instrument\n* calibration information if available\n* parameters used to tune the state of the sample\n* sample description", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "An application definition for ellipsometry.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXellipsometry" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "url", + "variable": false, + "more": { + "nx_name": "url", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "experiment_identifier", + "description": "Unique identifier of the experiment, such as a (globally persistent) unique\nidentifier.\ni) The identifier is usually defined by the facility or principle investigator.\nii) The identifier enables to link experiments to e.g. proposals.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-experiment-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "experiment_description", + "description": "A free-text description of the experiment. What is the aim of the experiment?\nThe general procedure.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-experiment-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_description", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Start time of the experiment. UTC offset should be specified.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "acquisition_program", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "operator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "derived_parameters", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "plot", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/5", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "acquisition_program", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-acquisition-program-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "acquisition_program", + "nx_type": "NXprocess", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "url", + "variable": false, + "more": { + "nx_name": "url" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Commercial or otherwise defined given name to the program that was used to\ngenerate the result file(s) with measured data and metadata. This program\nconverts the measured signals to ellipsometry data. If home written, one can\nprovide the actual steps in the NOTE subfield here.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-acquisition-program-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "version", + "description": "Either version with build number, commit hash, or description of a (online)\nrepository where the source code of the program and build instructions can be\nfound so that the program can be configured in such a way that result files can\nbe created ideally in a deterministic manner.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-acquisition-program-version-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "version", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "operator", + "description": "Contact information of at least the user of the instrument or the investigator\nwho performed this experiment. Adding multiple users if relevant is recommended.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-operator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "operator", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of the user.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-operator-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "affiliation", + "description": "Name of the affiliation of the user at the point in time when the experiment was\nperformed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-operator-affiliation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "affiliation", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "address", + "description": "Full address (street, street number, ZIP, city, country) of the user's\naffiliation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-operator-address-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "address", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "email", + "description": "Email address of the user.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-operator-email-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "email", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "orcid", + "description": "Author ID defined by https://orcid.org/.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-operator-orcid-field", + "https://orcid.org/" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "orcid", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "telephone_number", + "description": "Official telephone number of the user.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-operator-telephone-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "telephone_number", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "General properties of the ellipsometry equipment", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "model", + "description": "The name of the instrument", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-model-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "model", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "company", + "description": "Name of the company which build the instrument", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-company-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "company", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "construction_year", + "description": "ISO8601 date when the instrument was constructed. UTC offset should be\nspecified.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-construction-year-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "construction_year", + "nx_optional": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "firmware", + "description": "Commercial or otherwise defined name of the software that was used for the\nmeasurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-firmware-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "firmware", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "url", + "variable": false, + "more": { + "nx_name": "url", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "focussing_probes", + "description": "Were focussing probes (lenses) used?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-focussing-probes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "focussing_probes", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "data_correction", + "description": "Were the recorded data corrected by the window effects of the lenses?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-data-correction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "data_correction", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "angular_spread", + "description": "Specify the angular spread caused by the focussing probes", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-angular-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "angular_spread", + "nx_optional": "true", + "nx_units": "NX_ANGLE" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "ellipsometry_type", + "description": "What type of ellipsometry was used? See Fujiwara Table 4.2", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-ellipsometry-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "ellipsometry_type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "rotating analyzer", + "rotating analyzer with analyzer compensator", + "rotating analyzer with polarizer compensator", + "rotating polarizer", + "rotating compensator on polarizer side", + "rotating compensator on analyzer side", + "modulator on polarizer side", + "modulator on analyzer side", + "dual compensator", + "phase modulation", + "imaging ellipsometry", + "null ellipsometry" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "calibration_status", + "description": "Was a calibration performed? If yes, when was it done? If the calibration time\nis provided, it should be specified in calibration/calibration_time.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-status-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "calibration_status", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "calibration time provided", + "no calibration", + "within 1 hour", + "within 1 day", + "within 1 week" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "angle_of_incidence", + "description": "Incident angle of the beam vs. the normal of the bottom reflective (substrate)\nsurface in the sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-angle-of-incidence-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "angle_of_incidence", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_angles" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "light_source", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "calibration", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "stage", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "window", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "spectrometer", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/5", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "light_source", + "description": "Specify the used light source. Multiple selection possible.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-light-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "light_source", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "calibration", + "description": "Ellipsometers require regular calibration to adjust the hardware parameters for\nproper zero values and background light compensation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "calibration", + "nx_type": "NXsubentry", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/130" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "calibration_time", + "description": "If calibtration status is 'calibration time provided', specify the ISO8601 date\nwhen calibration was last performed before this measurement. UTC offset should\nbe specified.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-calibration-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "calibration_time", + "nx_optional": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "calibration_sample", + "description": "Free-text to describe which sample was used for calibration, e.g. silicon wafer\nwith 25 nm thermal oxide layer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-calibration-sample-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "calibration_sample", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "calibration_data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "calibration_data", + "description": "Arrays which provide the measured calibration data. Multiple sets are possible,\ne.g. Psi and delta measured on a e.g. silicon calibration wafer, and the\nstraight-through data. We recommend to provide data that is measured under the\nsame settings as the measurement was performed, that is if Psi and Delta are\nmeasured for your data, also provide Psi and Delta here and use the same\nwavelenghts as for the measured data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-calibration-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "calibration_data", + "nx_type": "NXsubentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/130" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "calibration_data_type", + "description": "What data were recorded for the calibration? The number of variables\n(N_variables) have to be set to the number of provided data columns accordingly,\ne.g. psi/delta -> N_variables = 2, Jones vector -> N_variables = 4, Mueller\nmartix -> N_variables = 16, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-calibration-data-calibration-data-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "calibration_data_type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "psi/delta", + "tan(psi)/cos(delta)", + "Jones matrix", + "Mueller matrix", + "not provided" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "calibration_angle_of_incidence", + "description": "Angle(s) of incidence used during the calibration measurement (excluding\nstraight through mode)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-calibration-data-calibration-angle-of-incidence-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "calibration_angle_of_incidence", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_calibration_angles" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "calibration_wavelength", + "description": "The wavelength or equivalent values (which are inter-convertible).\nThe importer should convert all to one unit, and make the others\naccessible. Historically, energy is used in eV, but for visible\nspectroscopy wavelength is more common, for IR wave numbers in\n1/cm units.\n\nPossibly use the same type of data as for the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-calibration-data-calibration-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "calibration_wavelength", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_calibration_wavelength" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "calibration_data", + "description": "Calibration is performed on a reference surface (usually a silicon wafer with a\nwell defined oxide layer) at a number of angles of incidence and in a straight\nthrough mode (transmission in air).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-calibration-calibration-data-calibration-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "calibration_data", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_calibration_angles+1", + "N_variables", + "N_calibration_wavelength" + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "stage", + "description": "Sample stage, holding the sample at a specific position in X,Y,Z (Cartesian)\ncoordinate system and at an orientation defined by three Euler angles (alpha,\nbeta, gamma). The stage may be motorized or manual, special for liquids or gas\nenvironment.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-stage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "stage", + "nx_type": "NXsubentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/130" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "stage_type", + "description": "Specify what type of stage was used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-stage-stage-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "stage_type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "manual stage", + "scanning stage", + "liquid stage", + "gas cell", + "cryostat" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "A free-text field to provide information about the stage.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-stage-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/2/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "The stage coordinate system vs. the incident beam. The Z-axis of the stage is considered to point along the normal of the substrate (bottom reflecting surface) from the stage towards the general direction of the light source. The beam comes with the angle of incidence towards this Z-axis, but in opposite direction, thus they are connected with a rotation of 180 - angle of incidence (in degrees).\nThis transformation brings us from the NEXUS coordinates to the stage coordinates.\nThen provide the set of translations (if there are any). These all have a vector defining their relative direction in the current coordinate system. (This current coordinate system changes with every transformation if you set the parameter 'depends' to the name of the previous step.)\nLast, provide the rotations of the sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-stage-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "alternative", + "description": "If there is no motorized stage, we should at least qualify where the beam hits\nthe sample and in what direction the sample stands in a free-text description,\ne.g. 'center of sample, long edge parallel to plane of incidence'.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-stage-transformations-alternative-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "alternative", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "window", + "description": "For environmental measurements, the environment (liquid, vapor, vacuum etc.) is\nenclosed in a cell or cryostat, which has windows both in the direction of the\nsource and the detector (looking from the sample). These windows also add a\nphase shift to the light altering the measured signal. This shift has to be\ncorrected based on measuring a known sample in the environmental cell.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "window", + "nx_type": "NXaperture", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "material", + "description": "The material of the window", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "material", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "quartz", + "diamond", + "calcium fluoride", + "zinc selenide", + "thallium bromoiodide", + "alkali halide compound", + "Mylar", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "other_material", + "description": "If you specified 'other' as window material, decsribe here what it is.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-other-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "other_material", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "thickness", + "description": "Thickness of the window", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "thickness", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "orientation_angle", + "description": "Angle of the window normal (outer) vs. the substrate normal (similar to the\nangle of incidence).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-orientation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "orientation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "reference_data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/3/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "reference_data", + "description": "Recorded data that can be used to calculate the window effect. Typically this is\nthe substrate (e.g. silicon with thermal oxide layer) in air without window and\nin a known medium with the window.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-reference-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reference_data", + "nx_type": "NXsubentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/130" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "reference_sample", + "description": "What sample was used to estimate the window effect?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-reference-data-reference-sample-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "reference_sample", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "reference_wavelength", + "description": "Wavelength of the reference data. Use the same wavelengths at which all other\nmeasurements are recorded", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-reference-data-reference-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "reference_wavelength", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_wavelength" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Recorded data of a reference surface with and without window/medium.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-window-reference-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_recommended": "true", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2, + "N_angles", + "N_variables", + "N_wavelength" + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "Which type of detector was used, and what is known about it? A detector can be a\nphotomultiplier (PMT), a CCD in a camera, or an array in a spectrometer. If so,\nthe whole detector unit goes in here. Integration time is the count time field,\nor the real time field. See their definition.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "detector_type", + "description": "What kind of detector module is used, e.g. CCD-spectrometer, CCD camera, PMT,\nphotodiode, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-detector-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "detector_type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "PMT", + "photodiode", + "avalanche diode", + "CCD camera", + "CCD spectrometer", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "other_detector", + "description": "If you specified 'other' as detector type, please write down what it is.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-other-detector-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "other_detector", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "revolution", + "description": "Define how many rotations of the rotating element were taken into account per\nspectrum.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-revolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "revolution", + "nx_optional": "true", + "nx_units": "NX_ANY" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "rotating_element", + "description": "Define which element rotates, e.g. polarizer or analyzer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-rotating-element-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "rotating_element", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "polarizer (source side)", + "analyzer (detector side)", + "compensator (source side)", + "compensator (detector side)" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "fixed_revolution", + "description": "Rotation rate, if the revolution does not change during the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-fixed-revolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "fixed_revolution", + "nx_optional": "true", + "nx_units": "NX_FREQUENCY" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "variable_revolution", + "description": "Specify maximum and minimum values for the revolution.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-variable-revolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "variable_revolution", + "nx_optional": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "intensity_threshold", + "description": "Minimum signal for which dynamic averaging is performed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-intensity-threshold-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "intensity_threshold", + "nx_optional": "true", + "nx_units": "NX_UNITLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "min_intensity", + "description": "Value for the minimum intensity chosen. Data points below this value might be\nskipped by the instrument", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-detector-min-intensity-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "min_intensity", + "nx_optional": "true", + "nx_units": "NX_UNITLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "spectrometer", + "description": "The spectroscope element of the ellipsometer before the detector, but often\nintegrated to form one closed unit. Information on the dispersive element can be\nspecified in the subfield GRATING. Note that different gratings might be used\nfor different wavelength ranges. The dispersion of the grating for each\nwavelength range can be stored in grating_dispersion.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "spectrometer", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "Wavelength value(s) used for the measurement. An array of 1 or more elements.\nLength defines N_wavelength", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_wavelength" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "spectral_resolution", + "description": "Spectral resolution of the instrument.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-spectral-resolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "spectral_resolution", + "nx_optional": "true", + "nx_units": "NX_WAVENUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GRATING", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/5/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SLIT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/5/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgrating", + "description": "Diffraction grating, as could be used in a monochromator. If two or more\ngratings were used, define the angular dispersion and the wavelength range\n(min/max wavelength) for each grating and make sure that the wavelength ranges\ndo not overlap. The dispersion should be defined for the entire wavelength range\nof the experiment.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-grating-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgrating", + "nx_type": "NXgrating", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "angular_dispersion", + "description": "Dispersion of the grating in nm/mm used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-grating-angular-dispersion-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "angular_dispersion", + "nx_optional": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "grating_wavelength_min", + "description": "Minimum wavelength of the grating.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-grating-grating-wavelength-min-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "grating_wavelength_min", + "nx_optional": "true", + "nx_units": "NX_LENGTH" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "grating_wavelength_max", + "description": "Maximum wavelength of the grating.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-grating-grating-wavelength-max-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "grating_wavelength_max", + "nx_optional": "true", + "nx_units": "NX_LENGTH" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXslit", + "description": "Define the width of the monochromator slit in the subfield x_gap.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-slit-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXslit", + "nx_type": "NXslit", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/114" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "fixed_slit", + "description": "Was the slit width fixed?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-slit-fixed-slit-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "fixed_slit", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "max_gap", + "description": "If slit width was not fixed, define the maximum slit width.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-instrument-spectrometer-slit-max-gap-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "max_gap", + "nx_optional": "true", + "nx_units": "NX_LENGTH" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Properties of the sample, its history, the sample environment and experimental\nconditions (e.g. surrounding medium, temperature, pressure etc.), along with the\ndata (data type, wavelength array, measured data).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "atom_types", + "description": "Use Hill's system for listing elements of the periodic table which are inside or\nattached to the surface of the specimen and thus relevant from a scientific\npoint. The purpose of this field is to allow material databases to parse the\nrelevant elements without having to interpret the sample history or other\nfields.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-atom-types-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "atom_types", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "sample_name", + "description": "Descriptive name of the sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "sample_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "sample_history", + "description": "Ideally, a reference to the location or a unique (globally persistent)\nidentifier (e.g.) of e.g. another file which gives as many as possible details\nof the material, its microstructure, and its thermo-chemo-mechanical\nprocessing/preparation history. In the case that such a detailed history of the\nsample is not available, use this field as a free-text description to specify\ndetails of the sample and its preparation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-sample-history-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "sample_history", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "preparation_date", + "description": "ISO8601 date with time zone (UTC offset) specified.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-preparation-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "preparation_date", + "nx_optional": false, + "nx_units": "NX_TIME", + "nx_recommended": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "layer_structure", + "description": "Qualitative description of the layer structure for the sample. For example:\nSi/native oxide/thermal oxide/polymer/peptide", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-layer-structure-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "layer_structure", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "data_identifier", + "description": "An identifier to correlate data to the experimental conditions, if several were\nused in this measurement; typically an index of 0 - N", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-data-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "data_type", + "description": "Select which type of data was recorded, for example Psi and Delta (see:\nhttps://en.wikipedia.org/wiki/Ellipsometry#Data_acquisition). It is possible to\nhave multiple selections. Data types may also be converted to each other, e.g. a\nMueller matrix contains N,C,S data as well. This selection defines how many\ncolumns (N_variables) are stored in the data array.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-data-type-field", + "https://en.wikipedia.org/wiki/Ellipsometry#Data_acquisition" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "data_type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "psi/delta", + "tan(psi)/cos(delta)", + "Mueller matrix", + "Jones matrix", + "N/C/S", + "raw data" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "column_names", + "description": "Please list in this array the column names used in your actual data. That is\n['psi', 'delta'] or ['MM1', 'MM2', 'MM3', ..., 'MM16] for a full Mueller matrix,\netc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-column-names-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "column_names", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "N_variables" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "measured_data", + "description": "Resulting data from the measurement, described by data type. Minimum two columns\ncontaining Psi and Delta, or for the normalized Mueller matrix it may be 16 (or\n15 if the element (1,1) is all 1).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-measured-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "measured_data", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_time", + "N_p1", + "N_angles", + "N_variables", + "N_wavelength" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "data_error", + "description": "Specified uncertainties (errors) of the data described by data type. The\nstructure is the same as for the measured data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-data-error-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data_error", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_time", + "N_p1", + "N_angles", + "N_variables", + "N_wavelength" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "time_points", + "description": "An array of relative time points if a time series was recorded.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-time-points-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "time_points", + "nx_optional": "true", + "nx_units": "NX_TIME" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_time" + ], + "dimensionality": "[time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "environment_conditions", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "environment_conditions", + "description": "Specify external parameters that have influenced the sample.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "environment_conditions", + "nx_type": "NXenvironment", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/40" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "medium", + "description": "Describe what was the medium above or around the sample. The common model is\nbuilt up from the substrate to the medium on the other side. Both boundaries are\nassumed infinite in the model. Here, define the name of the medium (e.g. water,\nair, UHV, etc.).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-medium-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "medium", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "medium_refractive_indices", + "description": "Array of pairs of complex refractive indices of the medium for every measured\nwavelength. Only necessary if the measurement was performed not in air, or\nsomething very well known, e.g. high purity water. Specify the complex\nrefractive index: n + ik", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-medium-refractive-indices-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "medium_refractive_indices", + "nx_optional": "true", + "nx_units": "NX_UNITLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "N_wavelength" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "number_of_runs", + "description": "How many measurements were done varying the parameters? This forms an extra\ndimension beyond incident angle, time points and energy/wavelength (this is the\nlength of the 4th dimension of the data). Defaults to 1.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-number-of-runs-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "number_of_runs", + "nx_optional": "true", + "nx_units": "NX_DIMENSIONLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "varied_parameters", + "description": "Indicates which parameter was changed. Its definition must exist below. The\nspecified variable has to be number_of_runs long, providing the parameters for\neach data set. If you vary more than one parameter simultaneously use one signal\ninstance for each. Record every parameter value in a linear manner, so N_p1 is\nthe number of measurements taken. For example, if you measure at two\ntemperatures and three pressures the temperature signal value looks like [T1,\nT1, T1, T2, T2, T2] and the pressure signal value looks like [p1, p2, p3, p1,\np2, p3], and N_p1 = 6.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-varied-parameters-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "varied_parameters", + "nx_optional": "true" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "optical excitation", + "voltage", + "temperature", + "pH", + "stress", + "stage positions" + ] + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "optical_excitation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SENSOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/36/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "optical_excitation", + "description": "Was the sample modified using an optical source? Describe in this group the\nparameters of the optical excitation used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-optical-excitation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "optical_excitation", + "nx_type": "NXsource", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "Wavelength value(s) or the range used for excitation. In cases of continuous\nlaser radiation, a value or a set of values may do but for other illumination\ntypes, such as pulsed lasers, or lamps, a range may describe the source better.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-optical-excitation-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "wavelength", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "broadening", + "description": "Specify the FWHM of the excitation", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-optical-excitation-broadening-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "broadening", + "nx_optional": "true", + "nx_units": "NX_LENGTH" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "How long was the sample excited.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-optical-excitation-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "duration", + "nx_optional": "true", + "nx_units": "NX_TIME" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "pulse_energy", + "description": "The integrated energy of light pulse.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-optical-excitation-pulse-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pulse_energy", + "nx_optional": "true", + "nx_units": "NX_ENERGY" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsensor", + "description": "A sensor used to monitor an external condition. The value field contains the\nmeasured values. If it is constant within an error for every run then use only\nan array of length one.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-sample-environment-conditions-sensor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsensor", + "nx_type": "NXsensor", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/40/inner_section_definitions/3" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "derived_parameters", + "description": "What parameters are derived from the above data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-derived-parameters-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "derived_parameters", + "nx_type": "NXprocess", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "depolarization", + "description": "Light loss due to depolarization as a value in [0-1].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-derived-parameters-depolarization-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "depolarization", + "nx_optional": "true", + "nx_units": "NX_UNITLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "plot", + "description": "A default view of the data, in this case Psi vs. wavelength and the angles of\nincidence. If Psi does not exist, use other Mueller matrix elements, such as N,\nC and S.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXellipsometry.html#nxellipsometry-entry-plot-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "plot", + "nx_type": "NXdata", + "nx_optional": "true", + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 37, + "m_parent_sub_section": "section_definitions", + "name": "NXem", + "description": "Characterization and session with one sample in an electron microscope.\n\n**The idea and aim of NXem**:\nElectron microscopes (EM), whether it be a scanning electron microscope (SEM)\nor a transmission electron microscope (TEM), are versatile tools for preparing\nand characterizing samples and specimens. The term specimen is here understood\nas a synonym for a sample. A specimen is a physical portion of material that\nis studied/characterize in the microscope session, eventually in different\nplaces on the specimen surface.\nThese places are named regions of interest (ROIs).\n\nFundamentally, an EM is an electron accelerator. Experimentalists use an EM\nin sessions during which they characterize as well as prepare specimens.\nThis application definition describes data and metadata about processes and\ncharacterization tasks applied to one specimen.\n\nMultiple specimens have to be described with multiple NXentry instances.\n\nThere are research groups who use an EM in a manner where it is exclusively\noperated by a single, instrument-responsible scientists or a team of \n(staff) scientists. These users perform analyses for other users as a service\ntask. Oftentimes, though, and especially for cutting-edge instruments,\nthe scientists and their team guide the process while operating the\nmicroscope. Oftentimes the scientists operate the instrument themselves\neither on-site or remotely and can ask technicians for support.\nIn all cases, these people are considered users. Users might have different\nroles though.\n\nThe rational behind a common EM schema rather than separate SEM or TEM \nschemata are primarily the key similarities of SEM and TEM instruments:\nBoth have electro-magnetic lenses. These lens may differ in design, alignment,\nnumber, and level of corrected-for aberrations. As an obvious difference,\na TEM is used mainly to measure the transmitted electron beam.\nThis demands thinner specimens as in SEM but offers capabilities for probing \nof additional physical mechanisms of electron-matter interaction.\n\nCompared to SEMs, TEMs have a different relative arrangement between the\nlenses and the specimen which is most obvious by the different relative\narrangement of the objective lens versus the specimen.\n\nNevertheless, both types of electron microscopes use detector systems which\nmeasure different types of signals that originate though from the same set of\nradiation/specimen interactions. Consequently, detectors can also be similar.\n\nGiven these physical and technical differences, different instruments have\nbeen developed. This led to a coexistence of two broad interacting\ncommunities: SEM and TEM users. From a data science perspective, we\nacknowledge that the more specific a research question is and the narrower\nthe addressed user base is which develops or uses schemata for\nresearch data management with EM, the more understandable it is\nthat scientists of either community (or sub-community) ask for\nmethod-specific schemata.\n\nResearchers who have a single (main) microscope of some vendor in their lab,\nmay argue they need an NXem_vendor_name schema or an NXem_microscope_name or\nan NXem_sem or a NXem_tem schema.\nScientists exclusively working with one technique or type of signal probed\n(X-rays, electrons) may argue they wish to be pragmatic and store only\nwhat is immediately relevant for their particular technique and\nresearch questions. In effect, they may advocate for method-specific\nschemata such as NXem_ebsd, NXem_eels, NXem_edx, or NXem_imaging.\n\nThe development in the past has shown that these activities led to a zoo of\nschemata and implementations of these into many data and file formats.\nThere is nothing which prevents the communities to make these schemata\nopen and interoperable. Open here means specifically not that all data are\ncompliant with/or use the schema and have to end up in the open-source domain.\nThere can be embargo periods first of all. Open means that the metadata and \nassociated schemata are documented in a manner that as many details as \npossible are open in the sense that others can understand what the \n(meta)data mean conceptually. \nThe `FAIR principles <https://doi.org/10.1038/sdata.2016.18>`_ guide all \ndecisions how data and metadata should be stored.\n\nEM instruments, software, and research are moving targets. Consequently,\nthere is a key challenge and inconvenience with having many different \nschemata with associated representations of data and metadata in EM:\nEach combination of schemata or an interoperable-made handshake between two\nfile formats or software packages has to be maintained by software developers.\nThis counts especially when data should be processed interoperably\nbetween software packages.\n\nThis brings two problems: Many software tools and parsers for the handshaking\nbetween tools to maintain. This can result in usage of different terminology.\nWhich in turn results in representations and connections made between \ndifferent data representations and workflows that are not machine-actionable.\n`There are community efforts to harmonize the terminology. <https://gitlab.hzdr.de/em_glossary/em_glossary>`_\n\nA common vocabulary can serve interoperability as developers of schemata\nand scientists can take for instance then these terms as closely as possible.\nIdeally, they specialize the application definition only for the few very\nspecific additional quantities of their instruments and techniques. This is\nbetter than reimplementing the wheel for descriptions of EM instruments.\nThis route of more standardization can support the EM community in that it\nremoves the necessity for having to maintain a very large number of schemata.\n\nAiming for more standardization, i.e. a lower number of schemata rather than\na single standard for electron microscopy is a compromise that can serve\nacademia as it enables the EM community to focus their software development\nefforts on those schemata, on fixing and discussing them, and on harmonize\ntheir common vocabulary. These activities can be specifically relevant also\nfor vendors of EM hard- and software as it improves the longevity of certain\nschema and thus can help to incentivize vendors to support the community with\nimplementing support for such schemata into their proprietary applications.\n\nIn effect, everybody can gain from this as it will likely reduce the cases\nin which scientists have to fix bugs in making their own tools compliant and\ninteroperable with tools of their colleagues and the wider community.\n\nThe here proposed NXem application definition offers modular components\n(EM-research specific base classes) for using NeXus to define schemata for\nelectron microscopy research. Working towards a common vocabulary is a\ncommunity activity that profits from everybody reflecting in detail whether\ncertain terms they have used are not eventually conceptually similar if not\nthe same as what this application definition and its base classes provide.\n\nWe are happy for receiving your feedback.\n\nIt is noteworthy to understand that (not only for) NeXus, schema differ\nalready if at least one field is required in one version of the schema,\nbut it is set optional in another version. If group(s), field(s), or\nattributes are removed or added, or even a docstring is changed, schemata can\nbecome inconsistent. An application definition here serves as a contract\nbetween a data provider and a data consumer. These two can be software tools\n(like the vendor software to drive the instrument or a scientific software\nfor doing artificial intelligence with EM data).\nSuch changes of a schema lead to new versions.\n\nTools like NeXus do not avoid or protect against inconsistencies; however\nNeXus offers a mechanism and toolset, through which schemata can be\ndocumented and defined. In effect, having an openly documented\n(at a case-specific level of technical detail) schema is a necessary but alone\nnot a sufficient step to take EM research on a route of machine-actionable \nand interoperable FAIR data.\nA common vocabulary and a machine-actionable knowledge representation/engine\nis also required. Essentially when the docstrings are no longer needed\nbut can be replaced by a connection to an automated tool which understands\nwhat a specific field represents conceptually, EM data have become more\ngenerally interoperable EM data.\n\nThis application definition takes a key step into this direction.\nIt offers a controlled vocabulary and relation between concepts and data\nrelevant for research with electron microscopes. To be most efficient and\noffering reusability, the application definition should be understood as a\ntemplate that one should ideally use as is. This application definition\nis called NXem. It can be considered a base for more specialized definitions\n(ideally prefixed with NXem) *method*.\n\n**The use of NXem should be as follows:**\nOffspring application definitions should not remove groups but make\nthem optional or, even better, propose changes in the application definition.\n\nA particular challenge with electron microscopes as physical instruments are\ntheir dynamics. To make EM data understandable, repeatable, and eventually\ncorresponding experiments reproducible in general requires a documentation\nof the spatio-temporal dynamics of the instrument in its environment.\nFor most commercial systems there is a specific accessibility beyond which\ndetailed settings like lens excitations and low-level hardware settings\nmay not be retrievable.\n\nEM experiments by design illuminate the specimen with electrons as a\nconsequence of which the specimen changes if not may get destroyed.\nAs such, repeatability of numerical processing and clear descriptions of\nprocedures and system setups should be addressed first.\n\nIf especially a certain simulation package needs a detailed view of the\ngeometry of the lens system and its excitations during the course of the\nexperiment, it is difficult to fully abstract the technical details of the\nhardware into a set of names for fields and groups that make for a compromise\nbetween clarity and being vendor-agnostic. Settings of apertures are an \nexample where aperture modes are aliases behind which there is a set of\nsettings. These settings are difficult to retrieve, often undocumented in\ndetail. This serves users and makes EM experiments easier understandable and\nconveniently executable for a broader user base. The opportunities for \napplication definitions to offer an abstraction layer are limited.\n\nInstead, currently it is for the docstring to specify what is conceptually\neventually behind such aliases. The design rule we followed while drafting \nthe application definition and base classes is that there are numerous \n(technical) details about an EM which may warrant a very detailed technical\ndisentangling of settings and reflection of numerous settings as deeply\nnested groups, fields and attributes. An application definition can offer a\nplace to hold these nested representations; however at the cost of generality.\n\nWhich specific details matter for answering scientific research questions is\na difficult question to answer by a single team of scientists, especially\nif the application definition is to speak for a number of vendors. What makes\nit especially challenging if the application definition is expected to hold\nall data that might be of relevance for future questions.\n\nWe are skeptical if there is one representation that can fulfill all these\naims, while remaining at the same time approachable and executable by a large\nnumber of scientists in a community. With this application definition we \nwould like to motivate the community to work towards such aim. While doing\nso we found that existent terminology can be encoded into a more controlled\nvocabulary.\n\nWe have concluded that despite all these details of current EM research with\nSEM, TEM, and focused-ion beam instruments, there a clearly identifiable\ncommon components and generalizable settings of EM research use cases.\n\n**This application definition has the following components at the top-level:**\n\n* Generic experimental details (timestamp, identifiers, name); \n conceptually these are session details. A session at a microscope may \n involve the characterization of multiple specimens. For each specimen \n an instance of an (NXentry) is created. Details of the instrument have to \n be stored at least in an entry. Other entries should refer to these \n metadata via links to reduce redundancies. \n* Each signal, such as a spectrum or image taken at the microscope, should \n have an associated time stamp and report of the specific settings at that \n point in time when the image was taken. The reason is that EMs can be \n highly dynamic, be used to illuminate the specimen differently \n or show drift during signal acquisition, to name but a few effects. \n What constitutes a single EM experiment/measurement? This can be the \n collecting of a single diffraction pattern with a scanning TEM (STEM), \n taking of a secondary electron image for fracture analysis, taking a set \n of EBSD line scan and surface mappings in an SEM, or ion-beam-milling of a \n specimen in preparation for an atom probe experiment. \n* NXmonitor;\n instances to keep track of time-dependent quantities \n pertaining to specific components of the instrument. Alternatively \n NXevent_data_em instances can be used to store timestamp states of the \n components, which is relevant to document the exact settings when images \n and spectra were taken. \n* NXinstrument;\n conceptually this is a container to store arbitrary level of detail of the \n technical components of the microscope as a device and the lab in which \n it is operated. \n* NXuser;\n conceptually, this is a set with at least one NXuser instance which details \n who operated or performed the measurement. Additional NXusers can be \n referred to in an NXevent_data_em instance to store \n individualized details who executed an event. \n* NXevent_data_em instances as an NXevent_data_em_set; \n each NXevent_data_em instance is a container to group specific details \n about the state of the microscope when a measurement was taken and \n relevant data and eventual processing steps were taken (on-the-fly). \n* NXdata; a the top-level, conceptually, this is a place for documenting \n available default plottable data. A default plottable can be useful for \n research data management systems to show a visual representation of some \n aspect of the content of the EM session. \n It is clear that what constitutes a useful default plot is a matter of \n interpretation, somewhat of personal taste, and community standards. \n\nIn effect, default plottables are case- and method-specific.\nUsually a session at a microscope is used to collect multiple signals and\nimages. Examples for possible default plottables could be an arbitrarily\ntaken: secondary, back-scattered, electron image, diffraction pattern,\nEELS spectra, composition, or orientation mappings to name but a few.\n\n**There are a few design choices to consider with sub-ordinate groups:**\n\n* Above images, spectra, and mappings should be stored as NXdata instances, \n ideally formatted in such a way that they can be displayed with \n visualization software that can be specific for the file format in which \n the data are stored. NeXus specifies only the data model, i.e. the terms \n and their relations. These descriptions can be implemented and stored in \n JSON, HDF5, XML, or HSDS, file storage, or even other formats, although \n HDF5 is the most commonly used.\n* Consumable results of EM characterization tasks are usually a sub-set of \n data artifacts, as there is not an infinite amount of possible \n electron/ion beam-specimen interactions. \n* Images of electron counts detected in specific operation modes (bright \n field, dark field in TEM, secondary/back-scattered, Kikuchi in SEM) \n* Spectra (X-ray quanta or auger electron counts) \n* These data are in virtually all cases a result of some numerical\n processing. It makes sense to name them with a controlled vocabulary, \n e.g. SE (secondary electron), BSE (back-scattered electron), Kikuchi, \n X-ray, Auger, Cathodolum(inescence) etc. \n\nA key question often asked with EM experiments is how the actual (meta)data\nshould be stored (in memory or on disk). To this end the schema, here makes no\nspecific assumptions, not even that all the fields/group of a schema instance\nhave to be stored into a single file. Instead, the schema specifies the\nrelations between metadata, constraints on how they should be formatted, what\nthey conceptually represent and which terms (controlled vocabulary) is\npractical to store with the data.\n\nIn effect, the application definition is a graph which describes how\n(meta)data are related to one another.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-group", + "https://doi.org/10.1038/sdata.2016.18", + "https://gitlab.hzdr.de/em_glossary/em_glossary" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXem", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "NeXus NXDL schema to which this file conforms.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXem" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "experiment_identifier", + "description": "Ideally, a (globally) unique persistent identifier\nfor referring to this experiment.\n\nThe identifier is usually defined/issued by the facility, laboratory,\nor the principle investigator.\nThe identifier enables to link experiments to e.g. proposals.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-experiment-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "experiment_description", + "description": "Free-text description about the experiment.\n\nUsers are strongly advised to detail the sample history in the respective \nfield and fill rather as completely as possible the fields of this \napplication definition rather than write details about the experiment\ninto this free-text description field.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-experiment-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_description", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "ISO 8601 time code with local time zone offset to UTC information included\nwhen the microscope session started. If the application demands that time\ncodes in this section of the application definition should only be used\nfor specifying when the experiment was performed - and the exact\nduration is not relevant - this start time field should be used.\n\nOften though it is useful to specify a time interval with specifying\nboth start_time and end_time to allow for more detailed bookkeeping and\ninterpretation of the experiment. The user should be aware that even\nwith having both time instances specified, it may not be possible\nto infer how long the experiment took or for how long data were acquired.\n\nMore detailed timing data over the course of the experiment have\nto be collected to compute this. These computations can take\nadvantage of individual time stamps in NXevent_em instances to\nprovide additional pieces of information.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "ISO 8601 time code with local time zone offset to UTC included when\nthe microscope session ended.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Commercial or otherwise given name to the program which was used to\ncreate the file.\n\nElectron microscopy experiments are usually controlled/performed via\ncommercial integrated acquisition and instrument control software.\nIn many cases, an EM dataset is useful only if it gets post-processed\nalready during the acquisition, i.e. while the scientist is sitting\nat the microscope.\nMany of these processes are automated, while some demand GUI\ninteractions with the control software. Examples include collecting\nof diffraction pattern and on-the-fly indexing of these.\n\nIt is possible that different types of programs might be used to \nperform these processing steps whether on-the-fly or not. If this is\nthe case the processing should be structured with individual NXprocess\ninstances. If the program and/or version used for processing referred\nto in an NXprocess group is different to the program and version\nmentioned in this field, the NXprocess needs\nto hold an own program and version.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "experiment_documentation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "thumbnail", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "operator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "COORDINATE_SYSTEM_SET", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "em_lab", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "measurement", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "experiment_documentation", + "description": "Binary container for a file or a compressed collection of files which\ncan be used to add further descriptions and details to the experiment.\nThe container can hold a compressed archive.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-experiment-documentation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "experiment_documentation", + "nx_type": "NXnote", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "thumbnail", + "description": "A small image that is representative of the entry; this can be an\nimage taken from the dataset like a thumbnail of a spectrum.\nA 640 x 480 pixel jpeg image is recommended. \nAdding a scale bar to that image is recommended but not required\nas the main purpose of the thumbnail is to provide e.g. thumbnail\nimages for displaying them in data repositories.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-thumbnail-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "thumbnail", + "nx_type": "NXnote", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/3" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "type", + "variable": false, + "more": { + "nx_name": "type" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "operator", + "description": "Contact information and eventually details of at least one person\ninvolved in the taking of the microscope session. This can be the\nprinciple investigator who performed this experiment.\nAdding multiple users if relevant is recommended.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "operator", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given (first) name and surname of the user.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "affiliation", + "description": "Name of the affiliation of the user at the point in time when the experiment was\nperformed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-affiliation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "affiliation", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "address", + "description": "Postal address of the affiliation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-address-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "address", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "email", + "description": "Email address of the user at the point in time when the experiment was\nperformed. Writing the most permanently used email is recommended.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-email-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "email", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "orcid", + "description": "Globally unique identifier of the user as offered by services like ORCID or\nResearcherID.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-orcid-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "orcid", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "telephone_number", + "description": "(Business) (tele)phone number of the user at the point in time when the\nexperiment was performed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-telephone-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "telephone_number", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "role", + "description": "Which role does the user have in the place and at the point \nin time when the experiment was performed? Technician operating\nthe microscope. Student, postdoc, principle investigator, guest\nare common examples.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-role-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "role", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "social_media_name", + "description": "Account name that is associated with the user in social media platforms.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-social-media-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "social_media_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "social_media_platform", + "description": "Name of the social media platform where the account under social_media_name is\nregistered.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-operator-social-media-platform-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "social_media_platform", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "SAMPLE", + "description": "A description of the material characterized in the experiment.\nSample and specimen are threaded as de facto synonyms.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "SAMPLE", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "method", + "description": "A qualifier whether the sample is a real one or a virtual one (in a computer\nsimulation)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-method-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "method", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "experimental", + "simulation" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name or ideally (globally) unique persistent identifier.\nThe name distinguishes the specimen from all others and especially\nthe predecessor/origin from where the specimen was cut.\n\nThis field must not be used for an alias of the sample.\nInstead, use short_title.\n\nIn cases where multiple specimens have been loaded into the microscope\nthe name has to identify the specific one, whose results are stored\nby this NXentry, because a single NXentry should be used only for\nthe characterization of a single specimen.\n\nDetails about the specimen preparation should be stored in the\nsample history.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "sample_history", + "description": "Ideally, a reference to a (globally) unique persistent identifier, representing a data \nartifact which documents ideally as many details of the material, its microstructure,\nand its thermo-chemo-mechanical processing/preparation history as possible.\n\nThe sample_history is the record what happened before the specimen was placed into the\nmicroscope at the beginning of the session.\n\nIn the case that such a detailed history of the sample/specimen is not available, use this field as\na free-text description to specify a sub-set of the entire sample history, i.e. what you would consider\nare the key steps and relevant information about the specimen, its material, microstructure, \nthermo-chemo-mechanical processing state, and the details of the preparation.\n\nSpecific details about eventual physically-connected material like embedding resin should be\ndocumented ideally also in the sample_history. If all fails, the description field\ncan be used but it is strongly discouraged because it leads to eventually non-machine-actionable\ndata.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-sample-history-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "sample_history", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "preparation_date", + "description": "ISO 8601 time code with local time zone offset to UTC information when the specimen was prepared.\n\nIdeally report the end of the preparation, i.e. the last known time the measured specimen surface\nwas actively prepared. Usually this should be a part of the sample history, i.e. the sample\nis imagined handed over for the analysis. At the point it enters the microscope the session starts.\n\nKnowing when the specimen was exposed to e.g. specific atmosphere is especially required for\nenvironmentally sensitive material such as hydrogen charged specimens or experiments\nincluding tracers with a short half time. Further time stamps prior to preparation_date should\nbetter be placed in resources which describe the sample_history.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-preparation-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "preparation_date", + "nx_optional": false, + "nx_units": "NX_TIME", + "nx_recommended": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "short_title", + "description": "Possibility to give an abbreviation or alias of the specimen name field.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-short-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "short_title", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "atom_types", + "description": "Use Hill's system for listing elements of the periodic table which are inside or attached\nto the surface of the specimen and thus relevant from a scientific point of view.\n\nThe purpose of the field is to offer materials database systems an opportunity to parse\nthe relevant elements without having to interpret these from the sample history.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-atom-types-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "atom_types", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "thickness", + "description": "(Measured) sample thickness. The information is recorded to qualify\nif the beam used was likely able to shine through the specimen.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "thickness", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Discouraged free-text field in case properly designed records for the\nsample_history are not available.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-sample-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "Hard link to a location in the hierarchy of the NeXus file\nwhere the data for default plotting are stored.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcoordinate_system_set", + "description": "Container to hold different coordinate systems conventions.\n\nIt is the purpose of this base class to define these conventions and\noffer a place to store mappings between different coordinate systems\nwhich are relevant for the interpretation of the data described\nby the application definition and base class instances.\n\nFor each Cartesian coordinate system users should use a set of\nNXtransformations:\n\n* These should define the three base vectors. \n* The location of the origin. \n* The affine transformations which bring each axis of this coordinate system \n into registration with the McStas coordinate system. \n* Equally, affine transformations should be given for the inverse mapping. \n\nAs an example one may take an experiment or computer simulation where\nthere is a laboratory (lab) coordinate system, a sample/specimen coordinate\nsystem, a crystal coordinate system, and additional coordinate systems,\nwhich are eventually attached to components of the instrument.\n\nIf no additional transformation is specified in this group or if an\ninstance of an NXcoordinate_system_set is absent it should be assumed\nthe so-called McStas coordinate system is used.\n\nMany application definitions in NeXus refer to this `McStas <https://mailman2.mcstas.org/pipermail/mcstas-users/2021q2/001431.html>`_ coordinate system.\nThis is a Cartesian coordinate system whose z axis points along the neutron \npropagation axis. The systems y axis is vertical up, while the x axis points\nleft when looking along the z-axis. Thus, McStas is a right-handed coordinate system.\n\nWithin each NXtransformations a depends_on section is required. The depends_on\nfield specifies if the coordinate system is the root/reference\n(which is indicated by writing \".\" in the depends_on section.)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-coordinate-system-set-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcoordinate_system_set", + "nx_type": "NXcoordinate_system_set", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/19" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "em_lab", + "description": "Metadata and numerical data of the microscope and the lab in which it stands.\n\nThe em_lab section contains a description of the instrument and its components.\nThe component descriptions in this section differ from those inside individual\nNXevent_em sections. These event instances take the role of time snapshot.\nFor an NXevent_em instance users should store only those settings for a \ncomponent which are relevant to understand the current state of the component.\nHere, current means at the point in time, i.e. the time interval, \nwhich the event represents.\n\nFor example it is not relevant to store in each event's electron_gun group\nagain the details of the gun type and manufacturer but only the high-voltage\nif for that event the high-voltage was different. If for all events\nthe high-voltage was the same it is not even necessary to include an electron_gun\nsection in the event.\n\nIndividual sections of specific type should have the following names:\n\n* NXaperture: the name should match with the name of the lens \n* NXlens_em: condenser_lens, objective_lens are commonly used names \n* NXcorrector_cs: device for correcting spherical aberrations \n* NXstage_lab: a collection of component for holding the specimen and \n eventual additional component for applying external stimuli on the sample \n* NXdetector: several possible names like secondary_electron, \n backscattered_electron, direct_electron, ebsd, edx, wds, auger, \n cathodoluminescence, camera, ronchigram ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "em_lab", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "instrument_name", + "description": "Given name of the microscope at the hosting institution. This is an alias.\nExamples could be NionHermes, Titan, JEOL, Gemini, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "instrument_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "location", + "description": "Location of the lab or place where the instrument is installed.\nUsing GEOREF is preferred.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-location-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "location", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "EBEAM_COLUMN", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "IBEAM_COLUMN", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "ebeam_deflector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "ibeam_deflector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "OPTICAL_SYSTEM_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "PUMP", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/7", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXebeam_column", + "description": "Container for components to form a controlled electron beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-ebeam-column-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXebeam_column", + "nx_type": "NXebeam_column", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "1", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/33" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXibeam_column", + "description": "Container for components of a focused-ion-beam (FIB) system.\n\nFIB capabilities turn especially scanning electron microscopes\ninto specimen preparation labs. FIB is a material preparation\ntechnique whereby portions of the sample are illuminated with a\nfocused ion beam with controlled intensity intense enough and with\nsufficient ion momentum to remove material in a controllable manner.\n\nThe fact that an electron microscope with FIB capabilities has needs a\nsecond gun with own relevant control circuits, focusing lenses, and\nother components, warrants an own base class to group these components\nand distinguish them from the lenses and components for creating and\nshaping the electron beam.\n\nFor more details about the relevant physics and application examples\nconsult the literature, for example:\n\n* `L. A. Giannuzzi et al. <https://doi.org/10.1007/b101190>`_ \n* `E. I. Prei\u00df et al. <https://link.springer.com/content/pdf/10.1557/s43578-020-00045-w.pdf>`_ \n* `J. F. Ziegler et al. <https://www.sciencedirect.com/science/article/pii/S0168583X10001862>`_ \n* `J. Lili <https://www.osti.gov/servlets/purl/924801>`_ ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-ibeam-column-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXibeam_column", + "nx_type": "NXibeam_column", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "2", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/52" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "ebeam_deflector", + "description": "Scan box and coils which deflect an electron beam in a controlled manner.\n\nIn electron microscopy, the scan box is instructed by the microscope\ncontrol software. This component directs the probe to controlled\nlocations according to a scan scheme and plan.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-ebeam-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ebeam_deflector", + "nx_type": "NXscanbox_em", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/110" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "ibeam_deflector", + "description": "Scan box and coils which deflect an electron beam in a controlled manner.\n\nIn electron microscopy, the scan box is instructed by the microscope\ncontrol software. This component directs the probe to controlled\nlocations according to a scan scheme and plan.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-ibeam-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ibeam_deflector", + "nx_type": "NXscanbox_em", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/110" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoptical_system_em", + "description": "A container for qualifying an electron optical system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-optical-system-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoptical_system_em", + "nx_type": "NXoptical_system_em", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/85" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "Description of the type of the detector.\n\nElectron microscopes have typically multiple detectors.\nDifferent technologies are in use like CCD, scintillator, \ndirect electron, CMOS, or image plate to name but a few.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Free text option to write further details about the detector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-detector-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/7/inner_section_definitions/6/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-detector-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpump", + "description": "Device to reduce an atmosphere to a controlled remaining pressure level.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-em-lab-pump-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpump", + "nx_type": "NXpump", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/95" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "measurement", + "description": "A container to structure a set of NXevent_em instances.\n\nAn event is a time point/interval during which the microscope\nwas configured in a specific way and the microscope was used\nto take a measurement.\n\nEach NXevent_em holds an acquisition task with the microscope.\nFor instance the capturing of a secondary electron, backscattered\nelectron, diffraction image, or spectrum.\n\nAn NXevent_em_data instance holds specific details about how raw data \nfrom a detector were processed into consumable data like images, spectra,\netc. These on-the-fly data processing tasks are usually performed\nby the control software, eventually realized with custom scripts.\n\nFurthermore, NXevent_em_state instances can document specific values\nand settings of the microscope during the snapshot/event.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "measurement", + "nx_type": "NXevent_data_em_set", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/43" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "EVENT_DATA_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXevent_data_em", + "description": "A container holding a specific result of the measurement and\neventually metadata how that result was obtained numerically.\n\nNXevent_em instances can hold several specific\nNXimage_em or NXspectrum_em instances taken and considered as\none event, i.e. a point in time when the microscope had the\nsettings specified either in NXinstrument or in this NXevent_data_em\ninstance.\n\nThe application definition is designed without an explicit need\nan NXevent_data_em instance that contains an NXimage_em or \nNXspectra_em instance. An NXevent_data_em can be used to document a\nspecific state of the microscope at a time without having it placed\ninto the NXinstrument group.\n\nIn other words the NXinstrument group details primarily the more\nstatic settings and components of the microscope as they are found\nby the operator during the session. The NXevent_data_em samples\nthe dynamics.\n\nIt is not necessary to store data in NXebeam, NXibeam instances\nof NXevent_data_em but in this case it is assumed that the settings\nwere constant over the entire course of microscope session\nand thus all relevant metadata inside the NXinstrument groups\nare sufficient to understand the session.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXevent_data_em", + "nx_type": "NXevent_data_em", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/43/inner_section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "ISO 8601 time code with local time zone offset to UTC information included when the snapshot time interval started.\nIf the user wishes to specify an interval of time that the snapshot should represent during which the\ninstrument was stable and configured using specific settings and calibrations, the start_time is the \nstart (left bound of the time interval) while the end_time specifies the end (right bound) of the time interval.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "ISO 8601 time code with local time zone offset to UTC included when the snapshot time interval ended.\nIf the user does not wish to specify a time interval, end_time should have the same value as start_time.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "event_identifier", + "description": "Reference to a specific state and setting of the microscope components.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-event-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "event_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "event_type", + "description": "Which specific event/measurement type. Examples are:\n\n* In-lens/backscattered electron, usually has quadrants \n* Secondary_electron, image, topography, fractography, overview images \n* Backscattered_electron, image, Z or channeling contrast (ECCI) \n* Bright_field, image, TEM \n* Dark_field, image, crystal defects \n* Annular dark field, image (medium- or high-angle), TEM \n* Diffraction, image, TEM, or a comparable technique in the SEM \n* Kikuchi, image, SEM EBSD and TEM diffraction \n* X-ray spectra (point, line, surface, volume), composition EDS/EDX(S) \n* Electron energy loss spectra for points, lines, surfaces, TEM \n* Auger, spectrum, (low Z contrast element composition) \n* Cathodoluminescence (optical spectra) \n* Ronchigram, image, alignment utility specifically in TEM \n* Chamber, e.g. TV camera inside the chamber, education purposes. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-event-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "event_type", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "detector_identifier", + "description": "The detector or set of detectors that was used to collect this signal.\nThe name of the detector has to match one of the names of available\nNXdetector instances e.g. if the instrument has an ebsd_camera\nthe detector for an NXimage_em_kikuchi should be the NXdetector\ninstance called ebsd_camera.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-detector-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "detector_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_SE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_BSE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_ECCI", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_BF", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_DF", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_ADF", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_KIKUCHI", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_DIFFRAC", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "SPECTRUM_SET_EM_XRAY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/8", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "SPECTRUM_SET_EM_EELS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "SPECTRUM_SET_EM_AUGER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/10", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "SPECTRUM_SET_EM_CATHODOLUM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_RONCHIGRAM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/12", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_CHAMBER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/13", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "EBEAM_COLUMN", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/14", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "IBEAM_COLUMN", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/15", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "ebeam_deflector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/16", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "ibeam_deflector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/17", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "OPTICAL_SYSTEM_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/18", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "USER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/37/inner_section_definitions/0/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/19", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_se", + "description": "Container for reporting a set of secondary electron images.\n\nSecondary electron images are one of the most important signal especially\nfor scanning electron microscopy in materials science and engineering, for\nanalyses of surface topography, getting an overview of the analysis region,\nor fractography.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-se-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_se", + "nx_type": "NXimage_set_em_se", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/0" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_bse", + "description": "Container for reporting a set of back-scattered electron images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-bse-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_bse", + "nx_type": "NXimage_set_em_bse", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/1" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_ecci", + "description": "Container for reporting back-scattered electron channeling contrast images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-ecci-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_ecci", + "nx_type": "NXimage_set_em_ecci", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/2" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_bf", + "description": "Container for reporting a set of images taken in bright field mode.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-bf-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_bf", + "nx_type": "NXimage_set_em_bf", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/3" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_df", + "description": "Container for reporting a set of images taken in dark field mode.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-df-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_df", + "nx_type": "NXimage_set_em_df", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/4" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_adf", + "description": "Container for reporting a set of annular dark field images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-adf-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_adf", + "nx_type": "NXimage_set_em_adf", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/5" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_kikuchi", + "description": "Electron backscatter diffraction (EBSD) Kikuchi pattern.\n\nThe container can also store data related to a post-processing of these\nKikuchi pattern, which is the backbone of orientation microscopy\nespecially in materials science and materials engineering.\n\nBased on a fuse of the `M. A. Jackson et al. <https://doi.org/10.1186/2193-9772-3-4>`_\nof the DREAM.3D community and the open H5OINA format of Oxford Instruments\n`P. Pinard et al. <https://doi.org/10.1017/S1431927621006103>`_\n\nEBSD can be used, usually with FIB/SEM microscopes, for three-dimensional\norientation microscopy. So-called serial section analyses. For a detailed\noverview of these techniques see e.g.\n\n* `M. A. Groeber et al. <https://doi.org/10.1186/2193-9772-3-5>`_ \n* `A. J. Schwartz et al. <https://doi.org/10.1007/978-1-4757-3205-4>`_ \n* `P. A. Rottman et al. <https://doi.org/10.1016/j.mattod.2021.05.003>`_ \n\nWith serial-sectioning this involves however always a sequence of\nmeasuring, milling. In this regard, each serial section (measuring) and milling\nis an own NXevent_data_em instance and thus there such a three-dimensional\ncharacterization should be stored as a set of two-dimensional data,\nwith as many NXevent_data_em instances as sections were measured.\n\nThese measured serial sectioning images need virtually always post-processing\nto arrive at the aligned and cleaned image stack respective digital\nmicrostructure representation as (a representative) volume element.\nSeveral software packages are available for this post-processing.\nFor now we do not consider metadata of these post-processing steps\nas a part of this base class.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-kikuchi-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_kikuchi", + "nx_type": "NXimage_set_em_kikuchi", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/6" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_diffrac", + "description": "Container for reporting a set of diffraction images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-diffrac-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_diffrac", + "nx_type": "NXimage_set_em_diffrac", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/7" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspectrum_set_em_xray", + "description": "Container for reporting a set of energy-dispersive X-ray spectra.\n\nVirtually the most important case is that spectra are collected in \na scanning microscope (SEM or STEM) for a collection of points.\nThe majority of cases use simple d-dimensional regular scan pattern,\nsuch as single point, line profiles, or (rectangular) surface mappings.\nThe latter pattern is the most frequently used.\n\nFor now the base class provides for scans where the settings,\nbinning, and energy resolution is the same for each scan point.\n\n`IUPAC instead of Siegbahn notation <https://doi.org/10.1002/xrs.1300200308>`_ should be used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-spectrum-set-em-xray-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_xray", + "nx_type": "NXspectrum_set_em_xray", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/8" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspectrum_set_em_eels", + "description": "Container for reporting a set of electron energy loss spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-spectrum-set-em-eels-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_eels", + "nx_type": "NXspectrum_set_em_eels", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/9" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspectrum_set_em_auger", + "description": "Container for reporting a set of auger electron energy spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-spectrum-set-em-auger-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_auger", + "nx_type": "NXspectrum_set_em_auger", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/10" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspectrum_set_em_cathodolum", + "description": "Container for reporting a set of cathodoluminescence spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-spectrum-set-em-cathodolum-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_cathodolum", + "nx_type": "NXspectrum_set_em_cathodolum", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/11" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_ronchigram", + "description": "Container for reporting a set of images related to a ronchigram.\n\nRonchigrams are specifically used in transmission electron microscopy\nto judge the settings for the aberration corrections and alignment.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-ronchigram-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_ronchigram", + "nx_type": "NXimage_set_em_ronchigram", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/12" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_chamber", + "description": "Container for images recorded with e.g. a TV camera in the microscope chamber.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-image-set-em-chamber-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_chamber", + "nx_type": "NXimage_set_em_chamber", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/13" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXebeam_column", + "description": "Container for components to form a controlled electron beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-ebeam-column-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXebeam_column", + "nx_type": "NXebeam_column", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/14" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXibeam_column", + "description": "Container for components of a focused-ion-beam (FIB) system.\n\nFIB capabilities turn especially scanning electron microscopes\ninto specimen preparation labs. FIB is a material preparation\ntechnique whereby portions of the sample are illuminated with a\nfocused ion beam with controlled intensity intense enough and with\nsufficient ion momentum to remove material in a controllable manner.\n\nThe fact that an electron microscope with FIB capabilities has needs a\nsecond gun with own relevant control circuits, focusing lenses, and\nother components, warrants an own base class to group these components\nand distinguish them from the lenses and components for creating and\nshaping the electron beam.\n\nFor more details about the relevant physics and application examples\nconsult the literature, for example:\n\n* `L. A. Giannuzzi et al. <https://doi.org/10.1007/b101190>`_ \n* `E. I. Prei\u00df et al. <https://link.springer.com/content/pdf/10.1557/s43578-020-00045-w.pdf>`_ \n* `J. F. Ziegler et al. <https://www.sciencedirect.com/science/article/pii/S0168583X10001862>`_ \n* `J. Lili <https://www.osti.gov/servlets/purl/924801>`_ ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-ibeam-column-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXibeam_column", + "nx_type": "NXibeam_column", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/15" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "inner_section_definitions", + "name": "ebeam_deflector", + "description": "Scan box and coils which deflect an electron beam in a controlled manner.\n\nIn electron microscopy, the scan box is instructed by the microscope\ncontrol software. This component directs the probe to controlled\nlocations according to a scan scheme and plan.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-ebeam-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ebeam_deflector", + "nx_type": "NXscanbox_em", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/16" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "inner_section_definitions", + "name": "ibeam_deflector", + "description": "Scan box and coils which deflect an electron beam in a controlled manner.\n\nIn electron microscopy, the scan box is instructed by the microscope\ncontrol software. This component directs the probe to controlled\nlocations according to a scan scheme and plan.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-ibeam-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ibeam_deflector", + "nx_type": "NXscanbox_em", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/17" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoptical_system_em", + "description": "A container for qualifying an electron optical system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-optical-system-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoptical_system_em", + "nx_type": "NXoptical_system_em", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/18" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXuser", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXem.html#nxem-entry-measurement-event-data-em-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXuser", + "nx_type": "NXuser", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42/inner_section_definitions/19" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 38, + "m_parent_sub_section": "section_definitions", + "name": "NXenergydispersion", + "description": "Subclass of NXelectronanalyser to describe the energy dispersion section of a\nphotoelectron analyser.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXenergydispersion", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "scheme", + "description": "Energy dispersion scheme employed, for example: tof, hemispherical, cylindrical,\nmirror, retarding grid, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-scheme-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "scheme", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "pass_energy", + "description": "Energy of the electrons on the mean path of the analyser. Pass energy for\nhemispherics, drift energy for tofs.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-pass-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pass_energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "center_energy", + "description": "Center of the energy window", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-center-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "center_energy", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "energy_interval", + "description": "The interval of transmitted energies. It can be two different things depending\non whether the scan is fixed or swept. With a fixed scan it is a 2 vector\ncontaining the extrema of the transmitted energy window (smaller number first).\nWith a swept scan of m steps it is a 2xm array of windows one for each\nmeasurement point.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-energy-interval-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy_interval", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "diameter", + "description": "Diameter of the dispersive orbit", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-diameter-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "diameter", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "energy_scan_mode", + "description": "Way of scanning the energy axis (fixed or sweep).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-energy-scan-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "energy_scan_mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "fixed", + "sweep" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "tof_distance", + "description": "Length of the tof drift electrode", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-tof-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "tof_distance", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/38/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "DEFLECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/38/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "LENS_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/38/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture", + "description": "Size, position and shape of a slit in dispersive analyzer, e.g. entrance and\nexit slits.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-aperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture", + "nx_type": "NXaperture", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdeflector", + "description": "Deflectors in the energy dispersive section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdeflector", + "nx_type": "NXdeflector", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/26" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlens_em", + "description": "Individual lenses in the energy dispersive section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXenergydispersion.html#nxenergydispersion-lens-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlens_em", + "nx_type": "NXlens_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/70" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 39, + "m_parent_sub_section": "section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "experiment_identifier", + "description": "Unique identifier for the experiment,\ndefined by the facility,\npossibly linked to the proposals", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-experiment-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "experiment_description", + "description": "Brief summary of the experiment, including key objectives.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-experiment-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_description", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "collection_identifier", + "description": "User or Data Acquisition defined group of NeXus files or NXentry", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-collection-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "collection_description", + "description": "Brief summary of the collection, including grouping criteria.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-collection-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "entry_identifier", + "description": "unique identifier for the measurement, defined by the facility.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-entry-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "entry_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "entry_identifier_uuid", + "description": "UUID identifier for the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-entry-identifier-uuid-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "entry_identifier_uuid", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "features", + "description": "Reserved for future use by NIAC.\n\nSee https://github.com/nexusformat/definitions/issues/382", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-features-field", + "https://github.com/nexusformat/definitions/issues/382" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "features", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "(alternate use: see same field in :ref:`NXsubentry` for preferred)\n\nOfficial NeXus NXDL schema to which this entry conforms which must be\nthe name of the NXDL file (case sensitive without the file extension)\nthat the NXDL schema is defined in. \n\nFor example the ``definition`` field for a file that conformed to the \n*NXarpes.nxdl.xml* definition must contain the string **NXarpes**.\n\nThis field is provided so that :ref:`NXentry` can be the overlay position\nin a NeXus data file for an application definition and its\nset of groups, fields, and attributes.\n\n*It is advised* to use :ref:`NXsubentry`, instead, as the overlay position.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "definition_local", + "description": "Local NXDL schema extended from the entry\nspecified in the ``definition`` field.\nThis contains any locally-defined,\nadditional fields in the entry.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-definition-local-field" + ], + "deprecated": "see same field in :ref:`NXsubentry` for preferred use", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition_local", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Duration of measurement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "collection_time", + "description": "Time transpired actually collecting data i.e. taking out time when collection was\nsuspended due to e.g. temperature out of range", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-collection-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "collection_time", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "run_cycle", + "description": "Such as \"2007-3\". Some user facilities organize their beam time into run cycles.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-run-cycle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "run_cycle", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "program_name", + "description": "Name of program used to generate this file", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-program-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "configuration", + "variable": false, + "more": { + "nx_name": "configuration" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "revision", + "description": "Revision id of the file due to re-calibration, reprocessing, new analysis, new\ninstrument definition format, ...", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-revision-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "revision", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "comment", + "variable": false, + "more": { + "nx_name": "comment" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "pre_sample_flightpath", + "description": "This is the flightpath before the sample position. This can be determined by a chopper,\nby the moderator or the source itself. In other words: it the distance to the component\nwhich gives the T0 signal to the detector electronics. If another component in the\nNXinstrument hierarchy provides this information, this should be a link.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-pre-sample-flightpath-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pre_sample_flightpath", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "experiment_documentation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "notes", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "thumbnail", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "USER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/8", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "PARAMETERS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/10", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "SUBENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/39/inner_section_definitions/11", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-data-group", + "https://www.nexusformat.org/NIAC2016.html", + "https://github.com/nexusformat/NIAC/issues/16" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "experiment_documentation", + "description": "Description of the full experiment (document in pdf, latex, ...)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-experiment-documentation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "experiment_documentation", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "notes", + "description": "Notes describing entry", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-notes-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "notes", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "thumbnail", + "description": "A small image that is representative of the entry. An example of this is a 640x480\njpeg image automatically produced by a low resolution plot of the NXdata.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-thumbnail-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "thumbnail", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "type", + "variable": false, + "more": { + "nx_name": "type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "image/*" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXuser", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXuser", + "nx_type": "NXuser", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollection", + "description": "An unvalidated set of terms, such as the description of a beam line.\n\nUse :ref:`NXcollection` to gather together any set of terms.\nThe original suggestion is to use this as a container \nclass for the description of a beamline.\n\nFor NeXus validation, :ref:`NXcollection` will always generate \na warning since it is always an optional group. \nAnything (groups, fields, or attributes) placed in\nan :ref:`NXcollection` group will not be validated.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-collection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXparameters", + "description": "Container for parameters, usually used in processing or analysis.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-parameters-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXparameters", + "nx_type": "NXparameters", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/87" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsubentry", + "description": "Group of multiple application definitions for \"multi-modal\" (e.g. SAXS/WAXS) measurements.\n\n``NXsubentry`` is a base class virtually identical to :ref:`NXentry`\nand is used as the (overlay) location for application definitions.\nUse a separate ``NXsubentry`` for each application definition. \n\nTo use ``NXsubentry`` with a hypothetical application definition \ncalled ``NXmyappdef``:\n\n* Create a group with attribute ``NX_class=\"NXsubentry\"``\n* Within that group, create a field called ``definition=\"NXmyappdef\"``.\n* There are two optional attributes of definition: ``version`` and ``URL``\n\nThe intended use is to define application definitions for a \nmulti-modal (a.k.a. multi-technique) :ref:`NXentry`. \nPreviously, an application definition \nreplaced :ref:`NXentry` with its own definition. \nWith the increasing popularity of instruments combining \nmultiple techniques for data collection (such as SAXS/WAXS instruments), \nit was recognized the application definitions must be entered in the NeXus\ndata file tree as children of :ref:`NXentry`. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXentry.html#nxentry-subentry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsubentry", + "nx_type": "NXsubentry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/130" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 40, + "m_parent_sub_section": "section_definitions", + "name": "NXenvironment", + "description": "Parameters for controlling external conditions", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXenvironment", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Apparatus identification code/model number; e.g. OC100 011", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "short_name", + "description": "Alternative short name, perhaps for dashboard display like a present Seblock name", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-short-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "short_name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type of apparatus. This could be the SE codes in scheduling database; e.g. OC/100", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of the apparatus; e.g. 100mm bore orange cryostat with Roots pump", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Program controlling the apparatus; e.g. LabView VI name", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "position", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/40/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/40/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "NOTE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/40/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "SENSOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/40/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "position", + "description": "The position and orientation of the apparatus.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-position-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "position", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXnote", + "description": "Additional information, LabView logs, digital photographs, etc", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-note-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXnote", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsensor", + "description": "A sensor used to monitor an external condition \n\nThe condition itself is described in :ref:`NXenvironment`.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXenvironment.html#nxenvironment-sensor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsensor", + "nx_type": "NXsensor", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/111" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 41, + "m_parent_sub_section": "section_definitions", + "name": "NXevent_data", + "description": "NXevent_data is a special group for storing data from neutron\ndetectors in event mode. In this mode, the detector electronics\nemits a stream of detectorID, timestamp pairs. With detectorID\ndescribing the detector element in which the neutron was detected\nand timestamp the timestamp at which the neutron event was\ndetected. In NeXus detectorID maps to event_id, event_time_offset\nto the timestamp.\n\nAs this kind of data is common at pulsed neutron\nsources, the timestamp is almost always relative to the start of a\nneutron pulse. Thus the pulse timestamp is recorded too together\nwith an index in the event_id, event_time_offset pair at which data for\nthat pulse starts. At reactor source the same pulsed data effect\nmay be achieved through the use of choppers or in stroboscopic\nmeasurement setups. \n\nIn order to make random access to timestamped data\nfaster there is an optional array pair of\ncue_timestamp_zero and cue_index. The cue_timestamp_zero will\ncontain courser timestamps then in the time array, say\nevery five minutes. The cue_index will then contain the\nindex into the event_id,event_time_offset pair of arrays for that\ncourser cue_timestamp_zero. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXevent-data.html#nxevent-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXevent_data", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "event_time_offset", + "description": "A list of timestamps for each event as it comes in. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXevent-data.html#nxevent-data-event-time-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "event_time_offset", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "event_id", + "description": "There will be extra information in the NXdetector to convert \nevent_id to detector_number.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXevent-data.html#nxevent-data-event-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "event_id", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "i" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "event_time_zero", + "description": "The time that each pulse started with respect to the offset", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXevent-data.html#nxevent-data-event-time-zero-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "event_time_zero", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "j" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "event_index", + "description": "The index into the event_time_offset, event_id pair for\nthe pulse occurring at the matching entry in event_time_zero.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXevent-data.html#nxevent-data-event-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "event_index", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "j" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "pulse_height", + "description": "If voltages from the ends of the detector are read out this \nis where they go. This list is for all events with information \nto attach to a particular pulse height. The information to \nattach to a particular pulse is located in events_per_pulse.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXevent-data.html#nxevent-data-pulse-height-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pulse_height", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "k" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "cue_timestamp_zero", + "description": "Timestamps matching the corresponding cue_index into the\nevent_id, event_time_offset pair.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXevent-data.html#nxevent-data-cue-timestamp-zero-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "cue_timestamp_zero", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "start", + "variable": false, + "more": { + "nx_name": "start", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "cue_index", + "description": "Index into the event_id, event_time_offset pair matching the corresponding\ncue_timestamp. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXevent-data.html#nxevent-data-cue-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "cue_index", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 42, + "m_parent_sub_section": "section_definitions", + "name": "NXevent_data_em", + "description": "Metadata and settings of an electron microscope for scans and images.\n\nThe need for such a structuring of data is evident from the fact that\nelectron microscopes are dynamic. Oftentimes it suffices to calibrate the \ninstrument at the start of the session. Subsequently, data\n(images, spectra, etc.) can be collected. Users may wish to take only\na single scan or image and complete their microscope session; however\n\nfrequently users spend much longer at the microscope, recalibrate,\nand take multiple data items (scans, images, spectra) each coming\nwith own detector and on-the-fly processing settings and calibration.\n\nFor the single data item use case one may argue that the need for additional\ngrouping is redundant. Instead, the metadata could equally be stored inside\nthe respective groups of the top-level mandatory NXinstrument group.\nOn the flip side, even for a session with a single image it would also not\nharm to nest the data.\n\nIn fact, oftentimes scientists feel that there is a need to store details \nabout eventual drift of the specimen in its holder (if such data is available)\nor record changes to the lens excitations caused or apertures used.\nAlthough current microscopes are usually equipped with stabilization\nsystems for many of the individual components, it can still be useful\nto store time-dependent data in detail.\n\nAnother reason if not a need for more finely granularizable options for\nstoring time-dependent data, is that over the course of a session one may\nreconfigure the microscope. What is a reconfiguration? This could be the\nchange of an aperture mode because a scientist may first collect an image\nwith some aperture and then choose a different one. As the aperture affects\nthe electron beam it will affect the system.\n\nLet aside for a moment the technology and business models, an EM could be\nmonitored (and will likely become so more in the future) for streaming out\nspatio-temporal details about its components, locations of objects\nand eventually applied stimuli and positioning of the specimen.\n\nSome snapshot or integrated data from this stream are relevant for\nunderstanding signal genesis and electron/ion beam paths. In such a generic\ncase it might be necessary to sync these streaming data with those intervals\nin time when specific measurements are taken (spectra collected,\nimages taken, diffraction images indexed on-the-fly).\n\nTheoretically, an instrument and specimen should be considered as dynamic.\nScientists often report or feel (difficult to quantify) observations that\nmicroscopes *perform differently* across sessions, without sometimes being\nable to identify clear root causes. Users of the instrument may consider\nsuch conditions impractical and thus either abort their session or try to\nbring the microscope first into a state where conditions are considered\nstable and of high enough quality for collecting data.\n\nIn all these cases it is practical to store time-dependent data of the\ninstrument state not in the respective instrument component groups\nof the top-level NXinstrument but in a sort of a log of event data.\nThis is the idea behind the NXevent_data_em snapshot containers.\n\nThe base class requires a start time and an optional end time.\nThe end time should be added to represent a time interval\n(remind the idea of the instrument state stream) during which the\nscientist considered the microscope (especially ebeam and specimen)\nas stable enough.\n\nFor specific simulation purposes, mainly in an effort to digitally repeat\nor simulate the experiment, it is tempting to consider dynamics of the\ninstrument, implemented as time-dependent functional descriptions of\ne.g. lens excitations, beam shape functions, trajectories of groups of\nelectrons, or detector noise models.\n\nFor now the preferred strategy to handle these cases is through\ncustomizations of the specific fields within NXevent_data_em instances.\n\nAnother alternative could be to sample finer, eventually dissimilarly along\nthe time axis; however this may cause situations where an NXevent_data_em\ninstance does not contain specific measurements\n(i.e. images, spectra of scientific relevance).\n\nIn this case one should better go for a customized application definition\nwith a functional property description inside members (fields or groups)\nin NXevent_data_em instances or resort to a specific application definition\nwhich documents metadata for tracking explicitly electrons\n(with ray-tracing based descriptors/computational geometry descriptors)\nor tracking of wave bundles.\n\nThis perspective on more subtle time-dependent considerations of electron\nmicroscopy can be advantageous also for storing details of time-dependent\nadditional components that are coupled to and/or synced with instrument.\n\nExamples include cutting-edge experiments where the electron beam gets\ncoupled/excited by e.g. lasers. In this case, the laser unit should be\nregistered under the top-level NXinstrument section. Its spatio-temporal\ndetails could be stored inside respective groups of the NXinstrument.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXevent_data_em", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "ISO 8601 time code with local time zone offset to UTC information included when the snapshot time interval started.\nIf the user wishes to specify an interval of time that the snapshot should represent during which the\ninstrument was stable and configured using specific settings and calibrations, the start_time is the \nstart (left bound of the time interval) while the end_time specifies the end (right bound) of the time interval.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "ISO 8601 time code with local time zone offset to UTC included when the snapshot time interval ended.\nIf the user does not wish to specify a time interval, end_time should have the same value as start_time.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "event_identifier", + "description": "Reference to a specific state and setting of the microscope components.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-event-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "event_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "event_type", + "description": "Which specific event/measurement type. Examples are:\n\n* In-lens/backscattered electron, usually has quadrants \n* Secondary_electron, image, topography, fractography, overview images \n* Backscattered_electron, image, Z or channeling contrast (ECCI) \n* Bright_field, image, TEM \n* Dark_field, image, crystal defects \n* Annular dark field, image (medium- or high-angle), TEM \n* Diffraction, image, TEM, or a comparable technique in the SEM \n* Kikuchi, image, SEM EBSD and TEM diffraction \n* X-ray spectra (point, line, surface, volume), composition EDS/EDX(S) \n* Electron energy loss spectra for points, lines, surfaces, TEM \n* Auger, spectrum, (low Z contrast element composition) \n* Cathodoluminescence (optical spectra) \n* Ronchigram, image, alignment utility specifically in TEM \n* Chamber, e.g. TV camera inside the chamber, education purposes. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-event-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "event_type", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "detector_identifier", + "description": "The detector or set of detectors that was used to collect this signal.\nThe name of the detector has to match the names used for available\ndetectors, i.e. if the instrument has an *ebsd_camera*\nnamed detector, instances of NXimage_em_kikuchi should use\n*ebsd_camera* as the detector name.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-detector-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "detector_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_SE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_BSE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_ECCI", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_BF", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_DF", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_ADF", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_KIKUCHI", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_DIFFRAC", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "SPECTRUM_SET_EM_XRAY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/8", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "SPECTRUM_SET_EM_EELS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "SPECTRUM_SET_EM_AUGER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/10", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "SPECTRUM_SET_EM_CATHODOLUM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_RONCHIGRAM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/12", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "IMAGE_SET_EM_CHAMBER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/13", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "EBEAM_COLUMN", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/14", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "IBEAM_COLUMN", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/15", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "ebeam_deflector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/16", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "ibeam_deflector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/17", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "OPTICAL_SYSTEM_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/18", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "USER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/42/inner_section_definitions/19", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_se", + "description": "Container for reporting a set of secondary electron images.\n\nSecondary electron images are one of the most important signal especially\nfor scanning electron microscopy in materials science and engineering, for\nanalyses of surface topography, getting an overview of the analysis region,\nor fractography.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-se-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_se", + "nx_type": "NXimage_set_em_se", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/62" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_bse", + "description": "Container for reporting a set of back-scattered electron images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-bse-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_bse", + "nx_type": "NXimage_set_em_bse", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/55" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_ecci", + "description": "Container for reporting back-scattered electron channeling contrast images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-ecci-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_ecci", + "nx_type": "NXimage_set_em_ecci", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/59" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_bf", + "description": "Container for reporting a set of images taken in bright field mode.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-bf-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_bf", + "nx_type": "NXimage_set_em_bf", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/54" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_df", + "description": "Container for reporting a set of images taken in dark field mode.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-df-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_df", + "nx_type": "NXimage_set_em_df", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/57" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_adf", + "description": "Container for reporting a set of annular dark field images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-adf-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_adf", + "nx_type": "NXimage_set_em_adf", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/53" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_kikuchi", + "description": "Electron backscatter diffraction (EBSD) Kikuchi pattern.\n\nThe container can also store data related to a post-processing of these\nKikuchi pattern, which is the backbone of orientation microscopy\nespecially in materials science and materials engineering.\n\nBased on a fuse of the `M. A. Jackson et al. <https://doi.org/10.1186/2193-9772-3-4>`_\nof the DREAM.3D community and the open H5OINA format of Oxford Instruments\n`P. Pinard et al. <https://doi.org/10.1017/S1431927621006103>`_\n\nEBSD can be used, usually with FIB/SEM microscopes, for three-dimensional\norientation microscopy. So-called serial section analyses. For a detailed\noverview of these techniques see e.g.\n\n* `M. A. Groeber et al. <https://doi.org/10.1186/2193-9772-3-5>`_ \n* `A. J. Schwartz et al. <https://doi.org/10.1007/978-1-4757-3205-4>`_ \n* `P. A. Rottman et al. <https://doi.org/10.1016/j.mattod.2021.05.003>`_ \n\nWith serial-sectioning this involves however always a sequence of\nmeasuring, milling. In this regard, each serial section (measuring) and milling\nis an own NXevent_data_em instance and thus there such a three-dimensional\ncharacterization should be stored as a set of two-dimensional data,\nwith as many NXevent_data_em instances as sections were measured.\n\nThese measured serial sectioning images need virtually always post-processing\nto arrive at the aligned and cleaned image stack respective digital\nmicrostructure representation as (a representative) volume element.\nSeveral software packages are available for this post-processing.\nFor now we do not consider metadata of these post-processing steps\nas a part of this base class.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-kikuchi-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_kikuchi", + "nx_type": "NXimage_set_em_kikuchi", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/60" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_diffrac", + "description": "Container for reporting a set of diffraction images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-diffrac-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_diffrac", + "nx_type": "NXimage_set_em_diffrac", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/58" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspectrum_set_em_xray", + "description": "Container for reporting a set of energy-dispersive X-ray spectra.\n\nVirtually the most important case is that spectra are collected in \na scanning microscope (SEM or STEM) for a collection of points.\nThe majority of cases use simple d-dimensional regular scan pattern,\nsuch as single point, line profiles, or (rectangular) surface mappings.\nThe latter pattern is the most frequently used.\n\nFor now the base class provides for scans where the settings,\nbinning, and energy resolution is the same for each scan point.\n\n`IUPAC instead of Siegbahn notation <https://doi.org/10.1002/xrs.1300200308>`_ should be used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-spectrum-set-em-xray-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_xray", + "nx_type": "NXspectrum_set_em_xray", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/124" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspectrum_set_em_eels", + "description": "Container for reporting a set of electron energy loss spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-spectrum-set-em-eels-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_eels", + "nx_type": "NXspectrum_set_em_eels", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/123" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspectrum_set_em_auger", + "description": "Container for reporting a set of auger electron energy spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-spectrum-set-em-auger-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_auger", + "nx_type": "NXspectrum_set_em_auger", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/121" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXspectrum_set_em_cathodolum", + "description": "Container for reporting a set of cathodoluminescence spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-spectrum-set-em-cathodolum-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_cathodolum", + "nx_type": "NXspectrum_set_em_cathodolum", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/122" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_ronchigram", + "description": "Container for reporting a set of images related to a ronchigram.\n\nRonchigrams are specifically used in transmission electron microscopy\nto judge the settings for the aberration corrections and alignment.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-ronchigram-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_ronchigram", + "nx_type": "NXimage_set_em_ronchigram", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/61" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXimage_set_em_chamber", + "description": "Container for images recorded with e.g. a TV camera in the microscope chamber.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-image-set-em-chamber-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_chamber", + "nx_type": "NXimage_set_em_chamber", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/56" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXebeam_column", + "description": "Container for components to form a controlled electron beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-ebeam-column-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXebeam_column", + "nx_type": "NXebeam_column", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/33" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXibeam_column", + "description": "Container for components of a focused-ion-beam (FIB) system.\n\nFIB capabilities turn especially scanning electron microscopes\ninto specimen preparation labs. FIB is a material preparation\ntechnique whereby portions of the sample are illuminated with a\nfocused ion beam with controlled intensity intense enough and with\nsufficient ion momentum to remove material in a controllable manner.\n\nThe fact that an electron microscope with FIB capabilities has needs a\nsecond gun with own relevant control circuits, focusing lenses, and\nother components, warrants an own base class to group these components\nand distinguish them from the lenses and components for creating and\nshaping the electron beam.\n\nFor more details about the relevant physics and application examples\nconsult the literature, for example:\n\n* `L. A. Giannuzzi et al. <https://doi.org/10.1007/b101190>`_ \n* `E. I. Prei\u00df et al. <https://link.springer.com/content/pdf/10.1557/s43578-020-00045-w.pdf>`_ \n* `J. F. Ziegler et al. <https://www.sciencedirect.com/science/article/pii/S0168583X10001862>`_ \n* `J. Lili <https://www.osti.gov/servlets/purl/924801>`_ ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-ibeam-column-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXibeam_column", + "nx_type": "NXibeam_column", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/52" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "inner_section_definitions", + "name": "ebeam_deflector", + "description": "Scan box and coils which deflect an electron beam in a controlled manner.\n\nIn electron microscopy, the scan box is instructed by the microscope\ncontrol software. This component directs the probe to controlled\nlocations according to a scan scheme and plan.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-ebeam-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ebeam_deflector", + "nx_type": "NXscanbox_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/110" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "inner_section_definitions", + "name": "ibeam_deflector", + "description": "Scan box and coils which deflect an electron beam in a controlled manner.\n\nIn electron microscopy, the scan box is instructed by the microscope\ncontrol software. This component directs the probe to controlled\nlocations according to a scan scheme and plan.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-ibeam-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ibeam_deflector", + "nx_type": "NXscanbox_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/110" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoptical_system_em", + "description": "A container for qualifying an electron optical system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-optical-system-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoptical_system_em", + "nx_type": "NXoptical_system_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/85" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXuser", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em.html#nxevent-data-em-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXuser", + "nx_type": "NXuser", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 43, + "m_parent_sub_section": "section_definitions", + "name": "NXevent_data_em_set", + "description": "Container to hold NXevent_data_em instances of an electron microscope session.\n\nAn event is a time interval during which the microscope was configured,\nconsidered stable, and used for characterization.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em-set.html#nxevent-data-em-set-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXevent_data_em_set", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "EVENT_DATA_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/43/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXevent_data_em", + "description": "Metadata and settings of an electron microscope for scans and images.\n\nThe need for such a structuring of data is evident from the fact that\nelectron microscopes are dynamic. Oftentimes it suffices to calibrate the \ninstrument at the start of the session. Subsequently, data\n(images, spectra, etc.) can be collected. Users may wish to take only\na single scan or image and complete their microscope session; however\n\nfrequently users spend much longer at the microscope, recalibrate,\nand take multiple data items (scans, images, spectra) each coming\nwith own detector and on-the-fly processing settings and calibration.\n\nFor the single data item use case one may argue that the need for additional\ngrouping is redundant. Instead, the metadata could equally be stored inside\nthe respective groups of the top-level mandatory NXinstrument group.\nOn the flip side, even for a session with a single image it would also not\nharm to nest the data.\n\nIn fact, oftentimes scientists feel that there is a need to store details \nabout eventual drift of the specimen in its holder (if such data is available)\nor record changes to the lens excitations caused or apertures used.\nAlthough current microscopes are usually equipped with stabilization\nsystems for many of the individual components, it can still be useful\nto store time-dependent data in detail.\n\nAnother reason if not a need for more finely granularizable options for\nstoring time-dependent data, is that over the course of a session one may\nreconfigure the microscope. What is a reconfiguration? This could be the\nchange of an aperture mode because a scientist may first collect an image\nwith some aperture and then choose a different one. As the aperture affects\nthe electron beam it will affect the system.\n\nLet aside for a moment the technology and business models, an EM could be\nmonitored (and will likely become so more in the future) for streaming out\nspatio-temporal details about its components, locations of objects\nand eventually applied stimuli and positioning of the specimen.\n\nSome snapshot or integrated data from this stream are relevant for\nunderstanding signal genesis and electron/ion beam paths. In such a generic\ncase it might be necessary to sync these streaming data with those intervals\nin time when specific measurements are taken (spectra collected,\nimages taken, diffraction images indexed on-the-fly).\n\nTheoretically, an instrument and specimen should be considered as dynamic.\nScientists often report or feel (difficult to quantify) observations that\nmicroscopes *perform differently* across sessions, without sometimes being\nable to identify clear root causes. Users of the instrument may consider\nsuch conditions impractical and thus either abort their session or try to\nbring the microscope first into a state where conditions are considered\nstable and of high enough quality for collecting data.\n\nIn all these cases it is practical to store time-dependent data of the\ninstrument state not in the respective instrument component groups\nof the top-level NXinstrument but in a sort of a log of event data.\nThis is the idea behind the NXevent_data_em snapshot containers.\n\nThe base class requires a start time and an optional end time.\nThe end time should be added to represent a time interval\n(remind the idea of the instrument state stream) during which the\nscientist considered the microscope (especially ebeam and specimen)\nas stable enough.\n\nFor specific simulation purposes, mainly in an effort to digitally repeat\nor simulate the experiment, it is tempting to consider dynamics of the\ninstrument, implemented as time-dependent functional descriptions of\ne.g. lens excitations, beam shape functions, trajectories of groups of\nelectrons, or detector noise models.\n\nFor now the preferred strategy to handle these cases is through\ncustomizations of the specific fields within NXevent_data_em instances.\n\nAnother alternative could be to sample finer, eventually dissimilarly along\nthe time axis; however this may cause situations where an NXevent_data_em\ninstance does not contain specific measurements\n(i.e. images, spectra of scientific relevance).\n\nIn this case one should better go for a customized application definition\nwith a functional property description inside members (fields or groups)\nin NXevent_data_em instances or resort to a specific application definition\nwhich documents metadata for tracking explicitly electrons\n(with ray-tracing based descriptors/computational geometry descriptors)\nor tracking of wave bundles.\n\nThis perspective on more subtle time-dependent considerations of electron\nmicroscopy can be advantageous also for storing details of time-dependent\nadditional components that are coupled to and/or synced with instrument.\n\nExamples include cutting-edge experiments where the electron beam gets\ncoupled/excited by e.g. lasers. In this case, the laser unit should be\nregistered under the top-level NXinstrument section. Its spatio-temporal\ndetails could be stored inside respective groups of the NXinstrument.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXevent-data-em-set.html#nxevent-data-em-set-event-data-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXevent_data_em", + "nx_type": "NXevent_data_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/42" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 44, + "m_parent_sub_section": "section_definitions", + "name": "NXfermi_chopper", + "description": "A Fermi chopper, possibly with curved slits.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXfermi_chopper", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Fermi chopper type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_speed", + "description": "chopper rotation speed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-rotation-speed-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_speed", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "radius", + "description": "radius of chopper", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-radius-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "radius", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "slit", + "description": "width of an individual slit", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-slit-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "slit", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "r_slit", + "description": "radius of curvature of slits", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-r-slit-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "r_slit", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "number", + "description": "number of slits", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "number", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "height", + "description": "input beam height", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-height-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "height", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "width", + "description": "input beam width", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-width-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "width", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "distance. Note, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "Wavelength transmitted by chopper", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy selected", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "absorbing_material", + "description": "absorbing material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-absorbing-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "absorbing_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "transmitting_material", + "description": "transmitting material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-transmitting-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "transmitting_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a fermi chopper.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/44/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/44/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/44/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "geometry of the fermi chopper", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the chopper and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfermi-chopper.html#nxfermi-chopper-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 45, + "m_parent_sub_section": "section_definitions", + "name": "NXfilter", + "description": "For band pass beam filters.\n\nIf uncertain whether to use :ref:`NXfilter` (band-pass filter)\nor :ref:`NXattenuator` (reduces beam intensity), then use \n:ref:`NXattenuator`.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXfilter", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Composition of the filter. Chemical formula can be specified separately.\n\nThis field was changed (2010-11-17) from an enumeration to\na string since common usage showed a wider variety of use\nthan a simple list. These are the items in the list at \nthe time of the change: Beryllium | Pyrolytic Graphite |\nGraphite | Sapphire | Silicon | Supermirror.\n ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "status", + "description": "position with respect to in or out of the beam (choice of only \"in\" or \"out\")", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-status-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "status", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "in", + "out" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "average/nominal filter temperature", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "thickness", + "description": "Thickness of the filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "density", + "description": "mass density of the filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "description": "The chemical formula specified using CIF conventions.\nAbbreviated version of CIF standard: \n\n* Only recognized element symbols may be used.\n* Each element symbol is followed by a 'count' number. A count of '1' may be omitted.\n* A space or parenthesis must separate each cluster of (element symbol + count).\n* Where a group of elements is enclosed in parentheses, the multiplier for the \n group must follow the closing parentheses. That is, all element and group \n multipliers are assumed to be printed as subscripted numbers.\n* Unless the elements are ordered in a manner that corresponds to their chemical \n structure, the order of the elements within any group or moiety depends on \n whether or not carbon is present.\n* If carbon is present, the order should be: \n\n * C, then H, then the other elements in alphabetical order of their symbol. \n * If carbon is not present, the elements are listed purely in alphabetic order of their symbol. \n \n* This is the *Hill* system used by Chemical Abstracts.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-chemical-formula-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "chemical_formula", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "unit_cell_a", + "description": "Unit cell lattice parameter: length of side a", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-unit-cell-a-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_a", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "unit_cell_b", + "description": "Unit cell lattice parameter: length of side b", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-unit-cell-b-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_b", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "unit_cell_c", + "description": "Unit cell lattice parameter: length of side c", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-unit-cell-c-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_c", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "unit_cell_alpha", + "description": "Unit cell lattice parameter: angle alpha", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-unit-cell-alpha-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_alpha", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "unit_cell_beta", + "description": "Unit cell lattice parameter: angle beta", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-unit-cell-beta-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_beta", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "unit_cell_gamma", + "description": "Unit cell lattice parameter: angle gamma", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-unit-cell-gamma-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_gamma", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "unit_cell_volume", + "description": "Unit cell", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-unit-cell-volume-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_volume", + "nx_units": "NX_VOLUME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "[volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "orientation_matrix", + "description": "Orientation matrix of single crystal filter using Busing-Levy convention:\nW. R. Busing and H. A. Levy (1967). Acta Cryst. 22, 457-464", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-orientation-matrix-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "orientation_matrix", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp", + 3, + 3 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "m_value", + "description": "m value of supermirror filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-m-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "m_value", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "substrate_material", + "description": "substrate material of supermirror filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-substrate-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "substrate_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "substrate_thickness", + "description": "substrate thickness of supermirror filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-substrate-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "coating_material", + "description": "coating material of supermirror filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-coating-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "coating_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "substrate_roughness", + "description": "substrate roughness (RMS) of supermirror filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-substrate-roughness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_roughness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "coating_roughness", + "description": "coating roughness (RMS) of supermirror filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-coating-roughness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "coating_roughness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a filter.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/45/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "transmission", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/45/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "temperature_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/45/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "sensor_type", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/45/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/45/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/45/inner_section_definitions/5", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "Geometry of the filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to filter the beamstop and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "transmission", + "description": "Wavelength transmission profile of filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-transmission-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "transmission", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "temperature_log", + "description": "Linked temperature_log for the filter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-temperature-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "temperature_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "sensor_type", + "description": "Sensor(s)used to monitor the filter temperature", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-sensor-type-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sensor_type", + "nx_type": "NXsensor", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/111" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfilter.html#nxfilter-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 46, + "m_parent_sub_section": "section_definitions", + "name": "NXflipper", + "description": "A spin flipper.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXflipper", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "coil", + "current-sheet" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "flip_turns", + "description": "Linear density of turns (such as number of turns/cm) in flipping field coils", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-flip-turns-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "flip_turns", + "nx_units": "NX_PER_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "comp_turns", + "description": "Linear density of turns (such as number of turns/cm) in compensating field coils", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-comp-turns-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "comp_turns", + "nx_units": "NX_PER_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "guide_turns", + "description": "Linear density of turns (such as number of turns/cm) in guide field coils", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-guide-turns-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "guide_turns", + "nx_units": "NX_PER_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "flip_current", + "description": "Flipping field coil current in \"on\" state\"", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-flip-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "flip_current", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "comp_current", + "description": "Compensating field coil current in \"on\" state\"", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-comp-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "comp_current", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "guide_current", + "description": "Guide field coil current in \"on\" state", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-guide-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "guide_current", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "thickness", + "description": "thickness along path of neutron travel", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a spin flipper.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/46/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXflipper.html#nxflipper-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 47, + "m_parent_sub_section": "section_definitions", + "name": "NXfluo", + "description": "This is an application definition for raw data from an X-ray fluorescence experiment", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXfluo", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/47/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXfluo" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/47/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/47/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/47/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/47/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/47/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "monochromator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/47/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "fluorescence", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/47/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "monochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "monochromator", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "wavelength selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-monochromator-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "fluorescence", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-fluorescence-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "fluorescence", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-fluorescence-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nE" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energy", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-instrument-fluorescence-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nE" + ], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-monitor-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXfluo.html#nxfluo-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 48, + "m_parent_sub_section": "section_definitions", + "name": "NXfresnel_zone_plate", + "description": "A fresnel zone plate", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXfresnel_zone_plate", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "focus_parameters", + "description": "list of polynomial coefficients describing the focal length of the zone plate, in increasing powers of photon energy,\nthat describes the focal length of the zone plate (in microns) at an X-ray photon energy (in electron volts).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-focus-parameters-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "focus_parameters", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "outer_diameter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-outer-diameter-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "outer_diameter", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "outermost_zone_width", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-outermost-zone-width-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "outermost_zone_width", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "central_stop_diameter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-central-stop-diameter-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "central_stop_diameter", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "fabrication", + "description": "how the zone plate was manufactured", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-fabrication-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "fabrication", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "etched", + "plated", + "zone doubled", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "zone_height", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-zone-height-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "zone_height", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "zone_material", + "description": "Material of the zones themselves", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-zone-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "zone_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "zone_support_material", + "description": "Material present between the zones. This is usually only present for the \"zone doubled\" fabrication process", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-zone-support-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "zone_support_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "central_stop_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-central-stop-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "central_stop_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "central_stop_thickness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-central-stop-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "central_stop_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "mask_thickness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-mask-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mask_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "mask_material", + "description": "If no mask is present, set mask_thickness to 0 and omit the mask_material field", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-mask-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mask_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "support_membrane_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-support-membrane-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "support_membrane_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "support_membrane_thickness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-support-membrane-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "support_membrane_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a fresnel zone plate.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/48/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "\"Engineering\" position of the fresnel zone plate\n\nThis is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXfresnel-zone-plate.html#nxfresnel-zone-plate-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 49, + "m_parent_sub_section": "section_definitions", + "name": "NXgeometry", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgeometry.html#nxgeometry-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Optional description/label. Probably only present if we are\nan additional reference point for components rather than the\nlocation of a real component.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgeometry.html#nxgeometry-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "component_index", + "description": "Position of the component along the beam path. The sample is at 0, components upstream\nhave negative component_index, components downstream have positive\ncomponent_index.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgeometry.html#nxgeometry-component-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "component_index", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SHAPE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/49/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSLATION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/49/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "ORIENTATION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/49/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXshape", + "description": "shape/size information of component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgeometry.html#nxgeometry-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXshape", + "nx_type": "NXshape", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtranslation", + "description": "translation of component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgeometry.html#nxgeometry-translation-group" + ], + "more": { + "nx_kind": "group", + "nx_type": "NXtranslation", + "nx_optional": true + }, + "base_sections": [ + "/packages/18/section_definitions/139" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXorientation", + "description": "orientation of component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgeometry.html#nxgeometry-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_type": "NXorientation", + "nx_optional": true + }, + "base_sections": [ + "/packages/18/section_definitions/86" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 50, + "m_parent_sub_section": "section_definitions", + "name": "NXgrating", + "description": "A diffraction grating, as could be used in a soft X-ray monochromator", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgrating", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "angles", + "description": "Blaze or trapezoidal angles, with the angle of the upstream facing edge listed first. Blazed gratings can be identified by the low value of the first-listed angle.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-angles-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "angles", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "period", + "description": "List of polynomial coefficients describing the spatial separation of lines/grooves as a function of position along the grating, in increasing powers of position. Gratings which do not have variable line spacing will only have a single coefficient (constant).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-period-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "period", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "duty_cycle", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-duty-cycle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duty_cycle", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "depth", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-depth-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "depth", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "diffraction_order", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-diffraction-order-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "diffraction_order", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "deflection_angle", + "description": "Angle between the incident beam and the utilised outgoing beam.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-deflection-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "deflection_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "interior_atmosphere", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-interior-atmosphere-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "interior_atmosphere", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "vacuum", + "helium", + "argon" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "substrate_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-substrate-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "substrate_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "substrate_density", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-substrate-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "substrate_thickness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-substrate-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "coating_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-coating-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "coating_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "substrate_roughness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-substrate-roughness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_roughness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "coating_roughness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-coating-roughness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "coating_roughness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "layer_thickness", + "description": "An array describing the thickness of each layer", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-layer-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "layer_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a bending grating.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/50/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "figure_data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/50/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/50/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/50/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "A NXshape group describing the shape of the mirror", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-shape-group" + ], + "deprecated": "Use NXoff_geometry to describe the shape of grating", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "figure_data", + "description": "Numerical description of the surface figure of the mirror.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-figure-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "figure_data", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "\"Engineering\" position of the grating\nTransformations used by this component to define its position and orientation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXgrating.html#nxgrating-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 51, + "m_parent_sub_section": "section_definitions", + "name": "NXguide", + "description": "A neutron optical element to direct the path of the beam.\n\n:ref:`NXguide` is used by neutron instruments to describe\na guide consists of several mirrors building a shape through which \nneutrons can be guided or directed. The simplest such form is box shaped\nalthough elliptical guides are gaining in popularity. \nThe individual parts of a guide usually have common characteristics \nbut there are cases where they are different.\nFor example, a neutron guide might consist of 2 or 4 coated walls or\na supermirror bender with multiple, coated vanes.\n\nTo describe polarizing supermirrors such as used in neutron reflection,\nit may be necessary to revise this definition of :ref:`NXguide`\nto include :ref:`NXpolarizer` and/or :ref:`NXmirror`.\n\nWhen even greater complexity exists in the definition of what\nconstitutes a *guide*, it has been suggested that :ref:`NXguide` \nbe redefined as a :ref:`NXcollection` of :ref:`NXmirror` each \nhaving their own :ref:`NXgeometry` describing their location(s).\n\nFor the more general case when describing mirrors, consider using \n:ref:`NXmirror`.\n\nNOTE: The NeXus International Advisory Committee welcomes \ncomments for revision and improvement of \nthis definition of :ref:`NXguide`.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXguide", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "A description of this particular instance of ``NXguide``.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "incident_angle", + "description": "TODO: documentation needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-incident-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "bend_angle_x", + "description": "TODO: documentation needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-bend-angle-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bend_angle_x", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "bend_angle_y", + "description": "TODO: documentation needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-bend-angle-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bend_angle_y", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "interior_atmosphere", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-interior-atmosphere-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "interior_atmosphere", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "vacuum", + "helium", + "argon" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "external_material", + "description": "external material outside substrate", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-external-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "external_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "m_value", + "description": "The ``m`` value for a supermirror, which defines the supermirror \nregime in multiples of the critical angle of Nickel.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-m-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "m_value", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "substrate_material", + "description": "TODO: documentation needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-substrate-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_material", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "substrate_thickness", + "description": "TODO: documentation needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-substrate-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "coating_material", + "description": "TODO: documentation needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-coating-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "coating_material", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "substrate_roughness", + "description": "TODO: documentation needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-substrate-roughness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_roughness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "coating_roughness", + "description": "TODO: documentation needed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-coating-roughness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "coating_roughness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "number_sections", + "description": "number of substrate sections (also called ``nsurf`` as an \nindex in the ``NXguide`` specification)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-number-sections-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "number_sections", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe entry opening of the guide lies on the reference plane. The center of the opening on that plane is\nthe reference point on the x and y axis. The reference plane is orthogonal to the z axis and is the\nreference point along the z axis. Given no bend in the guide, it is parallel with z axis and extends\nin the positive direction of the z axis.\n\n.. image:: guide/guide.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/51/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "reflectivity", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/51/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/51/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/51/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "TODO: Explain what this NXgeometry group means. What is intended here?", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the guid and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "reflectivity", + "description": "Reflectivity as function of reflecting surface and wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-reflectivity-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reflectivity", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "data" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "surface wavelength" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "surface_indices", + "variable": false, + "more": { + "nx_name": "surface_indices" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "0" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 5, + "m_parent_sub_section": "attributes", + "name": "wavelength_indices", + "variable": false, + "more": { + "nx_name": "wavelength_indices" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "reflectivity of each surface as a function of wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-reflectivity-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf", + "nwl" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "surface", + "description": "List of surfaces. Probably best to use index \nnumbers but the specification is very loose.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-reflectivity-surface-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "surface", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsurf" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "wavelengths at which reflectivity was measured", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-reflectivity-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nwl" + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXguide.html#nxguide-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 52, + "m_parent_sub_section": "section_definitions", + "name": "NXibeam_column", + "description": "Container for components of a focused-ion-beam (FIB) system.\n\nFIB capabilities turn especially scanning electron microscopes\ninto specimen preparation labs. FIB is a material preparation\ntechnique whereby portions of the sample are illuminated with a\nfocused ion beam with controlled intensity intense enough and with\nsufficient ion momentum to remove material in a controllable manner.\n\nThe fact that an electron microscope with FIB capabilities has needs a\nsecond gun with own relevant control circuits, focusing lenses, and\nother components, warrants an own base class to group these components\nand distinguish them from the lenses and components for creating and\nshaping the electron beam.\n\nFor more details about the relevant physics and application examples\nconsult the literature, for example:\n\n* `L. A. Giannuzzi et al. <https://doi.org/10.1007/b101190>`_ \n* `E. I. Prei\u00df et al. <https://link.springer.com/content/pdf/10.1557/s43578-020-00045-w.pdf>`_ \n* `J. F. Ziegler et al. <https://www.sciencedirect.com/science/article/pii/S0168583X10001862>`_ \n* `J. Lili <https://www.osti.gov/servlets/purl/924801>`_ ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-group", + "https://doi.org/10.1007/b101190", + "https://link.springer.com/content/pdf/10.1557/s43578-020-00045-w.pdf", + "https://www.sciencedirect.com/science/article/pii/S0168583X10001862", + "https://www.osti.gov/servlets/purl/924801" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXibeam_column", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/52/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "ion_gun", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/52/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/52/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "LENS_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/52/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "SENSOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/52/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "BEAM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/52/inner_section_definitions/5", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "ion_gun", + "description": "The source which creates the ion beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "ion_gun", + "nx_type": "NXsource", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias for the ion gun.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "emitter_type", + "description": "Emitter type used to create the ion beam.\n\nIf the emitter type is other, give further\ndetails in the description field.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-emitter-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "emitter_type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "liquid_metal", + "plasma", + "gas_field", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Ideally, a (globally) unique persistent identifier, link,\nor text to a resource which gives further details.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "brightness", + "description": "Average/nominal brightness", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-brightness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "brightness", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "current", + "description": "Charge current", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "current", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "voltage", + "description": "Ion acceleration voltage upon source exit and entering the vacuum flight path.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "ion_energy_profile", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-ion-energy-profile-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "ion_energy_profile", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/52/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/52/inner_section_definitions/1/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "probe", + "description": "Which ionized elements or molecular ions form the beam.\nExamples are gallium, helium, neon, argon, krypton, \nor xenon, O2+.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-probe-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "probe", + "nx_type": "NXion", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/67" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Affine transformation which detail the arrangement in the microscope relative to\nthe optical axis and beam path.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-ion-gun-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/119/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture_em", + "description": "Details of an individual aperture for electron beams.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-aperture-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture_em", + "nx_type": "NXaperture_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/2" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlens_em", + "description": "Description of an electro-magnetic lens or a compound lens.\n\nFor NXtransformations the origin of the coordinate system is placed\nin the center of the lens\n(its polepiece, pinhole, or another point of reference).\nThe origin should be specified in the NXtransformations.\n\nFor details of electro-magnetic lenses in the literature see e.g. `L. Reimer <https://doi.org/10.1007/978-3-540-38967-5>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-lens-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlens_em", + "nx_type": "NXlens_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/70" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsensor", + "description": "A sensor used to monitor an external condition \n\nThe condition itself is described in :ref:`NXenvironment`.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-sensor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsensor", + "nx_type": "NXsensor", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/111" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXbeam", + "description": "Individual characterization results for the position, shape,\nand characteristics of the ion beam.\n\nNXtransformations should be used to specify the location or position\nat which details about the ion beam are probed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXibeam-column.html#nxibeam-column-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam", + "nx_type": "NXbeam", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/7" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 53, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_adf", + "description": "Container for reporting a set of annular dark field images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_adf", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/53/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/53/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Details about how the images were processed from the detector readings.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Commercial or otherwise given name to the program which was used\nto process detector data into the adf image(s).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-process-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "adf_inner_half_angle", + "description": "Annulus inner half angle", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-process-adf-inner-half-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "adf_inner_half_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "adf_outer_half_angle", + "description": "Annulus outer half angle", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-process-adf-outer-half-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "adf_outer_half_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "Annular dark field images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "intensity", + "description": "Image intensity values.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-data-intensity-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "intensity", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_images", + "n_y", + "n_x" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "image_id", + "description": "Image identifier", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-data-image-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "image_id", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "n_images" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "ypos", + "description": "Pixel center of mass position y-coordinates.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-data-ypos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "ypos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_y" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "xpos", + "description": "Pixel center of mass position x-coordinates.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-adf.html#nximage-set-em-adf-data-xpos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "xpos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_x" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 54, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_bf", + "description": "Container for reporting a set of images taken in bright field mode.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-bf.html#nximage-set-em-bf-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_bf", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/54/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/54/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-bf.html#nximage-set-em-bf-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-bf.html#nximage-set-em-bf-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 55, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_bse", + "description": "Container for reporting a set of back-scattered electron images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-bse.html#nximage-set-em-bse-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_bse", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/55/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/55/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-bse.html#nximage-set-em-bse-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-bse.html#nximage-set-em-bse-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 56, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_chamber", + "description": "Container for images recorded with e.g. a TV camera in the microscope chamber.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-chamber.html#nximage-set-em-chamber-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_chamber", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/56/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/56/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-chamber.html#nximage-set-em-chamber-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-chamber.html#nximage-set-em-chamber-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 57, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_df", + "description": "Container for reporting a set of images taken in dark field mode.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-df.html#nximage-set-em-df-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_df", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/57/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/57/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-df.html#nximage-set-em-df-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-df.html#nximage-set-em-df-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 58, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_diffrac", + "description": "Container for reporting a set of diffraction images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-diffrac.html#nximage-set-em-diffrac-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_diffrac", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/58/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/58/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-diffrac.html#nximage-set-em-diffrac-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-diffrac.html#nximage-set-em-diffrac-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 59, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_ecci", + "description": "Container for reporting back-scattered electron channeling contrast images.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-ecci.html#nximage-set-em-ecci-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_ecci", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/59/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/59/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-ecci.html#nximage-set-em-ecci-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-ecci.html#nximage-set-em-ecci-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 60, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_kikuchi", + "description": "Electron backscatter diffraction (EBSD) Kikuchi pattern.\n\nThe container can also store data related to a post-processing of these\nKikuchi pattern, which is the backbone of orientation microscopy\nespecially in materials science and materials engineering.\n\nBased on a fuse of the `M. A. Jackson et al. <https://doi.org/10.1186/2193-9772-3-4>`_\nof the DREAM.3D community and the open H5OINA format of Oxford Instruments\n`P. Pinard et al. <https://doi.org/10.1017/S1431927621006103>`_\n\nEBSD can be used, usually with FIB/SEM microscopes, for three-dimensional\norientation microscopy. So-called serial section analyses. For a detailed\noverview of these techniques see e.g.\n\n* `M. A. Groeber et al. <https://doi.org/10.1186/2193-9772-3-5>`_ \n* `A. J. Schwartz et al. <https://doi.org/10.1007/978-1-4757-3205-4>`_ \n* `P. A. Rottman et al. <https://doi.org/10.1016/j.mattod.2021.05.003>`_ \n\nWith serial-sectioning this involves however always a sequence of\nmeasuring, milling. In this regard, each serial section (measuring) and milling\nis an own NXevent_data_em instance and thus there such a three-dimensional\ncharacterization should be stored as a set of two-dimensional data,\nwith as many NXevent_data_em instances as sections were measured.\n\nThese measured serial sectioning images need virtually always post-processing\nto arrive at the aligned and cleaned image stack respective digital\nmicrostructure representation as (a representative) volume element.\nSeveral software packages are available for this post-processing.\nFor now we do not consider metadata of these post-processing steps\nas a part of this base class.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-group", + "https://doi.org/10.1186/2193-9772-3-4", + "https://doi.org/10.1017/S1431927621006103", + "https://doi.org/10.1186/2193-9772-3-5", + "https://doi.org/10.1007/978-1-4757-3205-4", + "https://doi.org/10.1016/j.mattod.2021.05.003" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_kikuchi", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "grid_type", + "description": "Which pixel primitive shape is used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-grid-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "grid_type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "square", + "hexagon" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "step_size", + "description": "The prescribed step size. First value is for the slow changing, \nsecond value is for the fast changing dimension.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-step-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "step_size", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "calibration", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "oim", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "binning", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "hough_transformation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "profiling", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/5", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "Collected Kikuchi pattern as an image stack.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "intensity", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-data-intensity-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "intensity", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p", + "n_y", + "n_x" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "image_id", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-data-image-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "image_id", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "ypos", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-data-ypos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "ypos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_y" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "xpos", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-data-xpos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "xpos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_x" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "calibration", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-calibration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "calibration", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "oim", + "description": "OIM, orientation imaging microscopy.\nPost-processing of the Kikuchi pattern to identify orientations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "oim", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "pattern_quality", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-pattern-quality-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pattern_quality", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "pattern_center", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-pattern-center-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pattern_center", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "detector_distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "detector_distance", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "background_correction", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "band_detection", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/2/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "indexing", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/2/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "background_correction", + "description": "Details about the background correction applied to each Kikuchi pattern.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-background-correction-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "background_correction", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "band_detection", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-band-detection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "band_detection", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "How are Kikuchi bands detected", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-band-detection-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "center" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "band_contrast", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-band-detection-band-contrast-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "band_contrast", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "band_slope", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-band-detection-band-slope-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "band_slope", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "bands", + "description": "How many bands were detected in the pattern.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-band-detection-bands-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "bands", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "indexing", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "indexing", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "How are pattern being indexed?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "optimize_bd" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "min_bands", + "description": "Minimum number of bands required to index the pattern", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-min-bands-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "min_bands", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "status", + "description": "Which return value did the indexing algorithm yield for each pattern.\n\n* Details about bad pixels \n* Too high angular deviation \n* No solution \n* Not analyzed \n* Success \n* Unexpected errors ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-status-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "status", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "phase_identifier", + "description": "Labels referring to the phase_identifier for each pattern (from reflectors) that\nmatched best.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-phase-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "phase_identifier", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "mean_angular_deviation", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-mean-angular-deviation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mean_angular_deviation", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "confidence_index", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-confidence-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "confidence_index", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "reflector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/60/inner_section_definitions/2/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "reflector", + "description": "Lattice planes used as reflectors for indexing pattern\nin electron-backscatter diffraction (EBSD).\nOne collection for each reflector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reflector", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "unit_cell_abc", + "description": "Crystallography unit cell parameters a, b, and c", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-unit-cell-abc-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_abc", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "unit_cell_alphabetagamma", + "description": "Crystallography unit cell parameters alpha, beta, and gamma", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-unit-cell-alphabetagamma-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_alphabetagamma", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "unit_cell_class", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-unit-cell-class-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "unit_cell_class", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "triclinic", + "monoclinic", + "orthorhombic", + "tetragonal", + "rhombohedral", + "hexagonal", + "cubic" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "space_group", + "description": "Crystallographic space group", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-space-group-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "space_group", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "laue_group", + "description": "Laue group", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-laue-group-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "laue_group", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "phase_identifier", + "description": "Numeral identifier for each phase. The value 0 is reversed for the unknown\nphase.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-phase-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "phase_identifier", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "phase_name", + "description": "Name of the phase/alias.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-phase-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "phase_name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "number_of_reflectors", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-number-of-reflectors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "number_of_reflectors", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "miller_indices", + "description": "Miller indices :math:`(hkl)[uvw]`.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-oim-indexing-reflector-miller-indices-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "miller_indices", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_reflectors", + 6 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "binning", + "description": "An unvalidated set of terms, such as the description of a beam line.\n\nUse :ref:`NXcollection` to gather together any set of terms.\nThe original suggestion is to use this as a container \nclass for the description of a beamline.\n\nFor NeXus validation, :ref:`NXcollection` will always generate \na warning since it is always an optional group. \nAnything (groups, fields, or attributes) placed in\nan :ref:`NXcollection` group will not be validated.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-binning-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "binning", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Free-text description for instrument specific settings", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-binning-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "binning", + "description": "How is the camera signal binned.\nFirst the number of pixel along the slow direction.\nSecond the number of pixel along the fast direction.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-binning-binning-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "binning", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + 2 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "hough_transformation", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-hough-transformation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "hough_transformation", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "resolution", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-hough-transformation-resolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "resolution", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "profiling", + "description": "An unvalidated set of terms, such as the description of a beam line.\n\nUse :ref:`NXcollection` to gather together any set of terms.\nThe original suggestion is to use this as a container \nclass for the description of a beamline.\n\nFor NeXus validation, :ref:`NXcollection` will always generate \na warning since it is always an optional group. \nAnything (groups, fields, or attributes) placed in\nan :ref:`NXcollection` group will not be validated.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-profiling-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "profiling", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "acquisition_speed", + "description": "Average number of patterns taken on average.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-profiling-acquisition-speed-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "acquisition_speed", + "nx_units": "NX_FREQUENCY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "acquisition_time", + "description": "Wall-clock time the acquisition took.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-profiling-acquisition-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "acquisition_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "hit_rate", + "description": "Fraction of successfully indexed pattern of the set.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-kikuchi.html#nximage-set-em-kikuchi-profiling-hit-rate-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "hit_rate", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 61, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_ronchigram", + "description": "Container for reporting a set of images related to a ronchigram.\n\nRonchigrams are specifically used in transmission electron microscopy\nto judge the settings for the aberration corrections and alignment.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-ronchigram.html#nximage-set-em-ronchigram-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_ronchigram", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/61/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/61/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-ronchigram.html#nximage-set-em-ronchigram-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-ronchigram.html#nximage-set-em-ronchigram-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 62, + "m_parent_sub_section": "section_definitions", + "name": "NXimage_set_em_se", + "description": "Container for reporting a set of secondary electron images.\n\nSecondary electron images are one of the most important signal especially\nfor scanning electron microscopy in materials science and engineering, for\nanalyses of surface topography, getting an overview of the analysis region,\nor fractography.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXimage_set_em_se", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "roi", + "description": "Physical dimensions of the region-of-interest on \nthe specimen surface which the image covers.\nThe first and second number are the coordinates for the \nminimum edge, the third and fourth number are the coordinates\nfor the maximum edge of the rectangular ROI.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-roi-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "roi", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_images", + 4 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "dwell_time", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-dwell-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "dwell_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "number_of_frames_averaged", + "description": "How many frames were averaged to obtain the image.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-number-of-frames-averaged-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "number_of_frames_averaged", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "n_images" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "bias_voltage", + "description": "Bias voltage applied to the e.g. Faraday cage in front of the\nSE detector to attract or repell secondary electrons below\na specific kinetic energy.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-bias-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bias_voltage", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/62/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "OPTICAL_SYSTEM_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/62/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "scan_rotation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/62/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "tilt_correction", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/62/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "dynamic_focus", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/62/inner_section_definitions/4", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "Collected secondary electron images (eventually as an image stack).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "intensity", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-data-intensity-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "intensity", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p", + "n_y", + "n_x" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "image_id", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-data-image-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "image_id", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_p" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "ypos", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-data-ypos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "ypos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_y" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "xpos", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-data-xpos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "xpos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_x" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoptical_system_em", + "description": "Container to store relevant settings affecting beam path,\nmagnification, and working_distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-optical-system-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoptical_system_em", + "nx_type": "NXoptical_system_em", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/85" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "scan_rotation", + "description": "Scan rotation is an option offer by most control software.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-scan-rotation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "scan_rotation", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "tilt_correction", + "description": "Tilt correction is an option offered by most control software of SEMs\nto apply an on-the-fly processing of the image to correct for\nthe excursion of objects when characterized with SE images\non samples whose surface normal is tilted about an axis perpendicular\nto the optical axis.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-tilt-correction-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "tilt_correction", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "active", + "description": "Was the option switched active or not.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-tilt-correction-active-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "active", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "dynamic_focus", + "description": "Dynamic focus is an option offered by most control software of SEMs\nto keep the image also focused when probing locations on the specimens\nbeyond those for which the lens system was calibrated.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-dynamic-focus-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "dynamic_focus", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "active", + "description": "Was the option switched active or not.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXimage-set-em-se.html#nximage-set-em-se-dynamic-focus-active-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "active", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 63, + "m_parent_sub_section": "section_definitions", + "name": "NXindirecttof", + "description": "This is a application definition for raw data from a direct geometry TOF spectrometer", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXindirecttof", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXtofraw" + }, + "base_sections": [ + "/packages/18/section_definitions/133" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/63/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/133/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXindirecttof" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/63/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "analyser", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/63/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "analyser", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-instrument-analyser-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "analyser", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "analyzed energy ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-instrument-analyser-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "polar angle towards sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-instrument-analyser-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "distance from sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXindirecttof.html#nxindirecttof-entry-instrument-analyser-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 64, + "m_parent_sub_section": "section_definitions", + "name": "NXinsertion_device", + "description": "An insertion device, as used in a synchrotron light source.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinsertion_device", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "undulator", + "wiggler" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "gap", + "description": "separation between opposing pairs of magnetic poles", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-gap-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "gap", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "taper", + "description": "angular of gap difference between upstream and downstream ends of the insertion device", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-taper-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "taper", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "phase", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-phase-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "phase", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "poles", + "description": "number of poles", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-poles-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "poles", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "magnetic_wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-magnetic-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "magnetic_wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "k", + "description": "beam displacement parameter", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-k-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "k", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "length", + "description": "length of insertion device", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "length", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "power", + "description": "total power delivered by insertion device", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-power-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "power", + "nx_units": "NX_POWER", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[power]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy of peak intensity in output spectrum", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "bandwidth", + "description": "bandwidth of peak energy", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-bandwidth-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bandwidth", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "harmonic", + "description": "harmonic number of peak", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-harmonic-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "harmonic", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a insertion device.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "spectrum", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/64/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/64/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/64/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/64/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "spectrum", + "description": "spectrum of insertion device", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-spectrum-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "spectrum", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "\"Engineering\" position of insertion device", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the device and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinsertion-device.html#nxinsertion-device-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 65, + "m_parent_sub_section": "section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of instrument", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "ATTENUATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "BEAM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "BEAM_STOP", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "BENDING_MAGNET", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "COLLIMATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "CAPILLARY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "CRYSTAL", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/8", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR_GROUP", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/10", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "DISK_CHOPPER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "EVENT_DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/12", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "FERMI_CHOPPER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/13", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "FILTER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/14", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "FLIPPER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/15", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "GUIDE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/16", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "INSERTION_DEVICE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/17", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "MIRROR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/18", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "MODERATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/19", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 20, + "m_parent_sub_section": "sub_sections", + "name": "MONOCHROMATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/20", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 21, + "m_parent_sub_section": "sub_sections", + "name": "POLARIZER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/21", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 22, + "m_parent_sub_section": "sub_sections", + "name": "POSITIONER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/22", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 23, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/23", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 24, + "m_parent_sub_section": "sub_sections", + "name": "DIFFRACTOMETER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/24", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 25, + "m_parent_sub_section": "sub_sections", + "name": "VELOCITY_SELECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/25", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 26, + "m_parent_sub_section": "sub_sections", + "name": "XRAYLENS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/65/inner_section_definitions/26", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture", + "description": "A beamline aperture. This group is deprecated, use NXslit instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-aperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture", + "nx_type": "NXaperture", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXattenuator", + "description": "A device that reduces the intensity of a beam by attenuation.\n\nIf uncertain whether to use :ref:`NXfilter` (band-pass filter)\nor :ref:`NXattenuator` (reduces beam intensity), then choose \n:ref:`NXattenuator`.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-attenuator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXattenuator", + "nx_type": "NXattenuator", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXbeam", + "description": "Properties of the neutron or X-ray beam at a given location. \n\nThis group is intended to be referenced\nby beamline component groups within the :ref:`NXinstrument` group or by the :ref:`NXsample` group. This group is\nespecially valuable in storing the results of instrument simulations in which it is useful\nto specify the beam profile, time distribution etc. at each beamline component. Otherwise,\nits most likely use is in the :ref:`NXsample` group in which it defines the results of the neutron\nscattering by the sample, e.g., energy transfer, polarizations.\n\nNote that incident_wavelength and related fields can be a scalar values or arrays, depending on the use case.\nTo support these use cases, the explicit dimensionality of these fields is not specified, but it can be inferred\nby the presense of and shape of accompanying fields, such as incident_wavelength_weights for a polychromatic beam.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam", + "nx_type": "NXbeam", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/7" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXbeam_stop", + "description": "A device that blocks the beam completely, usually to protect a detector. \n\nBeamstops and their positions are important for SANS\nand SAXS experiments.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-beam-stop-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam_stop", + "nx_type": "NXbeam_stop", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXbending_magnet", + "description": "A bending magnet", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-bending-magnet-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbending_magnet", + "nx_type": "NXbending_magnet", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollimator", + "description": "A beamline collimator.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-collimator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollimator", + "nx_type": "NXcollimator", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/17" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollection", + "description": "An unvalidated set of terms, such as the description of a beam line.\n\nUse :ref:`NXcollection` to gather together any set of terms.\nThe original suggestion is to use this as a container \nclass for the description of a beamline.\n\nFor NeXus validation, :ref:`NXcollection` will always generate \na warning since it is always an optional group. \nAnything (groups, fields, or attributes) placed in\nan :ref:`NXcollection` group will not be validated.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-collection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcapillary", + "description": "A capillary lens to focus the X-ray beam.\n\nBased on information provided by Gerd Wellenreuther (DESY).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-capillary-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcapillary", + "nx_type": "NXcapillary", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/12" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcrystal", + "description": "A crystal monochromator or analyzer. \n\nPermits double bent\nmonochromator comprised of multiple segments with anisotropic \nGaussian mosaic.\n\nIf curvatures are set to zero or are absent, array \nis considered to be flat.\n\nScattering vector is perpendicular to surface. Crystal is oriented\nparallel to beam incident on crystal before rotation, and lies in\nvertical plane.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-crystal-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcrystal", + "nx_type": "NXcrystal", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/21" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector_group", + "description": "Logical grouping of detectors. When used, describes a group of detectors.\n\nEach detector is represented as an NXdetector \nwith its own detector data array. Each detector data array\nmay be further decomposed into array sections by use of\nNXdetector_module groups. Detectors can be grouped logically\ntogether using NXdetector_group. Groups can be further grouped\nhierarchically in a single NXdetector_group (for example, if\nthere are multiple detectors at an endstation or multiple \nendstations at a facility). Alternatively, multiple \nNXdetector_groups can be provided.\n\nThe groups are defined hierarchically, with names given\nin the group_names field, unique identifying indices given\nin the field group_index, and the level in the hierarchy\ngiven in the group_parent field. For example if an x-ray\ndetector group, DET, consists of four detectors in a\nrectangular array::\n \n DTL DTR\n DLL DLR\n \nWe could have::\n \n group_names: [\"DET\", \"DTL\", \"DTR\", \"DLL\", \"DLR\"]\n group_index: [1, 2, 3, 4, 5]\n group_parent: [-1, 1, 1, 1, 1]", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-detector-group-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector_group", + "nx_type": "NXdetector_group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/28" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdisk_chopper", + "description": "A device blocking the beam in a temporal periodic pattern.\n\nA disk which blocks the beam but has one or more slits to periodically\nlet neutrons through as the disk rotates. Often used in pairs, one\nNXdisk_chopper should be defined for each disk.\n\nThe rotation of the disk is commonly monitored by recording a timestamp for\neach full rotation of disk, by having a sensor in the stationary disk housing\nsensing when it is aligned with a feature (such as a magnet) on the disk.\nWe refer to this below as the \"top-dead-center signal\".\n\nAngles and positive rotation speeds are measured in an anticlockwise\ndirection when facing away from the source.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-disk-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdisk_chopper", + "nx_type": "NXdisk_chopper", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/31" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXevent_data", + "description": "NXevent_data is a special group for storing data from neutron\ndetectors in event mode. In this mode, the detector electronics\nemits a stream of detectorID, timestamp pairs. With detectorID\ndescribing the detector element in which the neutron was detected\nand timestamp the timestamp at which the neutron event was\ndetected. In NeXus detectorID maps to event_id, event_time_offset\nto the timestamp.\n\nAs this kind of data is common at pulsed neutron\nsources, the timestamp is almost always relative to the start of a\nneutron pulse. Thus the pulse timestamp is recorded too together\nwith an index in the event_id, event_time_offset pair at which data for\nthat pulse starts. At reactor source the same pulsed data effect\nmay be achieved through the use of choppers or in stroboscopic\nmeasurement setups. \n\nIn order to make random access to timestamped data\nfaster there is an optional array pair of\ncue_timestamp_zero and cue_index. The cue_timestamp_zero will\ncontain courser timestamps then in the time array, say\nevery five minutes. The cue_index will then contain the\nindex into the event_id,event_time_offset pair of arrays for that\ncourser cue_timestamp_zero. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-event-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXevent_data", + "nx_type": "NXevent_data", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/41" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXfermi_chopper", + "description": "A Fermi chopper, possibly with curved slits.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-fermi-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXfermi_chopper", + "nx_type": "NXfermi_chopper", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/44" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXfilter", + "description": "For band pass beam filters.\n\nIf uncertain whether to use :ref:`NXfilter` (band-pass filter)\nor :ref:`NXattenuator` (reduces beam intensity), then use \n:ref:`NXattenuator`.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-filter-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXfilter", + "nx_type": "NXfilter", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/45" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXflipper", + "description": "A spin flipper.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-flipper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXflipper", + "nx_type": "NXflipper", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/46" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXguide", + "description": "A neutron optical element to direct the path of the beam.\n\n:ref:`NXguide` is used by neutron instruments to describe\na guide consists of several mirrors building a shape through which \nneutrons can be guided or directed. The simplest such form is box shaped\nalthough elliptical guides are gaining in popularity. \nThe individual parts of a guide usually have common characteristics \nbut there are cases where they are different.\nFor example, a neutron guide might consist of 2 or 4 coated walls or\na supermirror bender with multiple, coated vanes.\n\nTo describe polarizing supermirrors such as used in neutron reflection,\nit may be necessary to revise this definition of :ref:`NXguide`\nto include :ref:`NXpolarizer` and/or :ref:`NXmirror`.\n\nWhen even greater complexity exists in the definition of what\nconstitutes a *guide*, it has been suggested that :ref:`NXguide` \nbe redefined as a :ref:`NXcollection` of :ref:`NXmirror` each \nhaving their own :ref:`NXgeometry` describing their location(s).\n\nFor the more general case when describing mirrors, consider using \n:ref:`NXmirror`.\n\nNOTE: The NeXus International Advisory Committee welcomes \ncomments for revision and improvement of \nthis definition of :ref:`NXguide`.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-guide-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXguide", + "nx_type": "NXguide", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/51" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinsertion_device", + "description": "An insertion device, as used in a synchrotron light source.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-insertion-device-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinsertion_device", + "nx_type": "NXinsertion_device", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/64" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmirror", + "description": "A beamline mirror or supermirror.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-mirror-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmirror", + "nx_type": "NXmirror", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/75" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmoderator", + "description": "A neutron moderator", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-moderator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmoderator", + "nx_type": "NXmoderator", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/76" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonochromator", + "nx_type": "NXmonochromator", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpolarizer", + "description": "A spin polarizer.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-polarizer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpolarizer", + "nx_type": "NXpolarizer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/91" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpositioner", + "description": "A generic positioner such as a motor or piezo-electric transducer. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-positioner-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpositioner", + "nx_type": "NXpositioner", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/92" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 24, + "m_parent_sub_section": "inner_section_definitions", + "name": "DIFFRACTOMETER", + "description": "Collection of axis-based translations and rotations to describe a geometry.\nMay also contain axes that do not move and therefore do not have a transformation\ntype specified, but are useful in understanding coordinate frames within which\ntransformations are done, or in documenting important directions, such as the\ndirection of gravity.\n\nA nested sequence of transformations lists the translation and rotation steps\nneeded to describe the position and orientation of any movable or fixed device.\n\nThere will be one or more transformations (axes) defined by one or more fields\nfor each transformation. Transformations can also be described by NXlog groups when\nthe values change with time. The all-caps name ``AXISNAME`` designates the\nparticular axis generating a transformation (e.g. a rotation axis or a translation\naxis or a general axis). The attribute ``units=\"NX_TRANSFORMATION\"`` designates the\nunits will be appropriate to the ``transformation_type`` attribute:\n\n* ``NX_LENGTH`` for ``translation``\n* ``NX_ANGLE`` for ``rotation``\n* ``NX_UNITLESS`` for axes for which no transformation type is specified\n\nThis class will usually contain all axes of a sample stage or goniometer or\na detector. The NeXus default McSTAS coordinate frame is assumed, but additional\nuseful coordinate axes may be defined by using axes for which no transformation\ntype has been specified.\n\nThe entry point (``depends_on``) will be outside of this class and point to a\nfield in here. Following the chain may also require following ``depends_on``\nlinks to transformations outside, for example to a common base table. If\na relative path is given, it is relative to the group enclosing the ``depends_on``\nspecification.\n\nFor a chain of three transformations, where :math:`T_1` depends on :math:`T_2`\nand that in turn depends on :math:`T_3`, the final transformation :math:`T_f` is\n\n.. math:: T_f = T_3 T_2 T_1\n\nIn explicit terms, the transformations are a subset of affine transformations\nexpressed as 4x4 matrices that act on homogeneous coordinates, :math:`w=(x,y,z,1)^T`.\n\nFor rotation and translation,\n\n.. math:: T_r &= \\begin{pmatrix} R & o \\\\ 0_3 & 1 \\end{pmatrix} \\\\ T_t &= \\begin{pmatrix} I_3 & t + o \\\\ 0_3 & 1 \\end{pmatrix}\n\nwhere :math:`R` is the usual 3x3 rotation matrix, :math:`o` is an offset vector,\n:math:`0_3` is a row of 3 zeros, :math:`I_3` is the 3x3 identity matrix and\n:math:`t` is the translation vector.\n\n:math:`o` is given by the ``offset`` attribute, :math:`t` is given by the ``vector``\nattribute multiplied by the field value, and :math:`R` is defined as a rotation\nabout an axis in the direction of ``vector``, of angle of the field value.\n\nNOTE\n\nOne possible use of ``NXtransformations`` is to define the motors and\ntransformations for a diffractometer (goniometer). Such use is mentioned\nin the ``NXinstrument`` base class. Use one ``NXtransformations`` group \nfor each diffractometer and name the group appropriate to the device.\nCollecting the motors of a sample table or xyz-stage in an NXtransformations\ngroup is equally possible.\n\n\nFollowing the section on the general dscription of axis in NXtransformations is a section which\ndocuments the fields commonly used within NeXus for positioning purposes and their meaning. Whenever\nthere is a need for positioning a beam line component please use the existing names. Use as many fields\nas needed in order to position the component. Feel free to add more axis if required. In the description\ngiven below, only those atttributes which are defined through the name are spcified. Add the other attributes\nof the full set:\n\n* vector\n* offset\n* transformation_type\n* depends_on\n\nas needed.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-diffractometer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "DIFFRACTOMETER", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 25, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXvelocity_selector", + "description": "A neutron velocity selector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-velocity-selector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXvelocity_selector", + "nx_type": "NXvelocity_selector", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/141" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 26, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXxraylens", + "description": "An X-ray lens, typically at a synchrotron X-ray beam line.\n\nBased on information provided by Gerd Wellenreuther (DESY).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXinstrument.html#nxinstrument-xraylens-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXxraylens", + "nx_type": "NXxraylens", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/150" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 66, + "m_parent_sub_section": "section_definitions", + "name": "NXinteraction_vol_em", + "description": "Base class for storing details about a modelled shape of interaction volume.\n\nThe interaction volume is mainly relevant in scanning electron microscopy\nwhen the sample is thick enough so that the beam is unable to illuminate\nthrough the specimen.\nComputer models like Monte Carlo or molecular dynamics / electron beam\ninteraction simulations can be used to qualify and/or quantify the shape of\nthe interaction volume.\n\nExplicit or implicit descriptions are possible.\n\n* An implicit description is via a set of electron/specimen interactions \n represented ideally as trajectory data from the computer simulation. \n* An explicit description is via an iso-contour surface using either \n a simulation grid or a triangulated surface mesh of the approximated \n iso-contour surface evaluated at specific threshold values. \n Iso-contours could be computed from electron or particle fluxes through \n an imaginary control surface (the iso-surface). \n Threshold values can be defined by particles passing through a unit control \n volume (electrons) or energy-levels (e.g. the case of X-rays). \n Details depend on the model. \n* Another explicit description is via theoretical models which may \n be relevant e.g. for X-ray spectroscopy \n\nFurther details on how the interaction volume can be quantified\nis available in the literature for example:\n\n* `S. Richter et al. <https://doi.org/10.1088/1757-899X/109/1/012014>`_ \n* `J. B\u00fcnger et al. <https://doi.org/10.1017/S1431927622000083>`_ ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXinteraction-vol-em.html#nxinteraction-vol-em-group", + "https://doi.org/10.1088/1757-899X/109/1/012014", + "https://doi.org/10.1017/S1431927622000083" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinteraction_vol_em", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/66/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/66/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXinteraction-vol-em.html#nxinteraction-vol-em-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXinteraction-vol-em.html#nxinteraction-vol-em-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 67, + "m_parent_sub_section": "section_definitions", + "name": "NXion", + "description": "Set of atoms of a molecular ion or fragment in e.g. ToF mass spectrometry.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXion.html#nxion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXion", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "ion_type", + "description": "Ion type (ion species) identifier. The identifier zero\nis reserved for the special unknown ion type.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXion.html#nxion-ion-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "ion_type", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "isotope_vector", + "description": "A vector of isotope hash values.\nThese values have to be stored in an array, sorted in decreasing order.\nThe array is filled with zero hash values indicating unused places.\nThe individual hash values are built with the following hash function:\n\nThe hash value :math:`H` is :math:`H = Z + N*256` with :math:`Z`\nthe number of protons and :math:`N` the number of neutrons\nof each isotope respectively.\n\nZ and N have to be 8-bit unsigned integers.\nFor the rationale behind this `M. K\u00fchbach et al. (2021) <https://doi.org/10.1017/S1431927621012241>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXion.html#nxion-isotope-vector-field", + "https://doi.org/10.1017/S1431927621012241" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "isotope_vector", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "n_ivecmax" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "charge_state", + "description": "Signed charge state of the ion in multiples of electron charge.\n\nOnly positive values will be measured in atom probe microscopy as the\nions are accelerated by a negatively signed bias electric field.\nIn the case that the charge state is not explicitly recoverable,\nthe value should be set to zero.\n\nIn atom probe microscopy this is for example the case when using\nclassical range file formats like RNG, RRNG for atom probe data.\nThese file formats do not document the charge state explicitly.\nThey report the number of atoms of each element per molecular ion\nsurplus the mass-to-charge-state-ratio interval.\nWith this it is possible to recover the charge state only for\nspecific molecular ions as the accumulated mass of the molecular ion\nis defined by the isotopes, which without knowing the charge leads\nto an underconstrained problem.\nDetails on ranging can be found in the literature: `M. K. Miller <https://doi.org/10.1002/sia.1719>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXion.html#nxion-charge-state-field", + "https://doi.org/10.1002/sia.1719" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "charge_state", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Human-readable ion type name (e.g. Al +++)\nThe string should consists of ASCII UTF-8 characters, \nideally using LaTeX notation to specify the isotopes, ions, and charge\nstate. Examples are 12C + or Al +++.\nAlthough this name may be human-readable and intuitive, parsing such\nnames becomes impractical for more complicated cases. Therefore, the\nisotope_vector should be the preferred machine-readable format to use.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXion.html#nxion-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "mass_to_charge_range", + "description": "Associated lower (mqmin) and upper (mqmax) bounds of \nmass-to-charge-state ratio interval(s) [mqmin, mqmax]\n(boundaries included) for which the respective ion is labelled\nas an ion of the here referred to ion_type.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXion.html#nxion-mass-to-charge-range-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mass_to_charge_range", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ranges", + 2 + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 68, + "m_parent_sub_section": "section_definitions", + "name": "NXiqproc", + "description": "Application definition for any :math:`I(Q)` data.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXiqproc", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/68/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "entry", + "variable": false, + "more": { + "nx_name": "entry" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXiqproc" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/68/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/68/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "reduction", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/68/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/68/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of the instrument from which this data was reduced. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/68/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "reduction", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-reduction-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reduction", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Name of the program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-reduction-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "version", + "description": "Version of the program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-reduction-version-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "version", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "input", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/68/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "output", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/68/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "input", + "description": "Input parameters for the reduction program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-reduction-input-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "input", + "nx_type": "NXparameters", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/87" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "filenames", + "description": "Raw data files used to generate this I(Q)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-reduction-input-filenames-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "filenames", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "output", + "description": "Eventual output parameters from the data reduction program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-reduction-output-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "output", + "nx_type": "NXparameters", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/87" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "This is I(Q). The client has to analyse the dimensions\nof I(Q). Often, multiple I(Q) for various environment\nconditions are measured; that would be the first\ndimension. Q can be multidimensional, this accounts for\nthe further dimensions in the data", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_signal": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nVars", + "nQX", + "nQY" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "variable", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-data-variable-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "variable", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nVars" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "varied_variable", + "variable": false, + "more": { + "nx_name": "varied_variable" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "qx", + "description": "Values for the first dimension of Q", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-data-qx-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "qx", + "nx_axis": "2", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nQX" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "qy", + "description": "Values for the second dimension of Q", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXiqproc.html#nxiqproc-entry-data-qy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "qy", + "nx_axis": "3", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nQY" + ], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 69, + "m_parent_sub_section": "section_definitions", + "name": "NXlauetof", + "description": "This is the application definition for a TOF laue diffractometer", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXlauetof", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/69/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXlauetof" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/69/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/69/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/69/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "name", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/69/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/69/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "This assumes a planar 2D detector. All angles and distances refer to the center of the\ndetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "The polar_angle (two theta) where the detector is placed.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "The azimuthal angle where the detector is placed.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-detector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nXPixels", + "nYPixels", + "nTOF" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal", + "nx_type": "NX_POSINT" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-detector-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-detector-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "This is the distance to the previous component in the\ninstrument; most often the sample. The usage depends on the\nnature of the detector: Most often it is the distance of the\ndetector assembly. But there are irregular detectors. In this\ncase the distance must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Total time of flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-instrument-detector-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTOF" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "orientation_matrix", + "description": "The orientation matrix according to Busing and\nLevy conventions. This is not strictly necessary as\nthe UB can always be derived from the data. But\nlet us bow to common usage which includes thie\nUB nearly always.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-sample-orientation-matrix-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "orientation_matrix", + "nx_optional": false, + "nx_units": "NX_DIMENSIONLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "unit_cell", + "description": "The unit cell, a, b, c, alpha, beta, gamma.\nAgain, not strictly necessary, but normally written.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-sample-unit-cell-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer) or received monitor counts\n(monitor). ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-control-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-control-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "use these attributes ``primary=1 signal=1``", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-control-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nTOF" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time-of-flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-control-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTOF" + ], + "dimensionality": "[time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "name", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXlauetof.html#nxlauetof-entry-name-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "name", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 70, + "m_parent_sub_section": "section_definitions", + "name": "NXlens_em", + "description": "Description of an electro-magnetic lens or a compound lens.\n\nFor NXtransformations the origin of the coordinate system is placed\nin the center of the lens\n(its polepiece, pinhole, or another point of reference).\nThe origin should be specified in the NXtransformations.\n\nFor details of electro-magnetic lenses in the literature see e.g. `L. Reimer <https://doi.org/10.1007/978-3-540-38967-5>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-group", + "https://doi.org/10.1007/978-3-540-38967-5" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlens_em", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Qualitative type of lens with respect to the number of pole pieces.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "single", + "double", + "quadrupole", + "hexapole", + "octupole" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name, alias, colloquial, or short name for the lens.\nFor manufacturer names and identifiers use respective manufacturer fields.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "manufacturer_name", + "description": "Name of the manufacturer who built/constructed the lens.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-manufacturer-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "manufacturer_name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "model", + "description": "Hardware name, hash identifier, or serial number that was given by the\nmanufacturer to identify the lens.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-model-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "model", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Ideally an identifier, persistent link, or free text which gives further details\nabout the lens.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "voltage", + "description": "Excitation voltage of the lens. For dipoles it is a single number. For higher\norders, it is an array.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "current", + "description": "Excitation current of the lens. For dipoles it is a single number. For higher\norders, it is an array.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "current", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Specifies the position of the lens by pointing to the last transformation in the\ntransformation chain in the NXtransformations group.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/70/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/70/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Collection of axis-based translations and rotations to describe the\nlocation and geometry of the lens as a component in the instrument.\nTypically, the components of a system should all be related relative to\neach other and only one component should relate to the reference\ncoordinate system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXlens-em.html#nxlens-em-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 71, + "m_parent_sub_section": "section_definitions", + "name": "NXlog", + "description": "Information recorded as a function of time.\n\nDescription of information that is recorded against\ntime. There are two common use cases for this:\n\n- When logging data such as temperature during a run\n- When data is taken in streaming mode data acquisition,\n i.e. just timestamp, value pairs are stored and\n correlated later in data reduction with other data,\n\n\nIn both cases, NXlog contains\nthe logged or streamed values and the times at which they were measured as elapsed time since a starting\ntime recorded in ISO8601 format. The time units are\nspecified in the units attribute. An optional scaling attribute\ncan be used to accomodate non standard clocks.\n\n\nThis method of storing logged data helps to distinguish\ninstances in which a variable is a dimension scale of the data, in which case it is stored\nin an :ref:`NXdata` group, and instances in which it is logged during the\nrun, when it should be stored in an :ref:`NXlog` group.\n\nIn order to make random access to timestamped data faster there is an optional array pair of\n``cue_timestamp_zero`` and ``cue_index``. The ``cue_timestamp_zero`` will\ncontain coarser timestamps than in the time array, say\nevery five minutes. The ``cue_index`` will then contain the\nindex into the time,value pair of arrays for that\ncoarser ``cue_timestamp_zero``.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlog", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "time", + "description": "Time of logged entry. The times are relative to the \"start\" attribute\nand in the units specified in the \"units\"\nattribute. Please note that absolute\ntimestamps under unix are relative to ``1970-01-01T00:00:00.0Z``.\n\nThe scaling_factor, when present, has to be applied to the time values in order\nto arrive at the units specified in the units attribute. The scaling_factor allows\nfor arbitrary time units such as ticks of some hardware clock.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "start", + "variable": false, + "more": { + "nx_name": "start", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "scaling_factor", + "variable": false, + "more": { + "nx_name": "scaling_factor", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "raw_value", + "description": "Array of raw information, such as thermocouple voltage", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-raw-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "raw_value", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of logged value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "average_value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-average-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "average_value_error", + "description": "estimated uncertainty (often used: standard deviation) of average_value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-average-value-error-field" + ], + "deprecated": "see: https://github.com/nexusformat/definitions/issues/639", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_error", + "nx_units": "NX_ANY", + "nx_optional": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "average_value_errors", + "description": "estimated uncertainty (often used: standard deviation) of average_value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-average-value-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_errors", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "minimum_value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-minimum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "minimum_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "maximum_value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-maximum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "maximum_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Total time log was taken", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "cue_timestamp_zero", + "description": "Timestamps matching the corresponding cue_index into the\ntime, value pair.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-cue-timestamp-zero-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "cue_timestamp_zero", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "start", + "variable": false, + "more": { + "nx_name": "start", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "scaling_factor", + "variable": false, + "more": { + "nx_name": "scaling_factor", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "cue_index", + "description": "Index into the time, value pair matching the corresponding\ncue_timestamp_zero.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXlog.html#nxlog-cue-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "cue_index", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 72, + "m_parent_sub_section": "section_definitions", + "name": "NXmagnetic_kicker", + "description": "definition for a magnetic kicker.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmagnetic_kicker", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "extended description of the kicker.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "beamline_distance", + "description": "define position of beamline element relative to production target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-beamline-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beamline_distance", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "timing", + "description": "kicker timing as defined by ``description`` attribute", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-timing-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "timing", + "nx_units": "NX_TIME", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "set_current", + "description": "current set on supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-set-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_current", + "nx_units": "NX_CURRENT", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "set_voltage", + "description": "voltage set on supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-set-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_voltage", + "nx_units": "NX_VOLTAGE", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "read_current", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/72/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "read_voltage", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/72/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_current", + "description": "current read from supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-read-current-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_current", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-read-current-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_voltage", + "description": "voltage read from supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-read-voltage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_voltage", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmagnetic-kicker.html#nxmagnetic-kicker-read-voltage-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 73, + "m_parent_sub_section": "section_definitions", + "name": "NXmanipulator", + "description": "Extension of NXpositioner to include fields to describe the use of manipulators\nin photoemission experiments.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanipulator", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of the manipulator.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "A description of the manipulator.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type of manipulator, Hexapod, Rod, etc. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "cryocoolant", + "description": "Is cryocoolant flowing through the manipulator?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-cryocoolant-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "cryocoolant", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "cryostat_temperature", + "description": "Temperature of the cryostat (coldest point)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-cryostat-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "cryostat_temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "heater_power", + "description": "Power in the heater for temperature control.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-heater-power-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "heater_power", + "nx_units": "NX_POWER", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[power]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "sample_temperature", + "description": "Temperature at the closest point to the sample. This field may also be found in\nNXsample if present.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sample_temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "drain_current", + "description": "Current to neutralize the photoemission current. This field may also be found in\nNXsample if present.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-drain-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "drain_current", + "nx_units": "NX_CURRENT", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "sample_bias", + "description": "Possible bias of the sample with trespect to analyser ground. This field may\nalso be found in NXsample if present.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-sample-bias-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sample_bias", + "nx_units": "NX_CURRENT", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Refers to the last transformation specifying the positon of the manipulator in\nthe NXtransformations chain.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "POSITIONER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/73/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/73/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpositioner", + "description": "Class to describe the motors that are used in the manipulator", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-positioner-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpositioner", + "nx_type": "NXpositioner", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/92" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Collection of axis-based translations and rotations to describe the location and\ngeometry of the manipulator as a component in the instrument. Conventions from\nthe NXtransformations base class are used. In principle, the McStas coordinate\nsystem is used. The first transformation has to point either to another\ncomponent of the system or . (for pointing to the reference frame) to relate it\nrelative to the experimental setup. Typically, the components of a system should\nall be related relative to each other and only one component should relate to\nthe reference coordinate system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanipulator.html#nxmanipulator-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 74, + "m_parent_sub_section": "section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanufacturer.html#nxmanufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Company name of the manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanufacturer.html#nxmanufacturer-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "model", + "description": "Version or model of the component named by the manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanufacturer.html#nxmanufacturer-model-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "model", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "identifier", + "description": "Ideally, (globally) unique persistent identifier, i.e. a serial number or hash\nidentifier of the component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanufacturer.html#nxmanufacturer-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "identifier", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "capability", + "description": "Free-text list with eventually multiple terms of functionalities which the\ncomponent offers.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmanufacturer.html#nxmanufacturer-capability-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "capability", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 75, + "m_parent_sub_section": "section_definitions", + "name": "NXmirror", + "description": "A beamline mirror or supermirror.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmirror", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "single", + "multi" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "description of this mirror", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "incident_angle", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-incident-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "bend_angle_x", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-bend-angle-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bend_angle_x", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "bend_angle_y", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-bend-angle-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bend_angle_y", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "interior_atmosphere", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-interior-atmosphere-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "interior_atmosphere", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "vacuum", + "helium", + "argon" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "external_material", + "description": "external material outside substrate", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-external-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "external_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "m_value", + "description": "The m value for a supermirror, which defines the supermirror \nregime in multiples of the critical angle of Nickel.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-m-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "m_value", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "substrate_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-substrate-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "substrate_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "substrate_density", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-substrate-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "substrate_thickness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-substrate-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "coating_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-coating-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "coating_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "substrate_roughness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-substrate-roughness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "substrate_roughness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "coating_roughness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-coating-roughness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "coating_roughness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "even_layer_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-even-layer-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "even_layer_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "even_layer_density", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-even-layer-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "even_layer_density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "odd_layer_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-odd-layer-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "odd_layer_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "odd_layer_density", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-odd-layer-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "odd_layer_density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "layer_thickness", + "description": "An array describing the thickness of each layer", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-layer-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "layer_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nGiven a flat mirror, the reference plane is the plane which contains the \"entry\" surface of the mirror. The reference\npoint of the mirror in the x and y axis is the centre of the mirror on that plane. The reference plane is orthogonal\nto the z axis and the location of this plane is the reference point on the z axis. The mirror faces negative z values.\n\n.. image:: mirror/mirror.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/75/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "reflectivity", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/75/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/75/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "figure_data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/75/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/75/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/75/inner_section_definitions/5", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the mirror and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "reflectivity", + "description": "Reflectivity as function of wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-reflectivity-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reflectivity", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "A NXshape group describing the shape of the mirror", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-shape-group" + ], + "deprecated": "Use NXoff_geometry instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "figure_data", + "description": "Numerical description of the surface figure of the mirror.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-figure-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "figure_data", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmirror.html#nxmirror-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 76, + "m_parent_sub_section": "section_definitions", + "name": "NXmoderator", + "description": "A neutron moderator", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmoderator", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Effective distance as seen by measuring radiation.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "H20", + "D20", + "Liquid H2", + "Liquid CH4", + "Liquid D2", + "Solid D2", + "C", + "Solid CH4", + "Solid H2" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "poison_depth", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-poison-depth-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "poison_depth", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "coupled", + "description": "whether the moderator is coupled", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-coupled-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "coupled", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "coupling_material", + "description": "The material used for coupling. Usually Cd.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-coupling-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "coupling_material", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "poison_material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-poison-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "poison_material", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Gd", + "Cd" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "average/nominal moderator temperature", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe reference point of the moderator is its center in the x and y axis. The reference point on the z axis is the\nsurface of the moderator pointing towards the source (the negative part of the z axis).\n\n.. image:: moderator/moderator.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/76/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "temperature_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/76/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "pulse_shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/76/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/76/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/76/inner_section_definitions/4", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "\"Engineering\" position of moderator", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the moderator and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "temperature_log", + "description": "log file of moderator temperature", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-temperature-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "temperature_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "pulse_shape", + "description": "moderator pulse shape", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-pulse-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "pulse_shape", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the moderator", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmoderator.html#nxmoderator-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 77, + "m_parent_sub_section": "section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": true + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": true + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance of monitor from sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-distance-field" + ], + "deprecated": "Use transformations/distance instead", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "range", + "description": "Range (X-axis, Time-of-flight, etc.) over which the integral was calculated", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-range-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "range", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "nominal", + "description": "Nominal reading to be used for normalisation purposes.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-nominal-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "nominal", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "integral", + "description": "Total integral monitor counts", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-integral-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "integral", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Fission Chamber", + "Scintillator" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time-of-flight", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "efficiency", + "description": "Monitor efficiency", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-efficiency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "efficiency", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "sampled_fraction", + "description": "Proportion of incident beam sampled by the monitor (0<x<1)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-sampled-fraction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sampled_fraction", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "count_time", + "description": "Elapsed actual counting time, can be an array of size ``np``\nwhen scanning. This is not the difference of the calendar time\nbut the time the instrument was really counting, without\npauses or times lost due beam unavailability", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-count-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "count_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe reference plane of the monitor contains the surface of the detector that faces the source\nand is the entry point of the beam. The reference point of the monitor in the x and y axis is\nits centre on this surface. The reference plane is orthogonal to the the z axis and the\nreference point on this z axis is where they intersect.\n\n.. image:: monitor/monitor.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "integral_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/77/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/77/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/77/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/77/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "integral_log", + "description": "Time variation of monitor counts", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-integral-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "integral_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "Geometry of the monitor", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the monitor and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonitor.html#nxmonitor-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 78, + "m_parent_sub_section": "section_definitions", + "name": "NXmonochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonochromator", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "wavelength selected", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "wavelength_error", + "description": "wavelength standard deviation", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-wavelength-error-field" + ], + "deprecated": "see https://github.com/nexusformat/definitions/issues/820", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength_error", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "wavelength_errors", + "description": "wavelength standard deviation", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-wavelength-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength_errors", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy selected", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "energy_error", + "description": "energy standard deviation", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-energy-error-field" + ], + "deprecated": "see https://github.com/nexusformat/definitions/issues/820", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy_error", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "energy_errors", + "description": "energy standard deviation", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-energy-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy_errors", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a monochromator.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "distribution", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/78/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "geometry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/78/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/78/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "CRYSTAL", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/78/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "VELOCITY_SELECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/78/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "GRATING", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/78/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/78/inner_section_definitions/6", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "distribution", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-distribution-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "distribution", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the monochromator and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcrystal", + "description": "Use as many crystals as necessary to describe", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-crystal-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcrystal", + "nx_type": "NXcrystal", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/21" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXvelocity_selector", + "description": "A neutron velocity selector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-velocity-selector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXvelocity_selector", + "nx_type": "NXvelocity_selector", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/141" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgrating", + "description": "For diffraction grating based monochromators", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-grating-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgrating", + "nx_type": "NXgrating", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/50" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXmonochromator.html#nxmonochromator-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 79, + "m_parent_sub_section": "section_definitions", + "name": "NXmonopd", + "description": "Monochromatic Neutron and X-Ray Powder diffractometer \n\nInstrument \ndefinition for a powder diffractometer at a monochromatic neutron \nor X-ray beam. This is both suited for a powder diffractometer \nwith a single detector or a powder diffractometer with a position \nsensitive detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXmonopd", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/79/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXmonopd" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/79/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/79/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/79/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/79/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/79/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "CRYSTAL", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/79/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/79/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcrystal", + "description": "A crystal monochromator or analyzer. \n\nPermits double bent\nmonochromator comprised of multiple segments with anisotropic \nGaussian mosaic.\n\nIf curvatures are set to zero or are absent, array \nis considered to be flat.\n\nScattering vector is perpendicular to surface. Crystal is oriented\nparallel to beam incident on crystal before rotation, and lies in\nvertical plane.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-crystal-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcrystal", + "nx_type": "NXcrystal", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "Optimum diffracted wavelength", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-crystal-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i" + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "detector signal (usually counts) are already\ncorrected for detector efficiency", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nDet" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram \nhas been obtained through an omega-2theta scan like from a \ntraditional single detector powder diffractometer", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer) \nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-monitor-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "integral", + "description": "Total integral monitor counts", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-monitor-integral-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "integral", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmonopd.html#nxmonopd-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 80, + "m_parent_sub_section": "section_definitions", + "name": "NXmpes", + "description": "This is the most general application definition for multidimensional\nphotoelectron spectroscopy.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXmpes", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Datetime of the start of the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "(alternate use: see same field in :ref:`NXsubentry` for preferred)\n\nOfficial NeXus NXDL schema to which this entry conforms which must be\nthe name of the NXDL file (case sensitive without the file extension)\nthat the NXDL schema is defined in. \n\nFor example the ``definition`` field for a file that conformed to the \n*NXarpes.nxdl.xml* definition must contain the string **NXarpes**.\n\nThis field is provided so that :ref:`NXentry` can be the overlay position\nin a NeXus data file for an application definition and its\nset of groups, fields, and attributes.\n\n*It is advised* to use :ref:`NXsubentry`, instead, as the overlay position.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXmpes" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy_resolution", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-energy-resolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy_resolution", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "BEAM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "ELECTRONANALYSER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The source used to generate the primary photons. Properties refer strictly to\nparameters of the source, not of the output beam. For example, the energy of the\nsource is not the optical power of the beam, but the energy of the electron beam\nin a synchrotron and so on.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Synchrotron X-ray Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "UV Plasma Source", + "Metal Jet X-ray", + "HHG laser" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "Type of probe. In photoemission it's always photons, so the full NIAC list is\nrestricted.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x-ray", + "ultraviolet", + "visible light" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXbeam", + "description": "Properties of the neutron or X-ray beam at a given location. \n\nThis group is intended to be referenced\nby beamline component groups within the :ref:`NXinstrument` group or by the :ref:`NXsample` group. This group is\nespecially valuable in storing the results of instrument simulations in which it is useful\nto specify the beam profile, time distribution etc. at each beamline component. Otherwise,\nits most likely use is in the :ref:`NXsample` group in which it defines the results of the neutron\nscattering by the sample, e.g., energy transfer, polarizations.\n\nNote that incident_wavelength and related fields can be a scalar values or arrays, depending on the use case.\nTo support these use cases, the explicit dimensionality of these fields is not specified, but it can be inferred\nby the presense of and shape of accompanying fields, such as incident_wavelength_weights for a polychromatic beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam", + "nx_type": "NXbeam", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/2" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance of the point of evaluation of the beam from the sample surface.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-beam-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "incident_energy", + "description": "Energy carried by each particle of the beam on entering the beamline component", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-beam-incident-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "incident_energy_spread", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-beam-incident-energy-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "incident_energy_spread", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "incident_polarization", + "description": "Polarization vector on entering beamline component", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-beam-incident-polarization-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "incident_polarization", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXelectronanalyser", + "description": "Subclass of NXinstrument to describe a photoelectron analyser.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXelectronanalyser", + "nx_type": "NXelectronanalyser", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/34" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Free text description of the type of the detector ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energy_resolution", + "description": "Energy resolution of the analyser with the current setting. May be linked from a\nNXcalibration.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-energy-resolution-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy_resolution", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "fast_axes", + "description": "List of the axes that are acquired simultaneously by the detector.\nThese refer only to the experimental variables recorded by the electron analyser.\nOther variables such as temperature, manipulator angles etc. are labeled as fast or slow in the data.\n\n.. csv-table:: Examples\n :header: \"Mode\", \"fast_axes\", \"slow_axes\"\n\n Hemispherical in ARPES mode, \"['energy', 'kx']\",\"\"\n \"Hemispherical with channeltron, sweeping energy mode\", \"\", [\\\"energy\\\"]\n \"Tof\", \"['energy', 'kx', 'ky']\",\"\"\n \"Momentum microscope, spin-resolved\", \"['energy', 'kx', 'ky']\", \"['spin up-down', 'spin left-right']\"\n\nAxes may be less abstract than this, i.e. ['detector_x', 'detector_y'].\nIf energy_scan_mode=sweep, fast_axes: ['energy', 'kx']; slow_axes: ['energy'] is allowed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-fast-axes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "fast_axes", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "slow_axes", + "description": "List of the axes that are acquired by scanning a physical parameter, listed in\norder of decreasing speed. See fast_axes for examples.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-slow-axes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "slow_axes", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTIONCOLUMN", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "ENERGYDISPERSION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "MANIPULATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollectioncolumn", + "description": "Describes the electron collection (spatial and momentum imaging) column", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-collectioncolumn-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollectioncolumn", + "nx_type": "NXcollectioncolumn", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/34/inner_section_definitions/1" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "scheme", + "description": "Scheme of the electron collection column.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-collectioncolumn-scheme-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "scheme", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Standard", + "Angular dispersive", + "Selective area", + "Deflector", + "PEEM", + "Momentum Microscope" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Labelling of the lens setting in use.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-collectioncolumn-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "projection", + "description": "The space projected in the angularly dispersive directions, real or reciprocal", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-collectioncolumn-projection-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "projection", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "real", + "reciprocal" + ] + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "field_aperture", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "contrast_aperture", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "field_aperture", + "description": "The size and position of the field aperture inserted in the column. To add\nadditional or other apertures use the APERTURE group of NXcollectioncolumn.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-collectioncolumn-field-aperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "field_aperture", + "nx_type": "NXaperture", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "contrast_aperture", + "description": "The size and position of the contrast aperture inserted in the column. To add\nadditional or other apertures use the APERTURE group of NXcollectioncolumn.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-collectioncolumn-contrast-aperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "contrast_aperture", + "nx_type": "NXaperture", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXenergydispersion", + "description": "Describes the energy dispersion section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-energydispersion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXenergydispersion", + "nx_type": "NXenergydispersion", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/34/inner_section_definitions/2" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "scheme", + "description": "Energy dispersion scheme employed, for example: tof, hemispherical, cylindrical,\nmirror, retarding grid, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-energydispersion-scheme-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "scheme", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "tof", + "hemispherical", + "double hemispherical", + "cylindrical mirror", + "display mirror", + "retarding grid" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "pass_energy", + "description": "Energy of the electrons on the mean path of the analyser. Pass energy for\nhemispherics, drift energy for tofs.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-energydispersion-pass-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pass_energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energy_scan_mode", + "description": "Way of scanning the energy axis (fixed or sweep).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-energydispersion-energy-scan-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "energy_scan_mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "fixed", + "sweep" + ] + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entrance_slit", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "exit_slit", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entrance_slit", + "description": "Size, position and shape of the entrance slit in dispersive analyzers. To add\nadditional or other slits use the APERTURE group of NXenergydispersion.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-energydispersion-entrance-slit-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entrance_slit", + "nx_type": "NXaperture", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "exit_slit", + "description": "Size, position and shape of the exit slit in dispersive analyzers. To add\nadditional or other slits use the APERTURE group of NXenergydispersion.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-energydispersion-exit-slit-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "exit_slit", + "nx_type": "NXaperture", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "Describes the electron detector", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/34/inner_section_definitions/4" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "amplifier_type", + "description": "Type of electron amplifier in the first amplification step.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-detector-amplifier-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "amplifier_type", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "MCP", + "channeltron" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "detector_type", + "description": "Description of the detector type.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-detector-detector-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "detector_type", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "DLD", + "Phosphor+CCD", + "Phosphor+CMOS", + "ECMOS", + "Anode", + "Multi-anode" + ] + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/2/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-detector-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "raw" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "raw", + "description": "Raw data before calibration.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-detector-data-raw-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "raw", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanipulator", + "description": "Manipulator for positioning of the sample.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-manipulator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanipulator", + "nx_type": "NXmanipulator", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/73" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "sample_temperature", + "description": "Temperature at the closest point to the sample. This field may also be found in\nNXsample if present.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-manipulator-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sample_temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "drain_current", + "description": "Current to neutralize the photoemission current. This field may also be found in\nNXsample if present.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-manipulator-drain-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "drain_current", + "nx_units": "NX_CURRENT", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "sample_bias", + "description": "Possible bias of the sample with trespect to analyser ground. This field may\nalso be found in NXsample if present.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-instrument-electronanalyser-manipulator-sample-bias-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sample_bias", + "nx_units": "NX_CURRENT", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.\nDescribe the appropriate axis calibrations for your experiment using one or more\nof the following NXcalibrations", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/10" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "energy_calibration", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "angular_calibration", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "spatial_calibration", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "momentum_calibration", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "energy_calibration", + "description": "Subclass of NXprocess to describe post-processing calibrations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-energy-calibration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "energy_calibration", + "nx_type": "NXcalibration", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/10" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Has an energy calibration been applied?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-energy-calibration-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "calibrated_axis", + "description": "This is the calibrated energy axis to be used for data plotting.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-energy-calibration-calibrated-axis-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "calibrated_axis", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "angular_calibration", + "description": "Subclass of NXprocess to describe post-processing calibrations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-angular-calibration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "angular_calibration", + "nx_type": "NXcalibration", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/10" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Has an angular calibration been applied?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-angular-calibration-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "calibrated_axis", + "description": "This is the calibrated angular axis to be used for data plotting.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-angular-calibration-calibrated-axis-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "calibrated_axis", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "spatial_calibration", + "description": "Subclass of NXprocess to describe post-processing calibrations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-spatial-calibration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "spatial_calibration", + "nx_type": "NXcalibration", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/10" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Has an spatial calibration been applied?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-spatial-calibration-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "calibrated_axis", + "description": "This is the calibrated spatial axis to be used for data plotting.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-spatial-calibration-calibrated-axis-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "calibrated_axis", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "momentum_calibration", + "description": "Subclass of NXprocess to describe post-processing calibrations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-momentum-calibration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "momentum_calibration", + "nx_type": "NXcalibration", + "nx_optional": "true", + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/10" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Has an momentum calibration been applied?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-momentum-calibration-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "calibrated_axis", + "description": "This is the momentum axis to be used for data plotting.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-process-momentum-calibration-calibrated-axis-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "calibrated_axis", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "description": "The chemical formula of the sample. For mixtures use the NXsample_component\ngroup in NXsample instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-chemical-formula-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "chemical_formula", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "preparation_date", + "description": "Date of preparation of the sample for the XPS experiment (i.e.\ncleaving, last annealing).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-preparation-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "preparation_date", + "nx_optional": false, + "nx_units": "NX_TIME", + "nx_recommended": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "In the case of a fixed temperature measurement this is the scalar temperature of\nthe sample. In the case of an experiment in which the temperature is changed and\nrecoded, this is an array of length m of temperatures. This should be a link to\n/entry/instrument/manipulator/sample_temperature.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "situation", + "description": "The atmosphere will be one of the components, which is where \nits details will be stored; the relevant components will be \nindicated by the entry in the sample_component member.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-situation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "situation", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "vacuum", + "inert atmosphere", + "oxidising atmosphere", + "reducing atmosphere" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "gas_pressure", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-gas-pressure-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "gas_pressure", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "sample_history", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "preparation_description", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/80/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample_history", + "description": "A descriptor to keep track of the treatment of the sample before entering the\nphotoemission experiment. Ideally, a full report of the previous operations, in\nany format (NXnote allows to add pictures, audio, movies). Alternatively, a\nreference to the location or a unique identifier or other metadata file. In the\ncase these are not available, free-text description.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-sample-history-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample_history", + "nx_type": "NXnote", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "preparation_description", + "description": "Description of the surface preparation technique for the XPS experiment, i.e.\nUHV cleaving, in-situ growth, sputtering/annealing etc. Ideally, a full report\nof the previous operations, in any format(NXnote allows to add pictures, audio,\nmovies). Alternatively, a reference to the location or a unique identifier or\nother metadata file. In the case these are not available, free-text description.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-sample-preparation-description-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "preparation_description", + "nx_type": "NXnote", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "data" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Represents a measure of one- or more-dimensional photoemission counts, where the\nvaried axis may be for example energy, momentum, spatial coordinate, pump-probe\ndelay, spin index, temperature, etc. The axes traces should be linked to the\nactual encoder position in NXinstrument or calibrated axes in NXprocess.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXmpes.html#nxmpes-entry-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 81, + "m_parent_sub_section": "section_definitions", + "name": "NXmx", + "description": "functional application definition for macromolecular crystallography", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXmx", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "Note, it is recommended that ``file_name`` and ``file_time`` are included\nas attributes at the root of a file that includes :ref:`NXmx`. See\n:ref:`NXroot`.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_optional": "true" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1.0" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "ISO 8601 time/date of the first data point collected in UTC,\nusing the Z suffix to avoid confusion with local time.\nNote that the time zone of the beamline should be provided in\nNXentry/NXinstrument/time_zone.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "ISO 8601 time/date of the last data point collected in UTC,\nusing the Z suffix to avoid confusion with local time.\nNote that the time zone of the beamline should be provided in\nNXentry/NXinstrument/time_zone. This field should only be\nfilled when the value is accurately observed. If the data\ncollection aborts or otherwise prevents accurate recording of\nthe end_time, this field should be omitted.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "end_time_estimated", + "description": "ISO 8601 time/date of the last data point collected in UTC,\nusing the Z suffix to avoid confusion with local time.\nNote that the time zone of the beamline should be provided in\nNXentry/NXinstrument/time_zone. This field may be filled\nwith a value estimated before an observed value is available.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-end-time-estimated-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time_estimated", + "nx_optional": false + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXmx" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "For a dimension-2 detector, the rank of the data array will be 3.\nFor a dimension-3 detector, the rank of the data array will be 4.\nThis allows for the introduction of the frame number as the\nfirst index.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j", + "k" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "This is a requirement to describe for any scan experiment.\n\nThe axis on which the sample position depends may be stored\nanywhere, but is normally stored in the NXtransformations\ngroup within the NXsample group.\n\nIf there is no goniometer, e.g. with a jet, depends_on\nshould be set to \".\"", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-sample-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Sample temperature. This could be a scanned variable", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the recommended location for sample goniometer\nand other related axes.\n\nThis is a requirement to describe for any scan experiment.\nThe reason it is optional is mainly to accommodate XFEL\nsingle shot exposures.\n\nUse of the depends_on field and the NXtransformations group is\nstrongly recommended. As noted above this should be an absolute\nrequirement to have for any scan experiment.\n\nThe reason it is optional is mainly to accommodate XFEL\nsingle shot exposures.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-sample-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/105/inner_section_definitions/12" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of instrument. Consistency with the controlled\nvocabulary beamline naming in\nhttps://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v50.dic/Items/_diffrn_source.pdbx_synchrotron_beamline.html\nand\nhttps://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v50.dic/Items/_diffrn_source.type.html\nis highly recommended.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-name-field", + "https://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v50.dic/Items/_diffrn_source.pdbx_synchrotron_beamline.html", + "https://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v50.dic/Items/_diffrn_source.type.html" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "time_zone", + "description": "ISO 8601 time_zone offset from UTC.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-time-zone-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "time_zone", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ATTENUATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR_GROUP", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "BEAM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXattenuator", + "description": "A device that reduces the intensity of a beam by attenuation.\n\nIf uncertain whether to use :ref:`NXfilter` (band-pass filter)\nor :ref:`NXattenuator` (reduces beam intensity), then choose \n:ref:`NXattenuator`.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-attenuator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXattenuator", + "nx_type": "NXattenuator", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "attenuator_transmission", + "description": "The nominal amount of the beam that gets through\n(transmitted intensity)/(incident intensity)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-attenuator-attenuator-transmission-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "attenuator_transmission", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector_group", + "description": "Optional logical grouping of detectors.\n\nEach detector is represented as an NXdetector\nwith its own detector data array. Each detector data array\nmay be further decomposed into array sections by use of\nNXdetector_module groups. Detectors can be grouped logically\ntogether using NXdetector_group. Groups can be further grouped\nhierarchically in a single NXdetector_group (for example, if\nthere are multiple detectors at an endstation or multiple\nendstations at a facility). Alternatively, multiple\nNXdetector_groups can be provided.\n\nThe groups are defined hierarchically, with names given\nin the group_names field, unique identifying indices given\nin the field group_index, and the level in the hierarchy\ngiven in the group_parent field. For example if an x-ray\ndetector group, DET, consists of four detectors in a\nrectangular array::\n\n DTL DTR\n DLL DLR\n\nWe could have::\n\n group_names: [\"DET\", \"DTL\", \"DTR\", \"DLL\", \"DLR\"]\n group_index: [1, 2, 3, 4, 5]\n group_parent: [-1, 1, 1, 1, 1]", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-group-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector_group", + "nx_type": "NXdetector_group", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_recommended": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/10" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "group_names", + "description": "An array of the names of the detectors or the names of\nhierarchical groupings of detectors.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-group-group-names-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "group_names", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "group_index", + "description": "An array of unique identifiers for detectors or groupings\nof detectors.\n\nEach ID is a unique ID for the corresponding detector or group\nnamed in the field group_names. The IDs are positive integers\nstarting with 1.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-group-group-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "group_index", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "i" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "group_parent", + "description": "An array of the hierarchical levels of the parents of detectors\nor groupings of detectors.\n\nA top-level grouping has parent level -1.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-group-group-parent-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "group_parent", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "groupIndex" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "Normally the detector group will have the name ``detector``.\nHowever, in the case of multiple detectors, each detector\nneeds a uniquely named NXdetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus path to the detector positioner axis that most directly\nsupports the detector. In the case of a single-module\ndetector, the detector axis chain may start here.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "For a dimension-2 detector, the rank of the data array will be 3.\nFor a dimension-3 detector, the rank of the data array will be 4.\nThis allows for the introduction of the frame number as the\nfirst index.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + "i", + "j", + "k" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "name/manufacturer/model/etc. information.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "time_per_channel", + "description": "For a time-of-flight detector this is the scaling\nfactor to convert from the numeric value reported to\nthe flight time for a given measurement.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-time-per-channel-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "time_per_channel", + "nx_units": "NX_TIME", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance from the sample to the beam center.\nNormally this value is for guidance only, the proper\ngeometry can be found following the depends_on axis chain,\nBut in appropriate cases where the dectector distance\nto the sample is observable independent of the axis\nchain, that may take precedence over the axis chain\ncalculation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "distance_derived", + "description": "Boolean to indicate if the distance is a derived, rather than\na primary observation. If distance_derived true or is not specified,\nthe distance is assumed to be derived from delector axis\nspecifications.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-distance-derived-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "distance_derived", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "dead_time", + "description": "Detector dead time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-dead-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "dead_time", + "nx_units": "NX_TIME", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "count_time", + "description": "Elapsed actual counting time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-count-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "count_time", + "nx_units": "NX_TIME", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "beam_center_derived", + "description": "Boolean to indicate if the distance is a derived, rather than\na primary observation. If true or not provided, that value of\nbeam_center_derived is assumed to be true.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-beam-center-derived-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "beam_center_derived", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "beam_center_x", + "description": "This is the x position where the direct beam would hit the\ndetector. This is a length and can be outside of the actual\ndetector. The length can be in physical units or pixels as\ndocumented by the units attribute. Normally, this should\nbe derived from the axis chain, but the direct specification\nmay take precedence if it is not a derived quantity.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-beam-center-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_x", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "beam_center_y", + "description": "This is the y position where the direct beam would hit the\ndetector. This is a length and can be outside of the actual\ndetector. The length can be in physical units or pixels as\ndocumented by the units attribute. Normally, this should\nbe derived from the axis chain, but the direct specification\nmay take precedence if it is not a derived quantity.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-beam-center-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_y", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "angular_calibration_applied", + "description": "True when the angular calibration has been applied in the\nelectronics, false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-angular-calibration-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "angular_calibration_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "angular_calibration", + "description": "Angular calibration data.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-angular-calibration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "angular_calibration", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j", + "k" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "flatfield_applied", + "description": "True when the flat field correction has been applied in the\nelectronics, false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-flatfield-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "flatfield_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "flatfield", + "description": "Flat field correction data. If provided, it is recommended\nthat it be compressed.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-flatfield-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "flatfield", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j", + "k" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "flatfield_error", + "description": "*** Deprecated form. Use plural form ***\nErrors of the flat field correction data. If provided, it is recommended\nthat it be compressed.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-flatfield-error-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "flatfield_error", + "nx_minOccurs": "0", + "nx_maxOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j", + "k" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "flatfield_errors", + "description": "Errors of the flat field correction data. If provided, it is recommended\nthat it be compressed.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-flatfield-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "flatfield_errors", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + "j", + "k" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "pixel_mask_applied", + "description": "True when the pixel mask correction has been applied in the\nelectronics, false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-pixel-mask-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "pixel_mask_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "pixel_mask", + "description": "The 32-bit pixel mask for the detector. Can be either one mask\nfor the whole dataset (i.e. an array with indices i, j) or\neach frame can have its own mask (in which case it would be\nan array with indices nP, i, j).\n\nContains a bit field for each pixel to signal dead,\nblind, high or otherwise unwanted or undesirable pixels.\nThey have the following meaning:\n\n * bit 0: gap (pixel with no sensor)\n * bit 1: dead\n * bit 2: under-responding\n * bit 3: over-responding\n * bit 4: noisy\n * bit 5: -undefined-\n * bit 6: pixel is part of a cluster of problematic pixels (bit set in addition to others)\n * bit 7: -undefined-\n * bit 8: user defined mask (e.g. around beamstop)\n * bits 9-30: -undefined-\n * bit 31: virtual pixel (corner pixel with interpolated value)\n\nNormal data analysis software would not take pixels into account\nwhen a bit in (mask & 0x0000FFFF) is set. Tag bit in the upper\ntwo bytes would indicate special pixel properties that normally\nwould not be a sole reason to reject the intensity value (unless\nlower bits are set.\n\nIf the full bit depths is not required, providing a\nmask with fewer bits is permissible.\n\nIf needed, additional pixel masks can be specified by\nincluding additional entries named pixel_mask_N, where\nN is an integer. For example, a general bad pixel mask\ncould be specified in pixel_mask that indicates noisy\nand dead pixels, and an additional pixel mask from\nexperiment-specific shadowing could be specified in\npixel_mask_2. The cumulative mask is the bitwise OR\nof pixel_mask and any pixel_mask_N entries.\n\nIf provided, it is recommended that it be compressed.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-pixel-mask-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "pixel_mask", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "i", + "j" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "countrate_correction_applied", + "description": "True when a count-rate correction has already been applied in\nthe data recorded here, false otherwise.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-countrate-correction-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "countrate_correction_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "virtual_pixel_interpolation_applied", + "description": "True when virtual pixel interpolation has been applied, false otherwise.\n\nWhen virtual pixel interpolation is applied, values of some pixels may\ncontain interpolated values. For example, to account for space between\nreadout chips on a module, physical pixels on edges and corners between\nchips may have larger sensor areas and counts may be distributed between\ntheir logical pixels.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-virtual-pixel-interpolation-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "virtual_pixel_interpolation_applied", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "bit_depth_readout", + "description": "How many bits the electronics record per pixel.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-bit-depth-readout-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "bit_depth_readout", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "detector_readout_time", + "description": "Time it takes to read the detector (typically milliseconds).\nThis is important to know for time resolved experiments.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-detector-readout-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "detector_readout_time", + "nx_units": "NX_TIME", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "frame_time", + "description": "This is time for each frame. This is exposure_time + readout\ntime.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-frame-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "frame_time", + "nx_units": "NX_TIME", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "gain_setting", + "description": "The gain setting of the detector. This influences\nbackground. This is a detector-specific value meant\nto document the gain setting of the detector during\ndata collection, for detectors with multiple\navailable gain settings.\n\nExamples of gain settings include:\n\n* ``standard``\n* ``fast``\n* ``auto``\n* ``high``\n* ``medium``\n* ``low``\n* ``mixed high to medium``\n* ``mixed medium to low``\n\nDevelopers are encouraged to use one of these terms, or to submit\nadditional terms to add to the list.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-gain-setting-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "gain_setting", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "saturation_value", + "description": "The value at which the detector goes into saturation.\nData above this value is known to be invalid.\n\nFor example, given a saturation_value and an underload_value,\nthe valid pixels are those less than or equal to the\nsaturation_value and greater than or equal to the underload_value.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-saturation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "saturation_value", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "underload_value", + "description": "The lowest value at which pixels for this detector\nwould be reasonably be measured.\n\nFor example, given a saturation_value and an underload_value,\nthe valid pixels are those less than or equal to the\nsaturation_value and greater than or equal to the underload_value.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-underload-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "underload_value", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "sensor_material", + "description": "At times, radiation is not directly sensed by the detector.\nRather, the detector might sense the output from some\nconverter like a scintillator.\nThis is the name of this converter material.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-sensor-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "sensor_material", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "sensor_thickness", + "description": "At times, radiation is not directly sensed by the detector.\nRather, the detector might sense the output from some\nconverter like a scintillator. This is the thickness of this\nconverter material.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-sensor-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sensor_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "threshold_energy", + "description": "Single photon counter detectors can be adjusted for a certain\nenergy range in which they work optimally. This is the energy\nsetting for this. If the detector supports multiple thresholds,\nthis is an array.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-threshold-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "threshold_energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Description of type such as scintillator,\nccd, pixel, image\nplate, CMOS, ...", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/2/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/2/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR_MODULE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/2/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Location for axes (transformations) to do with the\ndetector. In the case of a single-module detector, the\naxes of the detector axis chain may be stored here.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/27/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollection", + "description": "Suggested container for detailed non-standard detector\ninformation like corrections applied automatically or\nperformance settings.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-collection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/27/inner_section_definitions/4" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector_module", + "description": "Many detectors consist of multiple smaller modules that are\noperated in sync and store their data in a common dataset.\nTo allow consistent parsing of the experimental geometry,\nthis application definiton requires all detectors to\ndefine a detector module, even if there is only one.\n\nThis group specifies the hyperslab of data in the data\narray associated with the detector that contains the\ndata for this module. If the module is associated with\na full data array, rather than with a hyperslab within\na larger array, then a single module should be defined,\nspanning the entire array.\n\nNote, the pixel size is given as values in the array\nfast_pixel_direction and slow_pixel_direction.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-detector-module-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector_module", + "nx_type": "NXdetector_module", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/27/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data_origin", + "description": "A dimension-2 or dimension-3 field which gives the indices\nof the origin of the hyperslab of data for this module in the\nmain area detector image in the parent NXdetector module.\n\nThe data_origin is 0-based.\n\nThe frame number dimension (nP) is omitted. Thus the\ndata_origin field for a dimension-2 dataset with indices (nP, i, j)\nwill be an array with indices (i, j), and for a dimension-3\ndataset with indices (nP, i, j, k) will be an array with indices\n(i, j, k).\n\nThe :ref:`order <Design-ArrayStorageOrder>` of indices (i, j\nor i, j, k) is slow to fast.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-detector-module-data-origin-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data_origin", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data_size", + "description": "Two or three values for the size of the module in pixels in\neach direction. Dimensionality and order of indices is the\nsame as for data_origin.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-detector-module-data-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data_size", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data_stride", + "description": "Two or three values for the stride of the module in pixels in\neach direction. By default the stride is [1,1] or [1,1,1],\nand this is the most likely case. This optional field is\nincluded for completeness.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-detector-module-data-stride-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data_stride", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "module_offset", + "description": "Offset of the module in regards to the origin of the detector in an\narbitrary direction.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-detector-module-module-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "module_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "offset_units", + "variable": false, + "more": { + "nx_name": "offset_units", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "fast_pixel_direction", + "description": "Values along the direction of :ref:`fastest varying <Design-ArrayStorageOrder>`\npixel direction. The direction itself is given through the vector\nattribute.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-detector-module-fast-pixel-direction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "fast_pixel_direction", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "offset_units", + "variable": false, + "more": { + "nx_name": "offset_units", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "slow_pixel_direction", + "description": "Values along the direction of :ref:`slowest varying <Design-ArrayStorageOrder>`\npixel direction. The direction itself is given through the vector\nattribute.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-detector-detector-module-slow-pixel-direction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "slow_pixel_direction", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "offset_units", + "variable": false, + "more": { + "nx_name": "offset_units", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXbeam", + "description": "Properties of the neutron or X-ray beam at a given location. \n\nThis group is intended to be referenced\nby beamline component groups within the :ref:`NXinstrument` group or by the :ref:`NXsample` group. This group is\nespecially valuable in storing the results of instrument simulations in which it is useful\nto specify the beam profile, time distribution etc. at each beamline component. Otherwise,\nits most likely use is in the :ref:`NXsample` group in which it defines the results of the neutron\nscattering by the sample, e.g., energy transfer, polarizations.\n\nNote that incident_wavelength and related fields can be a scalar values or arrays, depending on the use case.\nTo support these use cases, the explicit dimensionality of these fields is not specified, but it can be inferred\nby the presense of and shape of accompanying fields, such as incident_wavelength_weights for a polychromatic beam.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam", + "nx_type": "NXbeam", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/2" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "flux", + "variable": false, + "more": { + "nx_name": "flux", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength", + "description": "In the case of a monchromatic beam this is the scalar\nwavelength.\n\nSeveral other use cases are permitted, depending on the\npresence or absence of other incident_wavelength_X\nfields.\n\nIn the case of a polychromatic beam this is an array of\nlength **m** of wavelengths, with the relative weights\nin ``incident_wavelength_weights``.\n\nIn the case of a monochromatic beam that varies shot-\nto-shot, this is an array of wavelengths, one for each\nrecorded shot. Here, ``incident_wavelength_weights`` and\nincident_wavelength_spread are not set.\n\nIn the case of a polychromatic beam that varies shot-to-\nshot, this is an array of length **m** with the relative\nweights in ``incident_wavelength_weights`` as a 2D array.\n\nIn the case of a polychromatic beam that varies shot-to-\nshot and where the channels also vary, this is a 2D array\nof dimensions **nP** by **m** (slow to fast) with the\nrelative weights in ``incident_wavelength_weights`` as a 2D\narray.\n\nNote, :ref:`variants <Design-Variants>` are a good way\nto represent several of these use cases in a single dataset,\ne.g. if a calibrated, single-value wavelength value is\navailable along with the original spectrum from which it\nwas calibrated.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-incident-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength_weight", + "description": "In the case of a polychromatic beam this is an array of\nlength **m** of the relative weights of the corresponding\nwavelengths in incident_wavelength.\n\nIn the case of a polychromatic beam that varies shot-to-\nshot, this is a 2D array of dimensions **nP** by **m**\n(slow to fast) of the relative weights of the\ncorresponding wavelengths in incident_wavelength.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-incident-wavelength-weight-field" + ], + "deprecated": "use incident_wavelength_weights, see https://github.com/nexusformat/definitions/issues/837", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_wavelength_weight", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength_weights", + "description": "In the case of a polychromatic beam this is an array of\nlength **m** of the relative weights of the corresponding\nwavelengths in ``incident_wavelength``.\n\nIn the case of a polychromatic beam that varies shot-to-\nshot, this is a 2D array of dimensions **np** by **m**\n(slow to fast) of the relative weights of the\ncorresponding wavelengths in ``incident_wavelength``.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-incident-wavelength-weights-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_wavelength_weights", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "incident_wavelength_spread", + "description": "The wavelength spread FWHM for the corresponding\nwavelength(s) in incident_wavelength.\n\nIn the case of shot-to-shot variation in the wavelength\nspread, this is a 2D array of dimension **nP** by\n**m** (slow to fast) of the spreads of the\ncorresponding wavelengths in incident_wavelength.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-incident-wavelength-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_wavelength_spread", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "flux", + "description": "Flux density incident on beam plane area in photons\nper second per unit area.\n\nIn the case of a beam that varies in flux shot-to-shot,\nthis is an array of values, one for each recorded shot.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-flux-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "flux", + "nx_units": "NX_FLUX", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [time] / [area]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "total_flux", + "description": "Flux incident on beam plane in photons per second. In other words\nthis is the :ref:`flux </NXmx/ENTRY/INSTRUMENT/BEAM/flux-field>` integrated\nover area.\n\nUseful where spatial beam profiles are not known.\n\nIn the case of a beam that varies in total flux shot-to-shot,\nthis is an array of values, one for each recorded shot.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-total-flux-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "total_flux", + "nx_units": "NX_FREQUENCY", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "flux_integrated", + "description": "Flux density incident on beam plane area in photons\nper unit area. In other words this is the :ref:`flux </NXmx/ENTRY/INSTRUMENT/BEAM/flux-field>`\nintegrated over time.\n\nUseful where temporal beam profiles of flux are not known.\n\nIn the case of a beam that varies in flux shot-to-shot,\nthis is an array of values, one for each recorded shot.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-flux-integrated-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "flux_integrated", + "nx_units": "NX_PER_AREA", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [area]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "total_flux_integrated", + "description": "Flux incident on beam plane in photons. In other words this is the :ref:`flux </NXmx/ENTRY/INSTRUMENT/BEAM/flux-field>`\nintegrated over time and area.\n\nUseful where temporal beam profiles of flux are not known.\n\nIn the case of a beam that varies in total flux shot-to-shot,\nthis is an array of values, one for each recorded shot.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-total-flux-integrated-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "total_flux_integrated", + "nx_units": "NX_DIMENSIONLESS", + "nx_minOccurs": "0", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "incident_beam_size", + "description": "Two-element array of FWHM (if Gaussian or Airy function) or\ndiameters (if top hat) or widths (if rectangular) of the beam\nin the order x, y", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-incident-beam-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "incident_beam_size", + "nx_units": "NX_LENGTH", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "profile", + "description": "The beam profile, Gaussian, Airy function, top-hat or\nrectangular. The profile is given in the plane of\nincidence of the beam on the sample.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-profile-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "profile", + "nx_recommended": "true", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Gaussian", + "Airy", + "top-hat", + "rectangular" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "incident_polarisation_stokes", + "description": "Polarization vector on entering beamline\ncomponent using Stokes notation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-incident-polarisation-stokes-field" + ], + "deprecated": "use incident_polarization_stokes, see https://github.com/nexusformat/definitions/issues/708", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "incident_polarisation_stokes", + "nx_optional": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + 4 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "incident_polarization_stokes", + "description": "Polarization vector on entering beamline\ncomponent using Stokes notation. See\nincident_polarization_stokes in :ref:`NXbeam`", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-incident-polarization-stokes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "incident_polarization_stokes", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP", + 4 + ], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "incident_wavelength_spectrum", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/81/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/3/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "incident_wavelength_spectrum", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-instrument-beam-incident-wavelength-spectrum-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "incident_wavelength_spectrum", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility. Note, the NXsource base class\nhas many more fields available, but at present we only require the name.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source. Consistency with the naming in\nhttps://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v50.dic/Items/_diffrn_source.pdbx_synchrotron_site.html\ncontrolled vocabulary is highly recommended.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXmx.html#nxmx-entry-source-name-field", + "https://mmcif.wwpdb.org/dictionaries/mmcif_pdbx_v50.dic/Items/_diffrn_source.pdbx_synchrotron_site.html" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 82, + "m_parent_sub_section": "section_definitions", + "name": "NXnote", + "description": "Any additional freeform information not covered by the other base classes.\n\nThis class can be used to store additional information in a \nNeXus file e.g. pictures, movies, audio, additional text logs", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXnote.html#nxnote-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXnote", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "author", + "description": "Author or creator of note", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXnote.html#nxnote-author-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "author", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "date", + "description": "Date note created/added", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXnote.html#nxnote-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "date", + "nx_optional": false + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Mime content type of note data field e.g. image/jpeg, text/plain, text/html", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXnote.html#nxnote-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "file_name", + "description": "Name of original file name if note was read from an external source", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXnote.html#nxnote-file-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "file_name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Title of an image or other details of the note", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXnote.html#nxnote-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "sequence_index", + "description": "Sequence index of note, for placing a sequence of \nmultiple **NXnote** groups in an order. Starts with 1.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXnote.html#nxnote-sequence-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_POSINT", + "nx_name": "sequence_index", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Binary note data - if text, line terminator is [CR][LF].", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXnote.html#nxnote-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BINARY", + "nx_name": "data", + "nx_optional": true + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Bytes" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 83, + "m_parent_sub_section": "section_definitions", + "name": "NXobject", + "description": "This is the base object of NeXus", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXobject.html#nxobject-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXobject", + "nx_type": "group", + "nx_optional": true + } + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 84, + "m_parent_sub_section": "section_definitions", + "name": "NXoff_geometry", + "description": "Geometry (shape) description.\nThe format closely matches the Object File Format (OFF) which can be output\nby most CAD software.\nIt can be used to describe the shape of any beamline component, including detectors.\nIn the case of detectors it can be used to define the shape of a single pixel, or,\nif the pixel shapes are non-uniform, to describe the shape of the whole detector.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXoff-geometry.html#nxoff-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "vertices", + "description": "List of x,y,z coordinates for vertices.\nThe origin of the coordinates is the position of the parent component, for\nexample the NXdetector which the geometry describes.\nIf the shape describes a single pixel for a detector with uniform pixel\nshape then the origin is the position of each pixel as described by the\n``x/y/z_pixel_offset`` datasets in ``NXdetector``.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXoff-geometry.html#nxoff-geometry-vertices-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "vertices", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "i", + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "winding_order", + "description": "List of indices of vertices in the ``vertices`` dataset to form each face,\nright-hand rule for face normal.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXoff-geometry.html#nxoff-geometry-winding-order-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "winding_order", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "j" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "faces", + "description": "The start index in ``winding_order`` for each face.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXoff-geometry.html#nxoff-geometry-faces-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "faces", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "k" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "detector_faces", + "description": "List of pairs of index in the \"faces\" dataset and detector id. Face IDs in\nthe first column, and corresponding detector IDs in the second column.\nThis dataset should only be used only if the ``NXoff_geometry`` group is\ndescribing a detector.\nNote, the face indices must be in ascending order but need not be\nconsecutive as not every face in faces need be a detecting surface or\nboundary of detecting volume.\nCan use multiple entries with the same detector id to define detector volumes.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXoff-geometry.html#nxoff-geometry-detector-faces-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "detector_faces", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "l", + 2 + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 85, + "m_parent_sub_section": "section_definitions", + "name": "NXoptical_system_em", + "description": "A container for qualifying an electron optical system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXoptical-system-em.html#nxoptical-system-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoptical_system_em", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "camera_length", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXoptical-system-em.html#nxoptical-system-em-camera-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "camera_length", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "magnification", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXoptical-system-em.html#nxoptical-system-em-magnification-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "magnification", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "defocus", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXoptical-system-em.html#nxoptical-system-em-defocus-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "defocus", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "semi_convergence_angle", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXoptical-system-em.html#nxoptical-system-em-semi-convergence-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "semi_convergence_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "field_of_view", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXoptical-system-em.html#nxoptical-system-em-field-of-view-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "field_of_view", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "working_distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXoptical-system-em.html#nxoptical-system-em-working-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "working_distance", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 86, + "m_parent_sub_section": "section_definitions", + "name": "NXorientation", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nDescription for a general orientation of a component - used by :ref:`NXgeometry`", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXorientation.html#nxorientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXorientation", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "The orientation information is stored as direction cosines. The direction cosines will\nbe between the local coordinate directions and the reference directions (to origin or\nrelative NXgeometry). Calling the local unit vectors (x',y',z') and the reference unit\nvectors (x,y,z) the six numbers will be [x' dot x, x' dot y, x' dot z, y' dot x, y' dot\ny, y' dot z] where \"dot\" is the scalar dot product (cosine of the angle between the unit\nvectors). The unit vectors in both the local and reference coordinates are right-handed\nand orthonormal.\n \nThe pair of groups NXtranslation and NXorientation together\ndescribe the position of a component. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXorientation.html#nxorientation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numobj", + 6 + ], + "dimensionality": "1", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/86/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXgeometry", + "description": "Link to another object if we are using relative positioning, else absent", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXorientation.html#nxorientation-geometry-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXgeometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 87, + "m_parent_sub_section": "section_definitions", + "name": "NXparameters", + "description": "Container for parameters, usually used in processing or analysis.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXparameters.html#nxparameters-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXparameters", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "term", + "description": "A parameter (also known as a term) that is used in or results from processing.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXparameters.html#nxparameters-term-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "term", + "nx_minOccurs": "0", + "nx_maxOccurs": "unbounded", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "units", + "variable": false, + "more": { + "nx_name": "units" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 88, + "m_parent_sub_section": "section_definitions", + "name": "NXpdb", + "description": "A NeXus transliteration of a PDB file, to be validated only as a PDB\nrather than in NeXus.\n\nUse :ref:`NXpdb` to incorporate the information in an arbitrary\nPDB into a NeXus file.\n\nThe main suggestion is to use this as a container\nclass for a PDB entry to describe a sample in NXsample,\nbut it may be more appropriate to place this higher in the\nhierarchy, say in NXentry.\n\nThe structure has to follow the structure of a PDB\nwith each PDB data block mapped to a NeXus group of class NXpdb,\nusing a lowercase version of the data block name as the name\nof the NeXus group, each PDB category in that data block\nmapped to a NeXus group of class NXpdb and with each PDB column\nmapped to a NeXus field. Each column in a looped PDB category\nshould always be presented as a 1-dimensional array. The columns \nin an unlooped PDB category should be presented as scalar values. \nIf a PDB category specifies particular units for columns, the same \nunits should beused for the corresponding fields.\n\nA PDB entry is unambigous when all information is carried as text.\nAll text data should be presented as quoted strings, with the quote\nmarks except for the null values \".\" or \"?\"\n\nFor clarity in NXpdb form, numeric data may be presented using the\nnumeric types specified in the mmCIF dictionary. In that case,\nif a PDB null value, \".\" or \"?\", is contained in a numeric column, the\nIEEE nan should be used for \"?\" and the IEEE inf should be used for \".\".\n\nAn arbitrary DDL2 CIF file can be represented in NeXus using NXpdb. \nHowever, if save frames are required, an NXpdb_class attribute with the\nvalue \"CBF_cbfsf\" is required for each NeXus group representing a save\nframe. NXpdb attributes are not required for other CIF components,\nbut may be used to provide internal documentation.\n\nThe nesting of NXpdb groups and datasets that correspond to a CIF with\ntwo categories and one saveframe, including the NXpdb_class attribues is::\n\n (datablock1):NXpdb\n @NXpdb_class:CBF_cbfdb\n (category1):NXpdb\n @NXpdb_class:CBF_cbfcat\n (column_name1):[...]\n (column_name2):[...]\n (column_name3):[...]\n ...\n (category2):NXpdb\n @NXpdb_class:CBF_cbfcat\n (column_name4):[...]\n (column_name5):[...]\n (column_name6):[...]\n ...\n (saveframe1):NXpdb\n @NXpdb_class:CBF_cbfsf\n (category3):NXpdb\n @NXpdb_class:CBF_cbfcat\n (column_name7):[...]\n (column_name8):[...]\n (column_name9):[...]\n ...\n ...\n ...\n\n \n\nFor example, a PDB entry that begins::\n\n data_1YVA\n #\n _entry.id 1YVA\n #\n _audit_conform.dict_name mmcif_pdbx.dic\n _audit_conform.dict_version 5.279\n _audit_conform.dict_location http://mmcif.pdb.org/dictionaries/ascii/mmcif_pdbx.dic\n #\n loop_\n _database_2.database_id\n _database_2.database_code\n PDB 1YVA\n RCSB RCSB031959\n WWPDB D_1000031959\n #\n\nwould produce::\n\n sample:NXsample\n 1yva:NXpdb\n entry:NXpdb\n id:\"1YVA\"\n audit_conform:NXpdb\n dict_name:\"mmcif_pdbx.dic\"\n dict_version:\"5.279\"\n dict_location:\"http://mmcif.pdb.org/dictionaries/ascii/mmcif_pdbx.dic\"\n database_2:NXpdb\n database_id:[\"PDB\",\"RCSB\",\"WWPDB\"]\n database_code:[\"1YVA\",\"RCSB031959\",\"D_1000031959\"]\n\nanother example is the following excerpt from pdb entry 9ins, giving the sequences\nof the two chains::\n\n loop_\n _entity_poly.entity_id\n _entity_poly.nstd_linkage\n _entity_poly.nstd_monomer\n _entity_poly.pdbx_seq_one_letter_code \n _entity_poly.pdbx_seq_one_letter_code_can\n _entity_poly.type\n 1 no no GIVEQCCTSICSLYQLENYCN GIVEQCCTSICSLYQLENYCN polypeptide(L)\n 2 no no FVNQHLCGSHLVEALYLVCGERGFFYTPKA FVNQHLCGSHLVEALYLVCGERGFFYTPKA\n polypeptide(L)\n\nwhich converts to::\n\n entity_poly:NXpdb\n @NXpdb_class:CBF_cbfcat\n entity_id:[\"1\", \"2\"]\n nstd_linkage:[\"no\", \"no\"]\n nstd_monomer:[\"no\", \"no\"]\n pdbx_seq_one_letter_code:[\"GIVEQCCTSICSLYQLENYCN\",\"FVNQHLCGSHLVEALYLVCGERGFFYTPKA\"]\n pdbx_seq_one_letter_code_can:[\"GIVEQCCTSICSLYQLENYCN\",\"FVNQHLCGSHLVEALYLVCGERGFFYTPKA\"]\n type:[\"polypeptide(L)\", \"polypeptide(L)\"]", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpdb.html#nxpdb-group", + "http://mmcif.pdb.org/dictionaries/ascii/mmcif_pdbx.dic", + "http://mmcif.pdb.org/dictionaries/ascii/mmcif_pdbx.dic" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpdb", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 89, + "m_parent_sub_section": "section_definitions", + "name": "NXpeak", + "description": "Description of peaks, their functional form or measured support.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpeak.html#nxpeak-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpeak", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Human-readable identifier to specify which concept/entity\nthe peak represents/identifies.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpeak.html#nxpeak-label-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "label", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "peak_model", + "description": "Is the peak described analytically via a functional form\nor is it empirically defined via measured/reported\nintensity/counts as a function of an independent variable.\n\nIf the functional form is not empirical or gaussian, users\nshould enter other for the peak_model and add relevant details\nin the NXcollection.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpeak.html#nxpeak-peak-model-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "peak_model", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "empirical", + "gaussian", + "lorentzian", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "position", + "description": "In the case of an empirical description of the peak and its shoulders,\nthis array holds the position values for the independent variable.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpeak.html#nxpeak-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "position", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_support" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "intensity", + "description": "In the case of an empirical description of the peak and its shoulders,\nthis array holds the intensity/count values at each position.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpeak.html#nxpeak-intensity-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "intensity", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_support" + ], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/89/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollection", + "description": "In the case of an analytical description (or if peak_model is other) this\ncollection holds parameter of (and eventually) the functional form.\nFor example in the case of Gaussians mu, sigma, cut-off values, \nand background intensity are relevant parameter.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpeak.html#nxpeak-collection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 90, + "m_parent_sub_section": "section_definitions", + "name": "NXpinhole", + "description": "A simple pinhole.\n\nFor more complex geometries, :ref:`NXaperture` should be used.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpinhole.html#nxpinhole-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpinhole", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Points to the path of the last element in the geometry chain that places\nthis object in space. \nWhen followed through that chain is supposed to end at an element depending\non \".\" i.e. the origin of the coordinate system.\nIf desired the location of the slit can also be described relative to\nan NXbeam, which will allow a simple description of a non-centred pinhole.\n\nThe reference direction of the pinhole is parallel with the z axis. The reference\npoint of the pinhole is its center in the x and y axis. The reference point on the z axis is the\nplane which overlaps the side of the opening of the pin hole pointing towards the source (minus on the z axis).\n\n.. image:: pinhole/pinhole.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpinhole.html#nxpinhole-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "diameter", + "description": "Size of the circular hole defining the transmitted beam size.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpinhole.html#nxpinhole-diameter-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "diameter", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/90/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpinhole.html#nxpinhole-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 91, + "m_parent_sub_section": "section_definitions", + "name": "NXpolarizer", + "description": "A spin polarizer.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpolarizer.html#nxpolarizer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpolarizer", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "one of these values: \"crystal\", \"supermirror\", \"3He\"", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpolarizer.html#nxpolarizer-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "composition", + "description": "description of the composition of the polarizing material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpolarizer.html#nxpolarizer-composition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "composition", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "reflection", + "description": "[hkl] values of nominal reflection", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpolarizer.html#nxpolarizer-reflection-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "reflection", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + 3 + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "efficiency", + "description": "polarizing efficiency", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpolarizer.html#nxpolarizer-efficiency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "efficiency", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a polarizer.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpolarizer.html#nxpolarizer-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/91/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpolarizer.html#nxpolarizer-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 92, + "m_parent_sub_section": "section_definitions", + "name": "NXpositioner", + "description": "A generic positioner such as a motor or piezo-electric transducer. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpositioner", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "symbolic or mnemonic name (one word)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "description of positioner", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "best known value of positioner - need [n] as may be scanned", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "raw_value", + "description": "raw value of positioner - need [n] as may be scanned", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-raw-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "raw_value", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "target_value", + "description": "targeted (commanded) value of positioner - need [n] as may be scanned", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-target-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "target_value", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "tolerance", + "description": "maximum allowable difference between target_value and value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-tolerance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "tolerance", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "soft_limit_min", + "description": "minimum allowed limit to set value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-soft-limit-min-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "soft_limit_min", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "soft_limit_max", + "description": "maximum allowed limit to set value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-soft-limit-max-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "soft_limit_max", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "velocity", + "description": "velocity of the positioner (distance moved per unit time)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-velocity-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "velocity", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "acceleration_time", + "description": "time to ramp the velocity up to full speed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-acceleration-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "acceleration_time", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "controller_record", + "description": "Hardware device record, e.g. EPICS process variable, taco/tango ...", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-controller-record-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "controller_record", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a positioner.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/92/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXpositioner.html#nxpositioner-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 93, + "m_parent_sub_section": "section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXprocess.html#nxprocess-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Name of the program used", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXprocess.html#nxprocess-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "sequence_index", + "description": "Sequence index of processing, \nfor determining the order of multiple **NXprocess** steps. \nStarts with 1.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXprocess.html#nxprocess-sequence-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_POSINT", + "nx_name": "sequence_index", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "version", + "description": "Version of the program used", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXprocess.html#nxprocess-version-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "version", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "date", + "description": "Date and time of processing.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXprocess.html#nxprocess-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "date", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "NOTE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/93/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXnote", + "description": "The note will contain information about how the data was processed\nor anything about the data provenance. \nThe contents of the note can be anything that the processing code \ncan understand, or simple text.\n\nThe name will be numbered to allow for ordering of steps.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXprocess.html#nxprocess-note-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXnote", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 94, + "m_parent_sub_section": "section_definitions", + "name": "NXpulser_apm", + "description": "Metadata for laser-, voltage-, or combined pulsing triggering field evaporation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpulser_apm", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "pulse_mode", + "description": "How is field evaporation physically triggered.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-pulse-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "pulse_mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "laser", + "high_voltage", + "laser_and_high_voltage" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "pulse_frequency", + "description": "Frequency with which the high voltage or laser pulser fires.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-pulse-frequency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pulse_frequency", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "pulse_fraction", + "description": "Fraction of the pulse_voltage that is applied in addition\nto the standing_voltage at peak voltage of a pulse.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-pulse-fraction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "pulse_fraction", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "pulsed_voltage", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-pulsed-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pulsed_voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions" + ], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "standing_voltage", + "description": "Direct current voltage between the specimen and the\n(local electrode) in the case of local electrode atom\nprobe (LEAP) instrument.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-standing-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "standing_voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_ions" + ], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "laser_gun", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/94/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "laser_beam", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/94/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "laser_gun", + "description": "Atom probe microscopes use controlled laser, voltage,\nor a combination of pulsing strategies to trigger the\nexcitation and eventual field evaporation/emission of\nan ion during an atom probe microscopy experiment.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-gun-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "laser_gun", + "nx_type": "NXsource", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-gun-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "Nominal wavelength of the laser radiation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-gun-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "power", + "description": "Average power of the laser source while illuminating the specimen.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-gun-power-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "power", + "nx_units": "NX_POWER", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[power]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "pulse_energy", + "description": "Average energy of the laser at peak of each pulse.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-gun-pulse-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pulse_energy", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/94/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/94/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-gun-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Affine transformations which describe the geometry how the\nlaser focusing optics/pinhole-attached coordinate system is\ndefined, how it has to be transformed so that it aligns with\nthe specimen coordinate system.\nA right-handed Cartesian coordinate system, the so-called laser space,\nshould be assumed, whose positive z-axis points\ninto the direction of the propagating laser beam.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-gun-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/119/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "laser_beam", + "description": "Details about specific positions along the focused laser beam\nwhich illuminates the (atom probe) specimen.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "laser_beam", + "nx_type": "NXbeam", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/7" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "pinhole_position", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/94/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "spot_position", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/94/inner_section_definitions/1/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "pinhole_position", + "description": "Track time-dependent settings over the course of the\nmeasurement where the laser beam exits the \nfocusing optics.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-beam-pinhole-position-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "pinhole_position", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "spot_position", + "description": "Track time-dependent settings over the course of the\nmeasurement where the laser hits the specimen.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpulser-apm.html#nxpulser-apm-laser-beam-spot-position-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "spot_position", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 95, + "m_parent_sub_section": "section_definitions", + "name": "NXpump", + "description": "Device to reduce an atmosphere to a controlled remaining pressure level.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpump.html#nxpump-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpump", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "design", + "description": "Principle type of the pump.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXpump.html#nxpump-design-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "design", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "membrane", + "rotary_vane", + "roots", + "turbo_molecular" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 96, + "m_parent_sub_section": "section_definitions", + "name": "NXquadric", + "description": "definition of a quadric surface.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadric.html#nxquadric-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXquadric", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "parameters", + "description": "Ten real values of the matrix that defines the quadric surface\nin projective space. Ordered Q11, Q12, Q13, Q22, Q23, Q33, P1,\nP2, P3, R. Takes a units attribute of dimension reciprocal\nlength. R is scalar. P has dimension reciprocal length, and the\ngiven units. Q has dimension reciprocal length squared, and\nunits the square of those given.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadric.html#nxquadric-parameters-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "parameters", + "nx_units": "NX_PER_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 10 + ], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "surface_type", + "description": "An optional description of the form of the quadric surface:", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadric.html#nxquadric-surface-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "surface_type", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "ELLIPSOID", + "ELLIPTIC_PARABOLOID", + "HYPERBOLIC_PARABOLOID", + "ELLIPTIC_HYPERBOLOID_OF_1_SHEET", + "ELLIPTIC_HYPERBOLOID_OF_2_SHEETS", + "ELLIPTIC_CONE", + "ELLIPTIC_CYLINDER", + "HYPERBOLIC_CYLINDER", + "PARABOLIC_CYLINDER", + "SPHEROID", + "SPHERE", + "PARABOLOID", + "HYPERBOLOID_1_SHEET", + "HYPERBOLOID_2_SHEET", + "CONE", + "CYLINDER", + "PLANE", + "IMAGINARY", + "UNKNOWN" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Path to an :ref:`NXtransformations` that defining the axis on\nwhich the orientation of the surface depends.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadric.html#nxquadric-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 97, + "m_parent_sub_section": "section_definitions", + "name": "NXquadrupole_magnet", + "description": "definition for a quadrupole magnet.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadrupole-magnet.html#nxquadrupole-magnet-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXquadrupole_magnet", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "extended description of the magnet.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadrupole-magnet.html#nxquadrupole-magnet-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "beamline_distance", + "description": "define position of beamline element relative to production target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadrupole-magnet.html#nxquadrupole-magnet-beamline-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beamline_distance", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "set_current", + "description": "current set on supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadrupole-magnet.html#nxquadrupole-magnet-set-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_current", + "nx_units": "NX_CURRENT", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "read_current", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/97/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "read_voltage", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/97/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_current", + "description": "current read from supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadrupole-magnet.html#nxquadrupole-magnet-read-current-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_current", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadrupole-magnet.html#nxquadrupole-magnet-read-current-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_voltage", + "description": "voltage read from supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadrupole-magnet.html#nxquadrupole-magnet-read-voltage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_voltage", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXquadrupole-magnet.html#nxquadrupole-magnet-read-voltage-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 98, + "m_parent_sub_section": "section_definitions", + "name": "NXreflections", + "description": "Reflection data from diffraction experiments ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXreflections", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "experiments", + "description": "The experiments from which the reflection data derives ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-experiments-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiments", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "m" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "h", + "description": "The h component of the miller index ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-h-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "h", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "k", + "description": "The k component of the miller index ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-k-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "k", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "l", + "description": "The l component of the miller index ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-l-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "l", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "id", + "description": "The id of the experiment which resulted in the reflection. If the value\nis greater than 0, the experiments must link to a multi-experiment NXmx\ngroup ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "id", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "reflection_id", + "description": "The id of the reflection. Multiple partials from the same reflection\nshould all have the same id", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-reflection-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "reflection_id", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "entering", + "description": "Is the reflection entering or exiting the Ewald sphere ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-entering-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "entering", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "det_module", + "description": "The detector module on which the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-det-module-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "det_module", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "flags", + "description": "Status flags describing the reflection. \n\nThis is a bit mask. The bits in the mask follow the convention \nused by DIALS, and have the following names:\n\n=== ==========================================\nbit name\n=== ==========================================\n0 ``predicted``\n1 ``observed``\n2 ``indexed``\n3 ``used_in_refinement``\n4 ``strong``\n5 ``reference_spot``\n6 ``dont_integrate``\n7 ``integrated_sum``\n8 ``integrated_prf``\n9 ``integrated``\n10 ``overloaded``\n11 ``overlapped``\n12 ``overlapped_fg``\n13 ``in_powder_ring``\n14 ``foreground_includes_bad_pixels``\n15 ``background_includes_bad_pixels``\n16 ``includes_bad_pixels``\n17 ``bad_shoebox``\n18 ``bad_spot``\n19 ``used_in_modelling``\n20 ``centroid_outlier``\n21 ``failed_during_background_modelling``\n22 ``failed_during_summation``\n23 ``failed_during_profile_fitting``\n24 ``bad_reference``\n=== ==========================================", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-flags-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "flags", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "d", + "description": "The resolution of the reflection ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-d-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "d", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "partiality", + "description": "The partiality of the reflection. \nDividing by this number will inflate the measured \nintensity to the full reflection equivalent.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-partiality-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "partiality", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "predicted_frame", + "description": "The frame on which the bragg peak of the reflection is predicted", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-predicted-frame-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "predicted_frame", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "predicted_x", + "description": "The x position at which the bragg peak of the reflection\nis predicted ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-predicted-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "predicted_x", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "predicted_y", + "description": "The y position at which the bragg peak of the reflection\nis predicted ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-predicted-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "predicted_y", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "predicted_phi", + "description": "The phi angle at which the bragg peak of the reflection is predicted", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-predicted-phi-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "predicted_phi", + "nx_units": "NX_ANGLE", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[angle]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "predicted_px_x", + "description": "The x pixel position at which the bragg peak of the reflection is\npredicted ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-predicted-px-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "predicted_px_x", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "predicted_px_y", + "description": "The y pixel position at which the bragg peak of the reflection is\npredicted ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-predicted-px-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "predicted_px_y", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "observed_frame", + "description": "The estimate of the frame at which the central impact of the\nreflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-frame-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_frame", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "observed_frame_var", + "description": "The variance on the estimate of the frame at which the central\nimpact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-frame-var-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_frame_var", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "observed_frame_errors", + "description": "The standard deviation of the estimate of the frame at which the central\nimpact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-frame-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_frame_errors", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "observed_px_x", + "description": "The estimate of the pixel x position at which the central impact of\nthe reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-px-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_px_x", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "observed_px_x_var", + "description": "The variance on the estimate of the pixel x position at which the\ncentral impact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-px-x-var-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_px_x_var", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "observed_px_x_errors", + "description": "The standard deviation of the estimate of the pixel x position at which the\ncentral impact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-px-x-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_px_x_errors", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "observed_px_y", + "description": "The estimate of the pixel y position at which the central impact of\nthe reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-px-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_px_y", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "observed_px_y_var", + "description": "The variance on the estimate of the pixel y position at which the\ncentral impact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-px-y-var-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_px_y_var", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "observed_px_y_errors", + "description": "The standard deviation of the estimate of the pixel y position at which the\ncentral impact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-px-y-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_px_y_errors", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "observed_phi", + "description": "The estimate of the phi angle at which the central impact of the\nreflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-phi-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_phi", + "nx_units": "NX_ANGLE", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[angle]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "observed_phi_var", + "description": "The variance on the estimate of the phi angle at which the central\nimpact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-phi-var-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_phi_var", + "nx_units": "NX_ANGLE", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[angle]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "observed_phi_errors", + "description": "The standard deviation of the estimate of the phi angle at which the central\nimpact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-phi-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_phi_errors", + "nx_units": "NX_ANGLE", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[angle]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "observed_x", + "description": "The estimate of the x position at which the central\nimpact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_x", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "observed_x_var", + "description": "The variance on the estimate of the x position at which\nthe central impact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-x-var-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_x_var", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "observed_x_errors", + "description": "The standard deviation of the estimate of the x position at which\nthe central impact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-x-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_x_errors", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "observed_y", + "description": "The estimate of the y position at which the central\nimpact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_y", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "observed_y_var", + "description": "The variance on the estimate of the y position at which\nthe central impact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-y-var-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_y_var", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "observed_y_errors", + "description": "The standard deviation of the estimate of the y position at which\nthe central impact of the reflection was recorded ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-observed-y-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "observed_y_errors", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "bounding_box", + "description": "The bounding box around the recorded recorded reflection. \nShould be an integer array of length 6, where the 6 values \nare pixel positions or frame numbers, as follows:\n\n===== ===========================\nindex meaning\n===== ===========================\n0 The lower pixel x position\n1 The upper pixel x position\n2 The lower pixel y position\n3 The upper pixel y position\n4 The lower frame number\n5 The upper frame number\n===== ===========================", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-bounding-box-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "bounding_box", + "nx_units": "NX_UNITLESS", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "0..*", + 6 + ], + "dimensionality": "1", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "background_mean", + "description": "The mean background under the reflection peak ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-background-mean-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "background_mean", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "int_prf", + "description": "The estimate of the reflection intensity by profile fitting ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-int-prf-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "int_prf", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "name": "int_prf_var", + "description": "The variance on the estimate of the reflection intensity by profile\nfitting ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-int-prf-var-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "int_prf_var", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "name": "int_prf_errors", + "description": "The standard deviation of the estimate of the reflection intensity by profile\nfitting ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-int-prf-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "int_prf_errors", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 40, + "m_parent_sub_section": "quantities", + "name": "int_sum", + "description": "The estimate of the reflection intensity by summation ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-int-sum-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "int_sum", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 41, + "m_parent_sub_section": "quantities", + "name": "int_sum_var", + "description": "The variance on the estimate of the reflection intensity by\nsummation ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-int-sum-var-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "int_sum_var", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 42, + "m_parent_sub_section": "quantities", + "name": "int_sum_errors", + "description": "The standard deviation of the estimate of the reflection intensity by\nsummation ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-int-sum-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "int_sum_errors", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 43, + "m_parent_sub_section": "quantities", + "name": "lp", + "description": "The LP correction factor to be applied to the reflection intensities", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-lp-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "lp", + "nx_minOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 44, + "m_parent_sub_section": "quantities", + "name": "prf_cc", + "description": "The correlation of the reflection profile with the reference profile\nused in profile fitting ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-prf-cc-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "prf_cc", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 45, + "m_parent_sub_section": "quantities", + "name": "overlaps", + "description": "An adjacency list specifying the spatial overlaps of reflections. The\nadjacency list is specified using an array data type where the elements\nof the array are the indices of the adjacent overlapped reflection ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-overlaps-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "overlaps", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 46, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "Polar angle of reflection centroid, following the NeXus simple (spherical polar) coordinate system", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[angle]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "description", + "variable": false, + "more": { + "nx_name": "description" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 47, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "Azimuthal angle of reflection centroid, following the NeXus simple (spherical polar) coordinate system", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXreflections.html#nxreflections-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 99, + "m_parent_sub_section": "section_definitions", + "name": "NXreflectron", + "description": "Device for reducing flight time differences of ions in ToF experiments.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXreflectron.html#nxreflectron-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXreflectron", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXreflectron.html#nxreflectron-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Free-text field to specify further details about the reflectron.\nThe field can be used to inform e. g. if the reflectron is flat or curved.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXreflectron.html#nxreflectron-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/99/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/99/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXreflectron.html#nxreflectron-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Affine transformation(s) which detail where the reflectron\nis located relative to e.g. the origin of the specimen space\nreference coordinate system.\nThis group can also be used for specifying how the reflectron\nis rotated relative to the specimen axis.\nThe purpose of these more detailed instrument descriptions\nis to support the creation of a digital twin of the instrument\nfor computational science.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXreflectron.html#nxreflectron-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 100, + "m_parent_sub_section": "section_definitions", + "name": "NXrefscan", + "description": "This is an application definition for a monochromatic scanning reflectometer.\n\nIt does not have the information to calculate the resolution\nsince it does not have any apertures.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXrefscan", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/100/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXrefscan" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/100/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/100/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/100/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/100/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/100/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "monochromator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/100/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/100/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "monochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "monochromator", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "wavelength selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-monochromator-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram has \nbeen obtained through an omega-2theta scan like from a traditional \nsingle detector powder diffractometer.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-control-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-control-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor counts for each step", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-control-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXrefscan.html#nxrefscan-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 101, + "m_parent_sub_section": "section_definitions", + "name": "NXreftof", + "description": "This is an application definition for raw data from a TOF reflectometer. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXreftof", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/101/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXreftof" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/101/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/101/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/101/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/101/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of instrument", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "chopper", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/101/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/101/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "chopper", + "description": "A device blocking the beam in a temporal periodic pattern.\n\nA disk which blocks the beam but has one or more slits to periodically\nlet neutrons through as the disk rotates. Often used in pairs, one\nNXdisk_chopper should be defined for each disk.\n\nThe rotation of the disk is commonly monitored by recording a timestamp for\neach full rotation of disk, by having a sensor in the stationary disk housing\nsensing when it is aligned with a feature (such as a magnet) on the disk.\nWe refer to this below as the \"top-dead-center signal\".\n\nAngles and positive rotation speeds are measured in an anticlockwise\ndirection when facing away from the source.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "chopper", + "nx_type": "NXdisk_chopper", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/31" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance between chopper and sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-chopper-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "xSize", + "ySize", + "nTOF" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Array of time values for each bin in a time-of-flight\nmeasurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-detector-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTOF" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "This is the distance to the previous component in the\ninstrument; most often the sample. The usage depends on the\nnature of the detector: Most often it is the distance of the\ndetector assembly. But there are irregular detectors. In this\ncase the distance must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-detector-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-instrument-detector-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram has \nbeen obtained through an omega-2theta scan like from a traditional \nsingle detector powder diffractometer.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-control-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-control-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "integral", + "description": "Total integral monitor counts", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-control-integral-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "integral", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time channels", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-control-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor counts in each time channel", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-control-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXreftof.html#nxreftof-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 102, + "m_parent_sub_section": "section_definitions", + "name": "NXregion", + "description": "Geometry and logical description of a region of data in a parent group. When used, it could be a child group to, say, :ref:`NXdetector`.\n\nThis can be used to describe a subset of data used to create downsampled data or to derive\nsome data from that subset.\n\nNote, the fields for the rectangular region specifiers follow HDF5\u2019s dataspace hyperslab parameters\n(see https://portal.hdfgroup.org/display/HDF5/H5S_SELECT_HYPERSLAB). Note when **block** :math:`= 1`,\nthen **stride** :math:`\\equiv` **step** in Python slicing.\n\nFor example, a ROI sum of an area starting at index of [20,50] and shape [220,120] in image data::\n\n detector:NXdetector/\n data[60,256,512]\n region:NXregion/\n @region_type = \"rectangular\"\n parent = \"data\"\n start = [20,50]\n count = [220,120]\n statistics:NXdata/\n @signal = \"sum\"\n sum[60]\n\nthe ``sum`` dataset contains the summed areas in each frame.\nAnother example, a hyperspectral image downsampled 16-fold in energy::\n\n detector:NXdetector/\n data[128,128,4096]\n region:NXregion/\n @region_type = \"rectangular\"\n parent = \"data\"\n start = [2]\n count = [20]\n stride = [32]\n block = [16]\n downsampled:NXdata/\n @signal = \"maximum\"\n @auxiliary_signals = \"copy\"\n maximum[128,128,20]\n copy[128,128,320]\n\nthe ``copy`` dataset selects 20 16-channel blocks that start 32 channels apart,\nthe ``maximum`` dataset will show maximum values in each 16-channel block\nin every spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-group", + "https://portal.hdfgroup.org/display/HDF5/H5S_SELECT_HYPERSLAB" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXregion", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "region_type", + "variable": false, + "more": { + "nx_name": "region_type", + "nx_optional": "false" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "rectangular" + ] + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "parent", + "description": "The name of data field in the parent group or the path of a data field relative\nto the parent group (so it could be a field in a subgroup of the parent group)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-parent-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "parent", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "parent_mask", + "description": "The name of an optional mask field in the parent group with rank :math:`\\boldsymbol{R}` and\ndimensions :math:`\\boldsymbol{d}`. For example, this could be ``pixel_mask`` of an\n:ref:`NXdetector`.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-parent-mask-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "parent_mask", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "start", + "description": "The starting position for region in detector data field array.\nThis is recommended as it also defines the region rank.\nIf omitted then defined as an array of zeros.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-start-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "start", + "nx_recommended": "true", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "R" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "count", + "description": "The number of blocks or items in the hyperslab selection.\nIf omitted then defined as an array of dimensions that take into account\nthe other hyperslab selection fields to span the parent data field's shape.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-count-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "count", + "nx_recommended": "true", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "R" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "stride", + "description": "An optional field to define striding used to downsample data.\nIf omitted then defined as an array of ones.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-stride-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "stride", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "R" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "block", + "description": "An optional field to define the block size used to copy or downsample data. In the\n:math:`i`-th dimension, if :math:`\\mathbf{block}[i] < \\mathbf{stride}[i]`\nthen the downsampling blocks have gaps between them; when ``block`` matches ``stride``\nthen the blocks are contiguous; otherwise the blocks overlap.\nIf omitted then defined as an array of ones.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-block-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "block", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "R" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "scale", + "description": "An optional field to define a divisor for scaling of reduced data. For example, in a\ndownsampled sum, it can reduce the maximum values to fit in the domain of the result\ndata type. In an image that is downsampled by summing 2x2 blocks, using\n:math:`\\mathrm{scale}=4` allows the result to fit in the same integer type dataset as\nthe parent dataset.\nIf omitted then no scaling occurs.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-scale-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "scale", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "R" + ], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "downsampled", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/102/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "statistics", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/102/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "downsampled", + "description": "An optional group containing data copied/downsampled from parent group\u2019s data. Its dataset name\nmust reflect how the downsampling is done over each block. So it could be a reduction operation\nsuch as sum, minimum, maximum, mean, mode, median, etc. If downsampling is merely copying each\nblock then use \"copy\" as the name. Where more than one downsample dataset is written\n(specified with ``@signal``) then add ``@auxiliary_signals`` listing the others. In the copy case,\nthe field should have a shape of :math:`(D_0, ..., D_{\\mathbf{O}-1}, \\mathbf{block}[0] * \\mathbf{count}[0], ..., \\mathbf{block}[\\mathbf{R}-1] * \\mathbf{count}[\\mathbf{R}-1])`,\notherwise the expected shape is :math:`(D_0, ..., D_{\\mathbf{O}-1}, \\mathbf{count}[0], ..., \\mathbf{count}[\\mathbf{R}-1])`.\n\nThe following figure shows how blocks are used in downsampling:\n\n.. figure:: region/NXregion-example.png\n :width: 60%\n \n A selection with :math:`\\mathbf{start}=2, \\mathbf{count}=4, \\mathbf{stride}=3, \\mathbf{block}=2` from\n a dataset with shape [13] will result in the ``reduce`` dataset of shape [4] and a ``copy`` dataset of shape [8].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-downsampled-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "downsampled", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "statistics", + "description": "An optional group containing any statistics derived from the region in parent group\u2019s data\nsuch as sum, minimum, maximum, mean, mode, median, rms, variance, etc. Where more than one\nstatistical dataset is written (specified with ``@signal``) then add ``@auxiliary_signals``\nlisting the others. All data fields should have shapes of :math:`\\boldsymbol{D}`.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregion.html#nxregion-statistics-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "statistics", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 103, + "m_parent_sub_section": "section_definitions", + "name": "NXregistration", + "description": "Describes image registration procedures.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregistration.html#nxregistration-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXregistration", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "applied", + "description": "Has the registration been applied?", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregistration.html#nxregistration-applied-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "applied", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "last_process", + "description": "Indicates the name of the last operation applied in the NXprocess sequence.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregistration.html#nxregistration-last-process-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "last_process", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Specifies the position by pointing to the last transformation in the\ntransformation chain in the NXtransformations group.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregistration.html#nxregistration-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of the procedures employed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregistration.html#nxregistration-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/103/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "To describe the operations of image registration (combinations of rigid\ntranslations and rotations)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXregistration.html#nxregistration-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 104, + "m_parent_sub_section": "section_definitions", + "name": "NXroot", + "description": "Definition of the root NeXus group.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXroot.html#nxroot-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXroot", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "NX_class", + "variable": true, + "more": { + "nx_name": "NX_class" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXroot" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "file_time", + "variable": false, + "more": { + "nx_name": "file_time", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "file_name", + "variable": false, + "more": { + "nx_name": "file_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "file_update_time", + "variable": false, + "more": { + "nx_name": "file_update_time", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "NeXus_version", + "variable": true, + "more": { + "nx_name": "NeXus_version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 5, + "m_parent_sub_section": "attributes", + "name": "HDF_version", + "variable": true, + "more": { + "nx_name": "HDF_version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 6, + "m_parent_sub_section": "attributes", + "name": "HDF5_Version", + "variable": true, + "more": { + "nx_name": "HDF5_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 7, + "m_parent_sub_section": "attributes", + "name": "XML_version", + "variable": true, + "more": { + "nx_name": "XML_version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 8, + "m_parent_sub_section": "attributes", + "name": "h5py_version", + "variable": false, + "more": { + "nx_name": "h5py_version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 9, + "m_parent_sub_section": "attributes", + "name": "creator", + "variable": false, + "more": { + "nx_name": "creator" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 10, + "m_parent_sub_section": "attributes", + "name": "creator_version", + "variable": false, + "more": { + "nx_name": "creator_version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 11, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/104/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "entries", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXroot.html#nxroot-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 105, + "m_parent_sub_section": "section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "description": "The chemical formula specified using CIF conventions.\nAbbreviated version of CIF standard: \n\n* Only recognized element symbols may be used.\n* Each element symbol is followed by a 'count' number. A count of '1' may be omitted.\n* A space or parenthesis must separate each cluster of (element symbol + count).\n* Where a group of elements is enclosed in parentheses, the multiplier for the \n group must follow the closing parentheses. That is, all element and group \n multipliers are assumed to be printed as subscripted numbers.\n* Unless the elements are ordered in a manner that corresponds to their chemical \n structure, the order of the elements within any group or moiety depends on \n whether or not carbon is present.\n* If carbon is present, the order should be: \n\n - C, then H, then the other elements in alphabetical order of their symbol. \n - If carbon is not present, the elements are listed purely in alphabetic order of their symbol. \n \n* This is the *Hill* system used by Chemical Abstracts.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-chemical-formula-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "chemical_formula", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Sample temperature. This could be a scanned variable", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_Temp" + ], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "electric_field", + "description": "Applied electric field", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-electric-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "electric_field", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_eField" + ], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "direction", + "variable": false, + "more": { + "nx_name": "direction" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x", + "y", + "z" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "magnetic_field", + "description": "Applied magnetic field", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-magnetic-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "magnetic_field", + "nx_units": "NX_CURRENT", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_mField" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "direction", + "variable": false, + "more": { + "nx_name": "direction" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x", + "y", + "z" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "stress_field", + "description": "Applied external stress field", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-stress-field-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "stress_field", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_sField" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "direction", + "variable": false, + "more": { + "nx_name": "direction" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x", + "y", + "z" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "pressure", + "description": "Applied pressure", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-pressure-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pressure", + "nx_units": "NX_PRESSURE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_pField" + ], + "dimensionality": "[pressure]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "changer_position", + "description": "Sample changer position", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-changer-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "changer_position", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "unit_cell_abc", + "description": "Crystallography unit cell parameters a, b, and c", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-unit-cell-abc-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_abc", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "unit_cell_alphabetagamma", + "description": "Crystallography unit cell parameters alpha, beta, and gamma", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-unit-cell-alphabetagamma-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_alphabetagamma", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "unit_cell", + "description": "Unit cell parameters (lengths and angles)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-unit-cell-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp", + 6 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "unit_cell_volume", + "description": "Volume of the unit cell", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-unit-cell-volume-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_volume", + "nx_units": "NX_VOLUME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "[volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "sample_orientation", + "description": "This will follow the Busing-Levy convention:\nW. R. Busing and H. A. Levy (1967). Acta Cryst. 22, 457-464", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-sample-orientation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sample_orientation", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "orientation_matrix", + "description": "Orientation matrix of single crystal sample using Busing-Levy convention:\nW. R. Busing and H. A. Levy (1967). Acta Cryst. 22, 457-464", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-orientation-matrix-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "orientation_matrix", + "nx_optional": false, + "nx_units": "NX_DIMENSIONLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp", + 3, + 3 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "ub_matrix", + "description": "UB matrix of single crystal sample using Busing-Levy convention:\nW. R. Busing and H. A. Levy (1967). Acta Cryst. 22, 457-464. This is \nthe multiplication of the orientation_matrix, given above, \nwith the :math:`B` matrix which \ncan be derived from the lattice constants. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-ub-matrix-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "ub_matrix", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp", + 3, + 3 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "mass", + "description": "Mass of sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-mass-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mass", + "nx_units": "NX_MASS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "[mass]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "density", + "description": "Density of sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "relative_molecular_mass", + "description": "Relative Molecular Mass of sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-relative-molecular-mass-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "relative_molecular_mass", + "nx_units": "NX_MASS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "[mass]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "sample", + "sample+can", + "can", + "sample+buffer", + "buffer", + "calibration sample", + "normalisation sample", + "simulated data", + "none", + "sample environment" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "situation", + "description": "The atmosphere will be one of the components, which is where \nits details will be stored; the relevant components will be \nindicated by the entry in the sample_component member.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-situation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "situation", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "air", + "vacuum", + "inert atmosphere", + "oxidising atmosphere", + "reducing atmosphere", + "sealed can", + "other" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of the sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "preparation_date", + "description": "Date of preparation of the sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-preparation-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "preparation_date", + "nx_optional": false, + "nx_units": "NX_TIME", + "nx_recommended": "true" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "component", + "description": "Details of the component of the sample and/or can", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-component-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "component", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_comp" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "sample_component", + "description": "Type of component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-sample-component-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "sample_component", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "sample", + "can", + "atmosphere", + "kit" + ] + }, + "shape": [ + "n_comp" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "concentration", + "description": "Concentration of each component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-concentration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "concentration", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "volume_fraction", + "description": "Volume fraction of each component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-volume-fraction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "volume_fraction", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "scattering_length_density", + "description": "Scattering length density of each component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-scattering-length-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "scattering_length_density", + "nx_units": "NX_SCATTERING_LENGTH_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_comp" + ], + "dimensionality": "1 / [area]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "unit_cell_class", + "description": "In case it is all we know and we want to record/document it", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-unit-cell-class-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "unit_cell_class", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "triclinic", + "monoclinic", + "orthorhombic", + "tetragonal", + "rhombohedral", + "hexagonal", + "cubic" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "space_group", + "description": "Crystallographic space group", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-space-group-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "space_group", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_comp" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "point_group", + "description": "Crystallographic point group, deprecated if space_group present", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-point-group-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "point_group", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_comp" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "path_length", + "description": "Path length through sample/can for simple case when \nit does not vary with scattering direction", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-path-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "path_length", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "path_length_window", + "description": "Thickness of a beam entry/exit window on the can (mm) \n- assumed same for entry and exit", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-path-length-window-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "path_length_window", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "thickness", + "description": "sample thickness", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "thickness", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "external_DAC", + "description": "value sent to user's sample setup", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-external-dac-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "external_DAC", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "short_title", + "description": "20 character fixed length sample description for legends", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-short-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "short_title", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram has \nbeen obtained through an omega-2theta scan like from a traditional \nsingle detector powder diffractometer.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "x_translation", + "description": "Translation of the sample along the X-direction of the laboratory coordinate system\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-x-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_translation", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Translation of the sample along the Z-direction of the laboratory coordinate system.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "geometry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "BEAM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE_COMPONENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "transmission", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "temperature_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "temperature_env", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/5", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "magnetic_field", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/6", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "magnetic_field_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/7", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "magnetic_field_env", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/8", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "external_ADC", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "POSITIONER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/10", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/105/inner_section_definitions/12", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry", + "description": "The position and orientation of the center of mass of the sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the sample and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXbeam", + "description": "Details of beam incident on sample - used to calculate sample/beam interaction point", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXbeam", + "nx_type": "NXbeam", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/7" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample_component", + "description": "One group per sample component\nThis is the perferred way of recording per component information over the n_comp arrays", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-sample-component-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample_component", + "nx_type": "NXsample_component", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/106" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "transmission", + "description": "As a function of Wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-transmission-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "transmission", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "temperature_log", + "description": "temperature_log.value is a link to e.g. temperature_env.sensor1.value_log.value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-temperature-log-group" + ], + "deprecated": "use ``temperature``, see: https://github.com/nexusformat/definitions/issues/816", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "temperature_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "temperature_env", + "description": "Additional sample temperature environment information", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-temperature-env-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "temperature_env", + "nx_type": "NXenvironment", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/40" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "magnetic_field", + "description": "magnetic_field.value is a link to e.g. magnetic_field_env.sensor1.value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-magnetic-field-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "magnetic_field", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "magnetic_field_log", + "description": "magnetic_field_log.value is a link to e.g. magnetic_field_env.sensor1.value_log.value", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-magnetic-field-log-group" + ], + "deprecated": "use ``magnetic_field``, see: https://github.com/nexusformat/definitions/issues/816", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "magnetic_field_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "magnetic_field_env", + "description": "Additional sample magnetic environment information", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-magnetic-field-env-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "magnetic_field_env", + "nx_type": "NXenvironment", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/40" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "inner_section_definitions", + "name": "external_ADC", + "description": "logged value (or logic state) read from user's setup", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-external-adc-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "external_ADC", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpositioner", + "description": "Any positioner (motor, PZT, ...) used to locate the sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-positioner-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpositioner", + "nx_type": "NXpositioner", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/92" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the sample", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample.html#nxsample-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 106, + "m_parent_sub_section": "section_definitions", + "name": "NXsample_component", + "description": "One group like this per component can be recorded For a sample consisting of multiple components.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample_component", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "chemical_formula", + "description": "The chemical formula specified using CIF conventions.\nAbbreviated version of CIF standard: \n\n* Only recognized element symbols may be used.\n* Each element symbol is followed by a 'count' number. A count of '1' may be omitted.\n* A space or parenthesis must separate each cluster of (element symbol + count).\n* Where a group of elements is enclosed in parentheses, the multiplier for the \n group must follow the closing parentheses. That is, all element and group \n multipliers are assumed to be printed as subscripted numbers.\n* Unless the elements are ordered in a manner that corresponds to their chemical \n structure, the order of the elements within any group or moiety depends on \n whether or not carbon is present.\n* If carbon is present, the order should be: \n\n - C, then H, then the other elements in alphabetical order of their symbol. \n - If carbon is not present, the elements are listed purely in alphabetic order of their symbol. \n \n* This is the *Hill* system used by Chemical Abstracts.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-chemical-formula-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "chemical_formula", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "unit_cell_abc", + "description": "Crystallography unit cell parameters a, b, and c", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-unit-cell-abc-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_abc", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "unit_cell_alphabetagamma", + "description": "Crystallography unit cell parameters alpha, beta, and gamma", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-unit-cell-alphabetagamma-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_alphabetagamma", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "unit_cell_volume", + "description": "Volume of the unit cell", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-unit-cell-volume-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell_volume", + "nx_units": "NX_VOLUME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "sample_orientation", + "description": "This will follow the Busing and Levy convention from Acta.Crysta v22, p457 (1967)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-sample-orientation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sample_orientation", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "orientation_matrix", + "description": "Orientation matrix of single crystal sample component.\nThis will follow the Busing and Levy convention from Acta.Crysta v22, p457 (1967)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-orientation-matrix-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "orientation_matrix", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "mass", + "description": "Mass of sample component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-mass-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "mass", + "nx_units": "NX_MASS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "density", + "description": "Density of sample component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "density", + "nx_units": "NX_MASS_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass] / [volume]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "relative_molecular_mass", + "description": "Relative Molecular Mass of sample component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-relative-molecular-mass-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "relative_molecular_mass", + "nx_units": "NX_MASS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[mass]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of the sample component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "volume_fraction", + "description": "Volume fraction of component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-volume-fraction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "volume_fraction", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "scattering_length_density", + "description": "Scattering length density of component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-scattering-length-density-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "scattering_length_density", + "nx_units": "NX_SCATTERING_LENGTH_DENSITY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [area]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "unit_cell_class", + "description": "In case it is all we know and we want to record/document it", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-unit-cell-class-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "unit_cell_class", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "triclinic", + "monoclinic", + "orthorhombic", + "tetragonal", + "rhombohedral", + "hexagonal", + "cubic" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "space_group", + "description": "Crystallographic space group", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-space-group-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "space_group", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "point_group", + "description": "Crystallographic point group, deprecated if space_group present", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-point-group-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "point_group", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "transmission", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/106/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "transmission", + "description": "As a function of Wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsample-component.html#nxsample-component-transmission-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "transmission", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 107, + "m_parent_sub_section": "section_definitions", + "name": "NXsas", + "description": "raw, monochromatic 2-D SAS data with an area detector\n\nThis is an application definition for raw data (not processed or reduced data) \nfrom a 2-D small angle scattering instrument collected with a monochromatic \nbeam and an area detector. It is meant to be suitable both for neutron SANS \nand X-ray SAXS data. \n\nIt covers all raw data from any monochromatic SAS techniques that\nuse an area detector: SAS, WSAS, grazing incidence, GISAS\n\nIt covers all raw data from any SAS techniques\nthat use an area detector\nand a monochromatic beam.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXsas", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "entry", + "variable": false, + "more": { + "nx_name": "entry" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXsas" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of the instrument actually used to perform the experiment", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "source", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "monochromator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "collimator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "source", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "source", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of the radiation source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "monochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "monochromator", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "The wavelength of the radiation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-monochromator-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "wavelength_spread", + "description": "delta_lambda/lambda (:math:`\\Delta\\lambda/\\lambda`):\nImportant for resolution calculations", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-monochromator-wavelength-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength_spread", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "collimator", + "description": "A beamline collimator.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-collimator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "collimator", + "nx_type": "NXcollimator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/17" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "geometry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-collimator-geometry-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry", + "nx_type": "NXgeometry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/107/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-collimator-geometry-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-collimator-geometry-shape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxcylinder", + "nxbox" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "The collimation length", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-collimator-geometry-shape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "This is area detector data, of number of x-pixel versus\nnumber of y-pixels. Since the beam center is to be\ndetermined as a step of data reduction, it is not necessary\nto document or assume the position of the beam center in\nacquired data.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nXPixel", + "nYPixel" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "The distance between detector and sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Physical size of a pixel in x-direction", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of a pixel in y direction", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "This is the azimuthal angle angle of the detector towards\nthe previous component in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the azimuthal_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the azimuthal_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "aequatorial_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-aequatorial-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "aequatorial_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "beam_center_x", + "description": "This is the x position where the direct beam would hit the detector. This is a\nlength, not a pixel position, and can be outside of the actual detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-beam-center-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_x", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "beam_center_y", + "description": "This is the y position where the direct beam would hit the detector. This is a\nlength, not a pixel position, and can be outside of the actual detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-instrument-detector-beam-center-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_y", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "aequatorial_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-sample-aequatorial-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "aequatorial_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time \n(timer) or received monitor counts (monitor). ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-control-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-control-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "integral", + "description": "Total integral monitor counts", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-control-integral-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "integral", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsas.html#nxsas-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 108, + "m_parent_sub_section": "section_definitions", + "name": "NXsastof", + "description": "raw, 2-D SAS data with an area detector with a time-of-flight source\n\nIt covers all raw data from any SAS techniques\nthat use an area detector\nat a time-of-flight source.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXsastof", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "entry", + "variable": false, + "more": { + "nx_name": "entry" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXsastof" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of the instrument actually used to perform the experiment", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "source", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "collimator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "source", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "source", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of the radiation source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "collimator", + "description": "A beamline collimator.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-collimator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "collimator", + "nx_type": "NXcollimator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/17" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "geometry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-collimator-geometry-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry", + "nx_type": "NXgeometry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/108/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-collimator-geometry-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-collimator-geometry-shape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxcylinder", + "nxbox" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "The collimation length", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-collimator-geometry-shape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "This is area detector data, of number of x-pixel versus\nnumber of y-pixels. Since the beam center is to be\ndetermined as a step of data reduction, it is not necessary\nto document or assume the position of the beam center in\nacquired data.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nXPixel", + "nYPixel", + "nTOF" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Total time of flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTOF" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "The distance between detector and sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Physical size of a pixel in x-direction", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of a pixel in y direction", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "This is the azimuthal angle angle of the detector towards\nthe previous component in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the azimuthal_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the azimuthal_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "aequatorial_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-aequatorial-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "aequatorial_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "beam_center_x", + "description": "This is the x position where the direct beam would hit the detector. This is a\nlength, not a pixel position, and can be outside of the actual detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-beam-center-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_x", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "beam_center_y", + "description": "This is the y position where the direct beam would hit the detector. This is a\nlength, not a pixel position, and can be outside of the actual detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-instrument-detector-beam-center-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_y", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "aequatorial_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-sample-aequatorial-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "aequatorial_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer) or received monitor counts (monitor). ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-control-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-control-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-control-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nTOF" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time-of-flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-control-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTOF" + ], + "dimensionality": "[time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsastof.html#nxsastof-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 109, + "m_parent_sub_section": "section_definitions", + "name": "NXscan", + "description": "Application definition for a generic scan instrument. \n\nThis definition is more an \nexample then a stringent definition as the content of a given NeXus scan file needs to \ndiffer for different types of scans. This example definition shows a scan like done \non a rotation camera: the sample is rotated and a detector image, the rotation angle\nand a monitor value is stored at each step in the scan. In the following, the symbol \n``NP`` is used to represent the number of scan points. These are the rules for \nstoring scan data in NeXus files which are implemented in this example:\n\n* Each value varied throughout a scan is stored as an array of \n length ``NP`` at its respective location within the NeXus hierarchy.\n* For area detectors, ``NP`` is the first dimension, \n example for a detector of 256x256: ``data[NP,256,256]``\n* The NXdata group contains links to all variables varied in the scan and the data. \n This to give an equivalent to the more familiar classical tabular representation of scans. \n\nThese rules exist for a reason: HDF allows the first dimension of a data set to be \nunlimited. This means the data can be appended too. Thus a NeXus file built according \nto the rules given above can be used in the following way:\n\n* At the start of a scan, write all the static information.\n* At each scan point, append new data from varied variables \n and the detector to the file.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXscan", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/109/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXscan" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/109/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/109/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/109/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/109/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/109/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nP", + "xDim", + "yDim" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram has \nbeen obtained through an omega-2theta scan like from a traditional \nsingle detector powder diffractometer.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXscan.html#nxscan-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 110, + "m_parent_sub_section": "section_definitions", + "name": "NXscanbox_em", + "description": "Scan box and coils which deflect an electron beam in a controlled manner.\n\nIn electron microscopy, the scan box is instructed by the microscope\ncontrol software. This component directs the probe to controlled\nlocations according to a scan scheme and plan.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXscanbox_em", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "calibration_style", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-calibration-style-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "calibration_style", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "center", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-center-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "center", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "flyback_time", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-flyback-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "flyback_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "line_time", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-line-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "line_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "pixel_time", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-pixel-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pixel_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "requested_pixel_time", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-requested-pixel-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "requested_pixel_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "rotation", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-rotation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "ac_line_sync", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXscanbox-em.html#nxscanbox-em-ac-line-sync-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "ac_line_sync", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 111, + "m_parent_sub_section": "section_definitions", + "name": "NXsensor", + "description": "A sensor used to monitor an external condition \n\nThe condition itself is described in :ref:`NXenvironment`.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsensor", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "model", + "description": "Sensor identification code/model number", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-model-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "model", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name for the sensor", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "short_name", + "description": "Short name of sensor used e.g. on monitor display program", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-short-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "short_name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "attached_to", + "description": "where sensor is attached to (\"sample\" | \"can\")", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-attached-to-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "attached_to", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "measurement", + "description": "name for measured signal", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-measurement-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "measurement", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "temperature", + "pH", + "magnetic_field", + "electric_field", + "conductivity", + "resistance", + "voltage", + "pressure", + "flow", + "stress", + "strain", + "shear", + "surface_pressure" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "The type of hardware used for the measurement. \nExamples (suggestions but not restrictions):\n\n:Temperature:\n J | K | T | E | R | S | Pt100 | Rh/Fe\n:pH:\n Hg/Hg2Cl2 | Ag/AgCl | ISFET\n:Ion selective electrode:\n specify species; e.g. Ca2+\n:Magnetic field:\n Hall\n:Surface pressure:\n wilhelmy plate", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "run_control", + "description": "Is data collection controlled or synchronised to this quantity: \n1=no, 0=to \"value\", 1=to \"value_deriv1\", etc.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-run-control-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "run_control", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "high_trip_value", + "description": "Upper control bound of sensor reading if using run_control", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-high-trip-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "high_trip_value", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "low_trip_value", + "description": "Lower control bound of sensor reading if using run_control", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-low-trip-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "low_trip_value", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "nominal setpoint or average value \n- need [n] as may be a vector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "value_deriv1", + "description": "Nominal/average first derivative of value \ne.g. strain rate \n- same dimensions as \"value\" (may be a vector)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-value-deriv1-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value_deriv1", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "value_deriv2", + "description": "Nominal/average second derivative of value\n- same dimensions as \"value\" (may be a vector)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-value-deriv2-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value_deriv2", + "nx_units": "NX_ANY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "0..*" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "external_field_brief", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-external-field-brief-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "external_field_brief", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "along beam", + "across beam", + "transverse", + "solenoidal", + "flow shear gradient", + "flow vorticity" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a sensor.\n ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "geometry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/111/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "value_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/111/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "value_deriv1_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/111/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "value_deriv2_log", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/111/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "external_field_full", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/111/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/111/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/111/inner_section_definitions/6", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry", + "description": "Defines the axes for logged vector quantities if they are not the global instrument axes.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the beamstop and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "value_log", + "description": "Time history of sensor readings", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-value-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "value_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "value_deriv1_log", + "description": "Time history of first derivative of sensor readings", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-value-deriv1-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "value_deriv1_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "value_deriv2_log", + "description": "Time history of second derivative of sensor readings", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-value-deriv2-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "value_deriv2_log", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "external_field_full", + "description": "For complex external fields not satisfied by External_field_brief", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-external-field-full-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "external_field_full", + "nx_type": "NXorientation", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/86" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the sensor when necessary.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsensor.html#nxsensor-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 112, + "m_parent_sub_section": "section_definitions", + "name": "NXseparator", + "description": "definition for an electrostatic separator.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXseparator", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "extended description of the separator.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "beamline_distance", + "description": "define position of beamline element relative to production target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-beamline-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beamline_distance", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "set_Bfield_current", + "description": "current set on magnet supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-set-bfield-current-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_Bfield_current", + "nx_units": "NX_CURRENT", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "set_Efield_voltage", + "description": "current set on HT supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-set-efield-voltage-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_Efield_voltage", + "nx_units": "NX_VOLTAGE", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "read_Bfield_current", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/112/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "read_Bfield_voltage", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/112/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "read_Efield_current", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/112/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "read_Efield_voltage", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/112/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_Bfield_current", + "description": "current read from magnet supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-read-bfield-current-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_Bfield_current", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-read-bfield-current-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_Bfield_voltage", + "description": "voltage read from magnet supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-read-bfield-voltage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_Bfield_voltage", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-read-bfield-voltage-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_Efield_current", + "description": "current read from HT supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-read-efield-current-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_Efield_current", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-read-efield-current-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_Efield_voltage", + "description": "voltage read from HT supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-read-efield-voltage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_Efield_voltage", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXseparator.html#nxseparator-read-efield-voltage-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 113, + "m_parent_sub_section": "section_definitions", + "name": "NXshape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXshape.html#nxshape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXshape", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXshape.html#nxshape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxflat", + "nxcylinder", + "nxbox", + "nxsphere", + "nxcone", + "nxelliptical", + "nxtoroidal", + "nxparabolic", + "nxpolynomial" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "physical extent of the object along its local axes (after NXorientation) \nwith the center of mass at the local origin (after NXtranslation).\nThe meaning and location of these axes will vary according to the value \nof the \"shape\" variable. \n``nshapepar`` defines how many parameters: \n\n- For \"nxcylinder\" type the parameters are (diameter,height) and a three value orientation vector of the cylinder. \n- For the \"nxbox\" type the parameters are (length,width,height). \n- For the \"nxsphere\" type the parameters are (diameter).\n- For nxcone cone half aperture\n- For nxelliptical, semi-major axis, semi-minor-axis, angle of major axis and pole\n- For nxtoroidal, major radius, minor radius\n- For nxparabolic, parabolic parameter a\n- For nxpolynomial, an array of polynom coefficients, the dimension of the array \n encodes the degree of the polynom", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXshape.html#nxshape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numobj", + "nshapepar" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "direction", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXshape.html#nxshape-direction-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "direction", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "concave", + "convex" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 114, + "m_parent_sub_section": "section_definitions", + "name": "NXslit", + "description": "A simple slit.\n\nFor more complex geometries, :ref:`NXaperture` should be used.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXslit.html#nxslit-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXslit", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Points to the path of the last element in the geometry chain that places\nthis object in space. \nWhen followed through that chain is supposed to end at an element depending\non \".\" i.e. the origin of the coordinate system.\nIf desired the location of the slit can also be described relative to\nan NXbeam, which will allow a simple description of a non-centred slit.\n\nThe reference plane of the slit is orthogonal to the z axis and includes the\nsurface that is the entry surface of the slit. The reference point of the slit\nis the centre of the slit opening in the x and y axis on the reference plane.\nThe reference point on the z axis is the reference plane.\n\n.. image:: slit/slit.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXslit.html#nxslit-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_gap", + "description": "Size of the gap opening in the first dimension of the local\ncoordinate system.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXslit.html#nxslit-x-gap-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "x_gap", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "y_gap", + "description": "Size of the gap opening in the second dimension of the local\ncoordinate system.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXslit.html#nxslit-y-gap-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "y_gap", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/114/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXslit.html#nxslit-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 115, + "m_parent_sub_section": "section_definitions", + "name": "NXsnsevent", + "description": "This is a definition for event data from Spallation Neutron Source (SNS) at ORNL.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXsnsevent", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "collection_identifier", + "description": "User or Data Acquisition defined group of NeXus files or NXentry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-collection-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "collection_title", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-collection-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_title", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NXDL schema after this file goes to applications.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXsnsevent" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Duration of measurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "entry_identifier", + "description": "unique identifier for the measurement, defined by the facility.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-entry-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "entry_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "experiment_identifier", + "description": "Unique identifier for the experiment,\ndefined by the facility,\npossibly linked to the proposals", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-experiment-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "notes", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-notes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "notes", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "repeats": false, + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "proton_charge", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-proton-charge-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "proton_charge", + "nx_units": "NX_CHARGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[charge]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "raw_frames", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-raw-frames-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "raw_frames", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "run_number", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-run-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "run_number", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "total_counts", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-total-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "total_counts", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "total_uncounted_counts", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-total-uncounted-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "total_uncounted_counts", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DASlogs", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SNSHistoTool", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "EVENT_DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/6", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "USER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/7", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "DASlogs", + "description": "Details of all logs, both from cvinfo file and from HistoTool (frequency and proton_charge).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "DASlogs", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "LOG", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "POSITIONER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlog", + "description": "Information recorded as a function of time.\n\nDescription of information that is recorded against\ntime. There are two common use cases for this:\n\n- When logging data such as temperature during a run\n- When data is taken in streaming mode data acquisition,\n i.e. just timestamp, value pairs are stored and\n correlated later in data reduction with other data,\n\n\nIn both cases, NXlog contains\nthe logged or streamed values and the times at which they were measured as elapsed time since a starting\ntime recorded in ISO8601 format. The time units are\nspecified in the units attribute. An optional scaling attribute\ncan be used to accomodate non standard clocks.\n\n\nThis method of storing logged data helps to distinguish\ninstances in which a variable is a dimension scale of the data, in which case it is stored\nin an :ref:`NXdata` group, and instances in which it is logged during the\nrun, when it should be stored in an :ref:`NXlog` group.\n\nIn order to make random access to timestamped data faster there is an optional array pair of\n``cue_timestamp_zero`` and ``cue_index``. The ``cue_timestamp_zero`` will\ncontain coarser timestamps than in the time array, say\nevery five minutes. The ``cue_index`` will then contain the\nindex into the time,value pair of arrays for that\ncoarser ``cue_timestamp_zero``.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlog", + "nx_type": "NXlog", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "average_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-average-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "average_value_error", + "description": "estimated uncertainty (often used: standard deviation) of average_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-average-value-error-field" + ], + "deprecated": "see https://github.com/nexusformat/definitions/issues/821", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_error", + "nx_units": "NX_ANY", + "nx_optional": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "average_value_errors", + "description": "estimated uncertainty (often used: standard deviation) of average_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-average-value-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_errors", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of logged value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Total time log was taken", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "maximum_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-maximum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "maximum_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "minimum_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-minimum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "minimum_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "time", + "description": "Time of logged entry. The times are relative to the \"start\" attribute\nand in the units specified in the \"units\"\nattribute. Please note that absolute\ntimestamps under unix are relative to ``1970-01-01T00:00:00.0Z``.\n\nThe scaling_factor, when present, has to be applied to the time values in order\nto arrive at the units specified in the units attribute. The scaling_factor allows\nfor arbitrary time units such as ticks of some hardware clock.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nvalue" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "start", + "variable": false, + "more": { + "nx_name": "start", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "scaling_factor", + "variable": false, + "more": { + "nx_name": "scaling_factor", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-log-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nvalue" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpositioner", + "description": "Motor logs from cvinfo file.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpositioner", + "nx_type": "NXpositioner", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/92" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "average_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-average-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "average_value_error", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-average-value-error-field" + ], + "deprecated": "see https://github.com/nexusformat/definitions/issues/821", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_error", + "nx_optional": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "average_value_errors", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-average-value-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_errors", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "description of positioner", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "duration", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "maximum_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-maximum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "maximum_value", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "minimum_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-minimum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "minimum_value", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "time", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numvalue" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "best known value of positioner - need [n] as may be scanned", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-daslogs-positioner-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numvalue" + ], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "SNSHistoTool", + "description": "Any additional freeform information not covered by the other base classes.\n\nThis class can be used to store additional information in a \nNeXus file e.g. pictures, movies, audio, additional text logs", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-snshistotool-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "SNSHistoTool", + "nx_type": "NXnote", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "SNSbanking_file_name", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-snshistotool-snsbanking-file-name-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNSbanking_file_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "SNSmapping_file_name", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-snshistotool-snsmapping-file-name-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNSmapping_file_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "author", + "description": "Author or creator of note", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-snshistotool-author-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "author", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "command1", + "description": "Command string for event2nxl.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-snshistotool-command1-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "command1", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "date", + "description": "Date note created/added", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-snshistotool-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "date", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Title of an image or other details of the note", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-snshistotool-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "version", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-snshistotool-version-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "version", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXevent_data", + "description": "NXevent_data is a special group for storing data from neutron\ndetectors in event mode. In this mode, the detector electronics\nemits a stream of detectorID, timestamp pairs. With detectorID\ndescribing the detector element in which the neutron was detected\nand timestamp the timestamp at which the neutron event was\ndetected. In NeXus detectorID maps to event_id, event_time_offset\nto the timestamp.\n\nAs this kind of data is common at pulsed neutron\nsources, the timestamp is almost always relative to the start of a\nneutron pulse. Thus the pulse timestamp is recorded too together\nwith an index in the event_id, event_time_offset pair at which data for\nthat pulse starts. At reactor source the same pulsed data effect\nmay be achieved through the use of choppers or in stroboscopic\nmeasurement setups. \n\nIn order to make random access to timestamped data\nfaster there is an optional array pair of\ncue_timestamp_zero and cue_index. The cue_timestamp_zero will\ncontain courser timestamps then in the time array, say\nevery five minutes. The cue_index will then contain the\nindex into the event_id,event_time_offset pair of arrays for that\ncourser cue_timestamp_zero. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-event-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXevent_data", + "nx_type": "NXevent_data", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/41" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "SNSdetector_calibration_id", + "description": "Detector calibration id from DAS.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-snsdetector-calibration-id-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNSdetector_calibration_id", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "SNSgeometry_file_name", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-snsgeometry-file-name-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNSgeometry_file_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "SNStranslation_service", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-snstranslation-service-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNStranslation_service", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "beamline", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-beamline-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "beamline", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of instrument", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SNS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DISK_CHOPPER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "moderator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "ATTENUATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "POLARIZER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "CRYSTAL", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/7", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "SNS", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-sns-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "SNS", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "frequency", + "description": "Frequency of pulsed source", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-sns-frequency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "frequency", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-sns-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-sns-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "muon", + "electron", + "ultraviolet", + "visible light", + "positron", + "proton" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-sns-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "This is the azimuthal angle angle of the detector towards\nthe previous component in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the azimuthal_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the azimuthal_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numx", + "numy" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data_x_y", + "description": "expect ``signal=2 axes=\"x_pixel_offset,y_pixel_offset``\"", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-data-x-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "data_x_y", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numx", + "numy" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "This is the distance to the previous component in the\ninstrument; most often the sample. The usage depends on the\nnature of the detector: Most often it is the distance of the\ndetector assembly. But there are irregular detectors. In this\ncase the distance must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numx", + "numy" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "event_index", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-event-index-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "event_index", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numpulses" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "event_pixel_id", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-event-pixel-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "event_pixel_id", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numevents" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "event_time_of_flight", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-event-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "event_time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numevents" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "pixel_id", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-pixel-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "pixel_id", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numx", + "numy" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numx", + "numy" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "pulse_time", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-pulse-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pulse_time", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numpulses" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "total_counts", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-total-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "total_counts", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_pixel_offset", + "description": "Offset from the detector center in x-direction.\nCan be multidimensional when needed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-x-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numx" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "y_pixel_offset", + "description": "Offset from the detector center in the y-direction.\nCan be multidimensional when different values are required for each pixel.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-y-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_axis": "2", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numy" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "2" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "origin", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "origin", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "origin", + "nx_type": "NXgeometry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "orientation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/1/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/1/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "translation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/1/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "orientation", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nDescription for a general orientation of a component - used by :ref:`NXgeometry`", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "orientation", + "nx_type": "NXorientation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/86" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Six out of nine rotation parameters.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-orientation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-shape-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-shape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxflat", + "nxcylinder", + "nxbox", + "nxsphere", + "nxcone", + "nxelliptical", + "nxtoroidal", + "nxparabolic", + "nxpolynomial" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "physical extent of the object along its local axes (after NXorientation) \nwith the center of mass at the local origin (after NXtranslation).\nThe meaning and location of these axes will vary according to the value \nof the \"shape\" variable. \n``nshapepar`` defines how many parameters: \n\n- For \"nxcylinder\" type the parameters are (diameter,height) and a three value orientation vector of the cylinder. \n- For the \"nxbox\" type the parameters are (length,width,height). \n- For the \"nxsphere\" type the parameters are (diameter).\n- For nxcone cone half aperture\n- For nxelliptical, semi-major axis, semi-minor-axis, angle of major axis and pole\n- For nxtoroidal, major radius, minor radius\n- For nxparabolic, parabolic parameter a\n- For nxpolynomial, an array of polynom coefficients, the dimension of the array \n encodes the degree of the polynom", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-shape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "translation", + "description": "legacy class - (used by :ref:`NXgeometry`) - general spatial location of a component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-translation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "translation", + "nx_type": "NXtranslation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/139" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-detector-origin-translation-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdisk_chopper", + "description": "A device blocking the beam in a temporal periodic pattern.\n\nA disk which blocks the beam but has one or more slits to periodically\nlet neutrons through as the disk rotates. Often used in pairs, one\nNXdisk_chopper should be defined for each disk.\n\nThe rotation of the disk is commonly monitored by recording a timestamp for\neach full rotation of disk, by having a sensor in the stationary disk housing\nsensing when it is aligned with a feature (such as a magnet) on the disk.\nWe refer to this below as the \"top-dead-center signal\".\n\nAngles and positive rotation speeds are measured in an anticlockwise\ndirection when facing away from the source.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-disk-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdisk_chopper", + "nx_type": "NXdisk_chopper", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/11" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Effective distance to the origin.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-disk-chopper-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "moderator", + "description": "A neutron moderator", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-moderator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "moderator", + "nx_type": "NXmoderator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/76" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "coupling_material", + "description": "The material used for coupling. Usually Cd.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-moderator-coupling-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "coupling_material", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Effective distance as seen by measuring radiation.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-moderator-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "average/nominal moderator temperature", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-moderator-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-moderator-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "H20", + "D20", + "Liquid H2", + "Liquid CH4", + "Liquid D2", + "Solid D2", + "C", + "Solid CH4", + "Solid H2" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture", + "description": "A beamline aperture. This group is deprecated, use NXslit instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture", + "nx_type": "NXaperture", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_pixel_offset", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-x-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "origin", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/4/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "origin", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "origin", + "nx_type": "NXgeometry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "orientation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/4/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/4/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "translation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/4/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "orientation", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nDescription for a general orientation of a component - used by :ref:`NXgeometry`", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "orientation", + "nx_type": "NXorientation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/86" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Six out of nine rotation parameters.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-orientation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-shape-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-shape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxflat", + "nxcylinder", + "nxbox", + "nxsphere", + "nxcone", + "nxelliptical", + "nxtoroidal", + "nxparabolic", + "nxpolynomial" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "physical extent of the object along its local axes (after NXorientation) \nwith the center of mass at the local origin (after NXtranslation).\nThe meaning and location of these axes will vary according to the value \nof the \"shape\" variable. \n``nshapepar`` defines how many parameters: \n\n- For \"nxcylinder\" type the parameters are (diameter,height) and a three value orientation vector of the cylinder. \n- For the \"nxbox\" type the parameters are (length,width,height). \n- For the \"nxsphere\" type the parameters are (diameter).\n- For nxcone cone half aperture\n- For nxelliptical, semi-major axis, semi-minor-axis, angle of major axis and pole\n- For nxtoroidal, major radius, minor radius\n- For nxparabolic, parabolic parameter a\n- For nxpolynomial, an array of polynom coefficients, the dimension of the array \n encodes the degree of the polynom", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-shape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "translation", + "description": "legacy class - (used by :ref:`NXgeometry`) - general spatial location of a component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-translation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "translation", + "nx_type": "NXtranslation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/139" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-aperture-origin-translation-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXattenuator", + "description": "A device that reduces the intensity of a beam by attenuation.\n\nIf uncertain whether to use :ref:`NXfilter` (band-pass filter)\nor :ref:`NXattenuator` (reduces beam intensity), then choose \n:ref:`NXattenuator`.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-attenuator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXattenuator", + "nx_type": "NXattenuator", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance from sample. Note, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-attenuator-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpolarizer", + "description": "A spin polarizer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-polarizer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpolarizer", + "nx_type": "NXpolarizer", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/21" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcrystal", + "description": "A crystal monochromator or analyzer. \n\nPermits double bent\nmonochromator comprised of multiple segments with anisotropic \nGaussian mosaic.\n\nIf curvatures are set to zero or are absent, array \nis considered to be flat.\n\nScattering vector is perpendicular to surface. Crystal is oriented\nparallel to beam incident on crystal before rotation, and lies in\nvertical plane.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcrystal", + "nx_type": "NXcrystal", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type or material of monochromating substance. \nChemical formula can be specified separately.\nUse the \"reflection\" field to indicate the (hkl) orientation.\nUse the \"d_spacing\" field to record the lattice plane spacing.\n\nThis field was changed (2010-11-17) from an enumeration to\na string since common usage showed a wider variety of use\nthan a simple list. These are the items in the list at \nthe time of the change: PG (Highly Oriented Pyrolytic Graphite) |\nGe | Si | Cu | Fe3Si | CoFe | Cu2MnAl (Heusler) | Multilayer |\nDiamond.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "Optimum diffracted wavelength", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "origin", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/7/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "origin", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "origin", + "nx_type": "NXgeometry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Optional description/label. Probably only present if we are\nan additional reference point for components rather than the\nlocation of a real component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "orientation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/7/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/7/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "translation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/115/inner_section_definitions/0/inner_section_definitions/4/inner_section_definitions/7/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "orientation", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nDescription for a general orientation of a component - used by :ref:`NXgeometry`", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "orientation", + "nx_type": "NXorientation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/86" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Six out of nine rotation parameters.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-orientation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-shape-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-shape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxflat", + "nxcylinder", + "nxbox", + "nxsphere", + "nxcone", + "nxelliptical", + "nxtoroidal", + "nxparabolic", + "nxpolynomial" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "physical extent of the object along its local axes (after NXorientation) \nwith the center of mass at the local origin (after NXtranslation).\nThe meaning and location of these axes will vary according to the value \nof the \"shape\" variable. \n``nshapepar`` defines how many parameters: \n\n- For \"nxcylinder\" type the parameters are (diameter,height) and a three value orientation vector of the cylinder. \n- For the \"nxbox\" type the parameters are (length,width,height). \n- For the \"nxsphere\" type the parameters are (diameter).\n- For nxcone cone half aperture\n- For nxelliptical, semi-major axis, semi-minor-axis, angle of major axis and pole\n- For nxtoroidal, major radius, minor radius\n- For nxparabolic, parabolic parameter a\n- For nxpolynomial, an array of polynom coefficients, the dimension of the array \n encodes the degree of the polynom", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-shape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "translation", + "description": "legacy class - (used by :ref:`NXgeometry`) - general spatial location of a component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-translation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "translation", + "nx_type": "NXtranslation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/139" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-instrument-crystal-origin-translation-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "expect ``signal=1 axes=\"time_of_flight\"``", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numtimechannels" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance of monitor from sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-monitor-distance-field" + ], + "deprecated": "Use transformations/distance instead", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time-of-flight", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-monitor-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numtimechannels + 1" + ], + "dimensionality": "[time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "changer_position", + "description": "Sample changer position", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-sample-changer-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "changer_position", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "holder", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-sample-holder-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "holder", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "identifier", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-sample-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "nature", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-sample-nature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "nature", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXuser", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXuser", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/4" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "facility_user_id", + "description": "facility based unique identifier for this person \ne.g. their identification code on the facility \naddress/contact database", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-user-facility-user-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "facility_user_id", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of user responsible for this entry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-user-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "role", + "description": "Role of user responsible for this entry.\nSuggested roles are \"local_contact\", \n\"principal_investigator\", and \"proposer\"", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnsevent.html#nxsnsevent-entry-user-role-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "role", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 116, + "m_parent_sub_section": "section_definitions", + "name": "NXsnshisto", + "description": "This is a definition for histogram data from Spallation Neutron Source (SNS) at ORNL.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXsnshisto", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "collection_identifier", + "description": "User or Data Acquisition defined group of NeXus files or NXentry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-collection-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "collection_title", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-collection-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_title", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NXDL schema after this file goes to applications.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXsnshisto" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Duration of measurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "entry_identifier", + "description": "unique identifier for the measurement, defined by the facility.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-entry-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "entry_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "experiment_identifier", + "description": "Unique identifier for the experiment,\ndefined by the facility,\npossibly linked to the proposals", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-experiment-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "notes", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-notes-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "notes", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "repeats": false, + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "proton_charge", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-proton-charge-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "proton_charge", + "nx_units": "NX_CHARGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[charge]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "raw_frames", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-raw-frames-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "raw_frames", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "run_number", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-run-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "run_number", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "total_counts", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-total-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "total_counts", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "total_uncounted_counts", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-total-uncounted-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "total_uncounted_counts", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DASlogs", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SNSHistoTool", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/5", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "USER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/6", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "DASlogs", + "description": "Details of all logs, both from cvinfo file and from HistoTool (frequency and proton_charge).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "DASlogs", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "LOG", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "POSITIONER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlog", + "description": "Information recorded as a function of time.\n\nDescription of information that is recorded against\ntime. There are two common use cases for this:\n\n- When logging data such as temperature during a run\n- When data is taken in streaming mode data acquisition,\n i.e. just timestamp, value pairs are stored and\n correlated later in data reduction with other data,\n\n\nIn both cases, NXlog contains\nthe logged or streamed values and the times at which they were measured as elapsed time since a starting\ntime recorded in ISO8601 format. The time units are\nspecified in the units attribute. An optional scaling attribute\ncan be used to accomodate non standard clocks.\n\n\nThis method of storing logged data helps to distinguish\ninstances in which a variable is a dimension scale of the data, in which case it is stored\nin an :ref:`NXdata` group, and instances in which it is logged during the\nrun, when it should be stored in an :ref:`NXlog` group.\n\nIn order to make random access to timestamped data faster there is an optional array pair of\n``cue_timestamp_zero`` and ``cue_index``. The ``cue_timestamp_zero`` will\ncontain coarser timestamps than in the time array, say\nevery five minutes. The ``cue_index`` will then contain the\nindex into the time,value pair of arrays for that\ncoarser ``cue_timestamp_zero``.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlog", + "nx_type": "NXlog", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "average_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-average-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "average_value_error", + "description": "estimated uncertainty (often used: standard deviation) of average_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-average-value-error-field" + ], + "deprecated": "see https://github.com/nexusformat/definitions/issues/821", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_error", + "nx_units": "NX_ANY", + "nx_optional": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "average_value_errors", + "description": "estimated uncertainty (often used: standard deviation) of average_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-average-value-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_errors", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Description of logged value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Total time log was taken", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "maximum_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-maximum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "maximum_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "minimum_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-minimum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "minimum_value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "time", + "description": "Time of logged entry. The times are relative to the \"start\" attribute\nand in the units specified in the \"units\"\nattribute. Please note that absolute\ntimestamps under unix are relative to ``1970-01-01T00:00:00.0Z``.\n\nThe scaling_factor, when present, has to be applied to the time values in order\nto arrive at the units specified in the units attribute. The scaling_factor allows\nfor arbitrary time units such as ticks of some hardware clock.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nvalue" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "start", + "variable": false, + "more": { + "nx_name": "start", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "scaling_factor", + "variable": false, + "more": { + "nx_name": "scaling_factor", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-log-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nvalue" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpositioner", + "description": "Motor logs from cvinfo file.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpositioner", + "nx_type": "NXpositioner", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/92" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "average_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-average-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "average_value_error", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-average-value-error-field" + ], + "deprecated": "see https://github.com/nexusformat/definitions/issues/821", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_error", + "nx_optional": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "average_value_errors", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-average-value-errors-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "average_value_errors", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "description of positioner", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "duration", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "maximum_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-maximum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "maximum_value", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "minimum_value", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-minimum-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "minimum_value", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "time", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numvalue" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "best known value of positioner - need [n] as may be scanned", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-daslogs-positioner-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numvalue" + ], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "SNSHistoTool", + "description": "Any additional freeform information not covered by the other base classes.\n\nThis class can be used to store additional information in a \nNeXus file e.g. pictures, movies, audio, additional text logs", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-snshistotool-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "SNSHistoTool", + "nx_type": "NXnote", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "SNSbanking_file_name", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-snshistotool-snsbanking-file-name-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNSbanking_file_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "SNSmapping_file_name", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-snshistotool-snsmapping-file-name-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNSmapping_file_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "author", + "description": "Author or creator of note", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-snshistotool-author-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "author", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "command1", + "description": "Command string for event2histo_nxl.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-snshistotool-command1-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "command1", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "date", + "description": "Date note created/added", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-snshistotool-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "date", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Title of an image or other details of the note", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-snshistotool-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "version", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-snshistotool-version-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "version", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "SNSdetector_calibration_id", + "description": "Detector calibration id from DAS.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-snsdetector-calibration-id-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNSdetector_calibration_id", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "SNSgeometry_file_name", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-snsgeometry-file-name-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNSgeometry_file_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "SNStranslation_service", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-snstranslation-service-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "SNStranslation_service", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "beamline", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-beamline-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "beamline", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of instrument", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SNS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DISK_CHOPPER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "FERMI_CHOPPER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "moderator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "APERTURE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "ATTENUATOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "POLARIZER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "CRYSTAL", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/8", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "SNS", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-sns-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "SNS", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "frequency", + "description": "Frequency of pulsed source", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-sns-frequency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "frequency", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-sns-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-sns-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "muon", + "electron", + "ultraviolet", + "visible light", + "positron", + "proton" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-sns-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "This is the azimuthal angle angle of the detector towards\nthe previous component in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the azimuthal_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the azimuthal_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numx", + "numy" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numx", + "numy", + "numtof" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data_x_time_of_flight", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-data-x-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "data_x_time_of_flight", + "nx_signal": "3", + "nx_axes": "x_pixel_offset,time_of_flight", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numx", + "numtof" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "data_x_y", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-data-x-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "data_x_y", + "nx_signal": "2", + "nx_axes": "x_pixel_offset,y_pixel_offset", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numx", + "numy" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "data_y_time_of_flight", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-data-y-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "data_y_time_of_flight", + "nx_signal": "4", + "nx_axes": "y_pixel_offset,time_of_flight", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numy", + "numtof" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "This is the distance to the previous component in the\ninstrument; most often the sample. The usage depends on the\nnature of the detector: Most often it is the distance of the\ndetector assembly. But there are irregular detectors. In this\ncase the distance must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numx", + "numy" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "pixel_id", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-pixel-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "pixel_id", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numx", + "numy" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numx", + "numy" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Total time of flight", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numtof + 1" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "total_counts", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-total-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "total_counts", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_pixel_offset", + "description": "Offset from the detector center in x-direction.\nCan be multidimensional when needed.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-x-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numx" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "y_pixel_offset", + "description": "Offset from the detector center in the y-direction.\nCan be multidimensional when different values are required for each pixel.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-y-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_axis": "2", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numy" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "2" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "origin", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "origin", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "origin", + "nx_type": "NXgeometry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "orientation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/1/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/1/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "translation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/1/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "orientation", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nDescription for a general orientation of a component - used by :ref:`NXgeometry`", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "orientation", + "nx_type": "NXorientation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/86" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Six out of nine rotation parameters.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-orientation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-shape-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-shape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxflat", + "nxcylinder", + "nxbox", + "nxsphere", + "nxcone", + "nxelliptical", + "nxtoroidal", + "nxparabolic", + "nxpolynomial" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "physical extent of the object along its local axes (after NXorientation) \nwith the center of mass at the local origin (after NXtranslation).\nThe meaning and location of these axes will vary according to the value \nof the \"shape\" variable. \n``nshapepar`` defines how many parameters: \n\n- For \"nxcylinder\" type the parameters are (diameter,height) and a three value orientation vector of the cylinder. \n- For the \"nxbox\" type the parameters are (length,width,height). \n- For the \"nxsphere\" type the parameters are (diameter).\n- For nxcone cone half aperture\n- For nxelliptical, semi-major axis, semi-minor-axis, angle of major axis and pole\n- For nxtoroidal, major radius, minor radius\n- For nxparabolic, parabolic parameter a\n- For nxpolynomial, an array of polynom coefficients, the dimension of the array \n encodes the degree of the polynom", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-shape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "translation", + "description": "legacy class - (used by :ref:`NXgeometry`) - general spatial location of a component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-translation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "translation", + "nx_type": "NXtranslation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/139" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-detector-origin-translation-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdisk_chopper", + "description": "Original specification called for NXchopper, \nwhich is not a valid NeXus base class.\nSelect either NXdisk_chopper or NXfermi_chopper, as appropriate.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-disk-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdisk_chopper", + "nx_type": "NXdisk_chopper", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/11" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Effective distance to the origin.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-disk-chopper-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXfermi_chopper", + "description": "Original specification called for NXchopper, \nwhich is not a valid NeXus base class.\nSelect either NXdisk_chopper or NXfermi_chopper, as appropriate.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-fermi-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXfermi_chopper", + "nx_type": "NXfermi_chopper", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/13" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "distance. Note, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-fermi-chopper-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "moderator", + "description": "A neutron moderator", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-moderator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "moderator", + "nx_type": "NXmoderator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/76" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "coupling_material", + "description": "The material used for coupling. Usually Cd.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-moderator-coupling-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "coupling_material", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Effective distance as seen by measuring radiation.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-moderator-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "average/nominal moderator temperature", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-moderator-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "type", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-moderator-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "H20", + "D20", + "Liquid H2", + "Liquid CH4", + "Liquid D2", + "Solid D2", + "C", + "Solid CH4", + "Solid H2" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXaperture", + "description": "A beamline aperture. This group is deprecated, use NXslit instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXaperture", + "nx_type": "NXaperture", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_pixel_offset", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-x-pixel-offset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_offset", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "origin", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/5/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "origin", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "origin", + "nx_type": "NXgeometry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "orientation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/5/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/5/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "translation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/5/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "orientation", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nDescription for a general orientation of a component - used by :ref:`NXgeometry`", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "orientation", + "nx_type": "NXorientation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/86" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Six out of nine rotation parameters.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-orientation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-shape-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-shape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxflat", + "nxcylinder", + "nxbox", + "nxsphere", + "nxcone", + "nxelliptical", + "nxtoroidal", + "nxparabolic", + "nxpolynomial" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "physical extent of the object along its local axes (after NXorientation) \nwith the center of mass at the local origin (after NXtranslation).\nThe meaning and location of these axes will vary according to the value \nof the \"shape\" variable. \n``nshapepar`` defines how many parameters: \n\n- For \"nxcylinder\" type the parameters are (diameter,height) and a three value orientation vector of the cylinder. \n- For the \"nxbox\" type the parameters are (length,width,height). \n- For the \"nxsphere\" type the parameters are (diameter).\n- For nxcone cone half aperture\n- For nxelliptical, semi-major axis, semi-minor-axis, angle of major axis and pole\n- For nxtoroidal, major radius, minor radius\n- For nxparabolic, parabolic parameter a\n- For nxpolynomial, an array of polynom coefficients, the dimension of the array \n encodes the degree of the polynom", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-shape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "translation", + "description": "legacy class - (used by :ref:`NXgeometry`) - general spatial location of a component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-translation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "translation", + "nx_type": "NXtranslation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/139" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-aperture-origin-translation-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXattenuator", + "description": "A device that reduces the intensity of a beam by attenuation.\n\nIf uncertain whether to use :ref:`NXfilter` (band-pass filter)\nor :ref:`NXattenuator` (reduces beam intensity), then choose \n:ref:`NXattenuator`.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-attenuator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXattenuator", + "nx_type": "NXattenuator", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance from sample. Note, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-attenuator-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpolarizer", + "description": "A spin polarizer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-polarizer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpolarizer", + "nx_type": "NXpolarizer", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/21" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcrystal", + "description": "A crystal monochromator or analyzer. \n\nPermits double bent\nmonochromator comprised of multiple segments with anisotropic \nGaussian mosaic.\n\nIf curvatures are set to zero or are absent, array \nis considered to be flat.\n\nScattering vector is perpendicular to surface. Crystal is oriented\nparallel to beam incident on crystal before rotation, and lies in\nvertical plane.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcrystal", + "nx_type": "NXcrystal", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type or material of monochromating substance. \nChemical formula can be specified separately.\nUse the \"reflection\" field to indicate the (hkl) orientation.\nUse the \"d_spacing\" field to record the lattice plane spacing.\n\nThis field was changed (2010-11-17) from an enumeration to\na string since common usage showed a wider variety of use\nthan a simple list. These are the items in the list at \nthe time of the change: PG (Highly Oriented Pyrolytic Graphite) |\nGe | Si | Cu | Fe3Si | CoFe | Cu2MnAl (Heusler) | Multilayer |\nDiamond.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "Optimum diffracted wavelength", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "origin", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/8/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "origin", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "origin", + "nx_type": "NXgeometry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Optional description/label. Probably only present if we are\nan additional reference point for components rather than the\nlocation of a real component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "orientation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "translation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/116/inner_section_definitions/0/inner_section_definitions/3/inner_section_definitions/8/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "orientation", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nDescription for a general orientation of a component - used by :ref:`NXgeometry`", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "orientation", + "nx_type": "NXorientation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/86" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Six out of nine rotation parameters.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-orientation-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "shape", + "description": "legacy class - (used by :ref:`NXgeometry`) - the shape and size of a component.\n\nThis is the description of the general shape and size of a \ncomponent, which may be made up of ``numobj`` separate \nelements - it is used by the :ref:`NXgeometry` class", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "shape", + "nx_type": "NXshape", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/113" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-shape-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shape", + "description": "general shape of a component", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-shape-shape-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "shape", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "nxflat", + "nxcylinder", + "nxbox", + "nxsphere", + "nxcone", + "nxelliptical", + "nxtoroidal", + "nxparabolic", + "nxpolynomial" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "size", + "description": "physical extent of the object along its local axes (after NXorientation) \nwith the center of mass at the local origin (after NXtranslation).\nThe meaning and location of these axes will vary according to the value \nof the \"shape\" variable. \n``nshapepar`` defines how many parameters: \n\n- For \"nxcylinder\" type the parameters are (diameter,height) and a three value orientation vector of the cylinder. \n- For the \"nxbox\" type the parameters are (length,width,height). \n- For the \"nxsphere\" type the parameters are (diameter).\n- For nxcone cone half aperture\n- For nxelliptical, semi-major axis, semi-minor-axis, angle of major axis and pole\n- For nxtoroidal, major radius, minor radius\n- For nxparabolic, parabolic parameter a\n- For nxpolynomial, an array of polynom coefficients, the dimension of the array \n encodes the degree of the polynom", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-shape-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "size", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "translation", + "description": "legacy class - (used by :ref:`NXgeometry`) - general spatial location of a component.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-translation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "translation", + "nx_type": "NXtranslation", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/139" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-instrument-crystal-origin-translation-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "numtimechannels" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance of monitor from sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-monitor-distance-field" + ], + "deprecated": "Use transformations/distance instead", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time-of-flight", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-monitor-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numtimechannels + 1" + ], + "dimensionality": "[time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "changer_position", + "description": "Sample changer position", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-sample-changer-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "changer_position", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "holder", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-sample-holder-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "holder", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "identifier", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-sample-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "identifier", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "nature", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-sample-nature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "nature", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXuser", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXuser", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/4" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "facility_user_id", + "description": "facility based unique identifier for this person \ne.g. their identification code on the facility \naddress/contact database", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-user-facility-user-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "facility_user_id", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of user responsible for this entry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-user-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "role", + "description": "Role of user responsible for this entry.\nSuggested roles are \"local_contact\", \n\"principal_investigator\", and \"proposer\"", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsnshisto.html#nxsnshisto-entry-user-role-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "role", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 117, + "m_parent_sub_section": "section_definitions", + "name": "NXsolenoid_magnet", + "description": "definition for a solenoid magnet.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolenoid-magnet.html#nxsolenoid-magnet-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsolenoid_magnet", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "extended description of the magnet.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolenoid-magnet.html#nxsolenoid-magnet-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "beamline_distance", + "description": "define position of beamline element relative to production target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolenoid-magnet.html#nxsolenoid-magnet-beamline-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beamline_distance", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "set_current", + "description": "current set on supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolenoid-magnet.html#nxsolenoid-magnet-set-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_current", + "nx_units": "NX_CURRENT", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "read_current", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/117/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "read_voltage", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/117/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_current", + "description": "current read from supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolenoid-magnet.html#nxsolenoid-magnet-read-current-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_current", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolenoid-magnet.html#nxsolenoid-magnet-read-current-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_voltage", + "description": "voltage read from supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolenoid-magnet.html#nxsolenoid-magnet-read-voltage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_voltage", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolenoid-magnet.html#nxsolenoid-magnet-read-voltage-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 118, + "m_parent_sub_section": "section_definitions", + "name": "NXsolid_geometry", + "description": "the head node for constructively defined geometry", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolid-geometry.html#nxsolid-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsolid_geometry", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "QUADRIC", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/118/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/118/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "CSG", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/118/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXquadric", + "description": "Instances of :ref:`NXquadric` making up elements of the geometry.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolid-geometry.html#nxsolid-geometry-quadric-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXquadric", + "nx_type": "NXquadric", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/96" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "Instances of :ref:`NXoff_geometry` making up elements of the geometry.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolid-geometry.html#nxsolid-geometry-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcsg", + "description": "The geometries defined, made up of instances of :ref:`NXquadric` and :ref:`NXoff_geometry`.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXsolid-geometry.html#nxsolid-geometry-csg-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcsg", + "nx_type": "NXcsg", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/22" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 119, + "m_parent_sub_section": "section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Effective distance from sample\nDistance as seen by radiation from sample. This number should be negative \nto signify that it is upstream of the sample.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "muon", + "electron", + "ultraviolet", + "visible light", + "positron", + "proton" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "power", + "description": "Source power", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-power-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "power", + "nx_units": "NX_POWER", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[power]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "emittance_x", + "description": "Source emittance (nm-rad) in X (horizontal) direction.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-emittance-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "emittance_x", + "nx_units": "NX_EMITTANCE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length] * [angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "emittance_y", + "description": "Source emittance (nm-rad) in Y (horizontal) direction.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-emittance-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "emittance_y", + "nx_units": "NX_EMITTANCE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length] * [angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "sigma_x", + "description": "particle beam size in x", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-sigma-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sigma_x", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "sigma_y", + "description": "particle beam size in y", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-sigma-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sigma_y", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "flux", + "description": "Source intensity/area (example: s-1 cm-2)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-flux-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "flux", + "nx_units": "NX_FLUX", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1 / [time] / [area]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "Source energy. \nFor storage rings, this would be the particle beam energy.\nFor X-ray tubes, this would be the excitation voltage.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "current", + "description": "Accelerator, X-ray tube, or storage ring current", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-current-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "current", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "voltage", + "description": "Accelerator voltage", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "frequency", + "description": "Frequency of pulsed source", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-frequency-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "frequency", + "nx_units": "NX_FREQUENCY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "period", + "description": "Period of pulsed source", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-period-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "period", + "nx_units": "NX_PERIOD", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "target_material", + "description": "Pulsed source target material", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-target-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "target_material", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Ta", + "W", + "depleted_U", + "enriched_U", + "Hg", + "Pb", + "C" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "number_of_bunches", + "description": "For storage rings, the number of bunches in use.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-number-of-bunches-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "number_of_bunches", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "bunch_length", + "description": "For storage rings, temporal length of the bunch", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-bunch-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bunch_length", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "bunch_distance", + "description": "For storage rings, time between bunches", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-bunch-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bunch_distance", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "pulse_width", + "description": "temporal width of source pulse", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-pulse-width-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pulse_width", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "source operating mode", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Single Bunch", + "Multi Bunch" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "top_up", + "description": "Is the synchrotron operating in top_up mode?", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-top-up-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "top_up", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "last_fill", + "description": "For storage rings, the current at the end of the most recent injection.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-last-fill-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "last_fill", + "nx_units": "NX_CURRENT", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "time", + "variable": false, + "more": { + "nx_name": "time", + "nx_type": "NX_DATE_TIME" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\nThe reference point of the source plane is its center in the x and y axis. The source is considered infinitely thin in the\nz axis.\n\n.. image:: source/source.png\n :width: 40%", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "notes", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/119/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "bunch_pattern", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/119/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "pulse_shape", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/119/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "geometry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/119/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/119/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "distribution", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/119/inner_section_definitions/5", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/119/inner_section_definitions/6", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "notes", + "description": "any source/facility related messages/events that \noccurred during the experiment", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-notes-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "notes", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "bunch_pattern", + "description": "For storage rings, description of the bunch pattern. \nThis is useful to describe irregular bunch patterns.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-bunch-pattern-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "bunch_pattern", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "name of the bunch pattern", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-bunch-pattern-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "pulse_shape", + "description": "source pulse shape", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-pulse-shape-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "pulse_shape", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry", + "description": "\"Engineering\" location of source.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the source and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "distribution", + "description": "The wavelength or energy distribution of the source", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-distribution-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "distribution", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsource.html#nxsource-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 120, + "m_parent_sub_section": "section_definitions", + "name": "NXspe", + "description": "NXSPE Inelastic Format. Application definition for NXSPE file format. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXspe", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/120/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program_name", + "description": "Name of program used to generate this file", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-program-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program_name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "configuration", + "variable": false, + "more": { + "nx_name": "configuration" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXspe" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "NXSPE_info", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/120/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/120/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/120/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/120/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXSPE_info", + "description": "An unvalidated set of terms, such as the description of a beam line.\n\nUse :ref:`NXcollection` to gather together any set of terms.\nThe original suggestion is to use this as a container \nclass for the description of a beamline.\n\nFor NeXus validation, :ref:`NXcollection` will always generate \na warning since it is always an optional group. \nAnything (groups, fields, or attributes) placed in\nan :ref:`NXcollection` group will not be validated.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-nxspe-info-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXSPE_info", + "nx_type": "NXcollection", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "fixed_energy", + "description": "The fixed energy used for this file.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-nxspe-info-fixed-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "fixed_energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "ki_over_kf_scaling", + "description": "Indicates whether ki/kf scaling has been applied or not.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-nxspe-info-ki-over-kf-scaling-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "ki_over_kf_scaling", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "psi", + "description": "Orientation angle as expected in DCS-MSlice", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-nxspe-info-psi-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "psi", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "azimuthal", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-azimuthal-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "azimuthal_width", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-azimuthal-width-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_width", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "polar", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-polar-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "polar_width", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-polar-width-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_width", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "distance", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "data", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "error", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-error-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "error", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "energy", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-data-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of instrument", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "FERMI_CHOPPER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/120/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXfermi_chopper", + "description": "A Fermi chopper, possibly with curved slits.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-instrument-fermi-chopper-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXfermi_chopper", + "nx_type": "NXfermi_chopper", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/13" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-instrument-fermi-chopper-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram has \nbeen obtained through an omega-2theta scan like from a traditional \nsingle detector powder diffractometer.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "seblock", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-sample-seblock-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "seblock", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Sample temperature. This could be a scanned variable", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXspe.html#nxspe-entry-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[temperature]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 121, + "m_parent_sub_section": "section_definitions", + "name": "NXspectrum_set_em_auger", + "description": "Container for reporting a set of auger electron energy spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-auger.html#nxspectrum-set-em-auger-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_auger", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/121/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/121/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-auger.html#nxspectrum-set-em-auger-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-auger.html#nxspectrum-set-em-auger-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 122, + "m_parent_sub_section": "section_definitions", + "name": "NXspectrum_set_em_cathodolum", + "description": "Container for reporting a set of cathodoluminescence spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-cathodolum.html#nxspectrum-set-em-cathodolum-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_cathodolum", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/122/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/122/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-cathodolum.html#nxspectrum-set-em-cathodolum-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-cathodolum.html#nxspectrum-set-em-cathodolum-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 123, + "m_parent_sub_section": "section_definitions", + "name": "NXspectrum_set_em_eels", + "description": "Container for reporting a set of electron energy loss spectra.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-eels.html#nxspectrum-set-em-eels-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_eels", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/123/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/123/inner_section_definitions/1", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-eels.html#nxspectrum-set-em-eels-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-eels.html#nxspectrum-set-em-eels-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 124, + "m_parent_sub_section": "section_definitions", + "name": "NXspectrum_set_em_xray", + "description": "Container for reporting a set of energy-dispersive X-ray spectra.\n\nVirtually the most important case is that spectra are collected in \na scanning microscope (SEM or STEM) for a collection of points.\nThe majority of cases use simple d-dimensional regular scan pattern,\nsuch as single point, line profiles, or (rectangular) surface mappings.\nThe latter pattern is the most frequently used.\n\nFor now the base class provides for scans where the settings,\nbinning, and energy resolution is the same for each scan point.\n\n`IUPAC instead of Siegbahn notation <https://doi.org/10.1002/xrs.1300200308>`_ should be used.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-group", + "https://doi.org/10.1002/xrs.1300200308" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspectrum_set_em_xray", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/124/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "indexing", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/124/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "Collected X-ray counts chunked based on rectangular images.\n\nThis representation supports only rectangular scan pattern.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "counts", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-data-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_UINT", + "nx_name": "counts", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "uint64" + }, + "shape": [ + "n_y", + "n_x", + "n_photon_energy" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "ypos", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-data-ypos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "ypos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_y" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "xpos", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-data-xpos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "xpos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_x" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "photon_energy", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-data-photon-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "photon_energy", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_photon_energy" + ], + "dimensionality": "[energy]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "indexing", + "description": "Details about computational steps how peaks were indexed as elements.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "indexing", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "element_names", + "description": "List of the names of identified elements.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-element-names-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "element_names", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_elements" + ], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "PEAK", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/124/inner_section_definitions/1/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "composition_map", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/124/inner_section_definitions/1/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpeak", + "description": "Name and location of each X-ray line which was indexed as a known ion.\nFor each ion an NXion instance should be created which specifies\nthe origin of the signal. For each ion also the relevant IUPAC notation\nX-ray lines should be specified.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-peak-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpeak", + "nx_type": "NXpeak", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/89" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/124/inner_section_definitions/1/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXion", + "description": "Set of atoms of a molecular ion or fragment in e.g. ToF mass spectrometry.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-peak-ion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXion", + "nx_type": "NXion", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/67" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "iupac_line_names", + "description": "IUPAC notation identifier of the line which the peak represents.\n\nThis can be a list of IUPAC notations for (the seldom) case that\nmultiple lines are group with the same peak.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-peak-ion-iupac-line-names-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "iupac_line_names", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "composition_map", + "description": "Individual element-specific EDX/EDS/EDXS/SXES mapping\n\nA composition map is an image whose intensities for each pixel are the\naccumulated X-ray quanta *under the curve(s)* of a set of peaks.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-composition-map-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "composition_map", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Given name of the program that was used to perform this computation.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-composition-map-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "peaks", + "description": "A list of strings of named instances of NXpeak from indexing\nwhose X-ray quanta where accumulated for each pixel.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-composition-map-peaks-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "peaks", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_peaks" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Human-readable, given name to the image.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-composition-map-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/124/inner_section_definitions/1/inner_section_definitions/1/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "Individual element-specific maps. Individual maps should\neach be a group and be named according to element_names.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-composition-map-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "counts", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-composition-map-data-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "counts", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_y", + "n_x" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "ypos", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-composition-map-data-ypos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "ypos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_y" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "xpos", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspectrum-set-em-xray.html#nxspectrum-set-em-xray-indexing-composition-map-data-xpos-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "xpos", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_x" + ], + "dimensionality": "[length]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 125, + "m_parent_sub_section": "section_definitions", + "name": "NXspin_rotator", + "description": "definition for a spin rotator.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspin_rotator", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "extended description of the spin rotator.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "beamline_distance", + "description": "define position of beamline element relative to production target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-beamline-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beamline_distance", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "set_Bfield_current", + "description": "current set on magnet supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-set-bfield-current-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_Bfield_current", + "nx_units": "NX_CURRENT", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "set_Efield_voltage", + "description": "current set on HT supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-set-efield-voltage-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "set_Efield_voltage", + "nx_units": "NX_VOLTAGE", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "read_Bfield_current", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/125/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "read_Bfield_voltage", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/125/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "read_Efield_current", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/125/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "read_Efield_voltage", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/125/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_Bfield_current", + "description": "current read from magnet supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-read-bfield-current-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_Bfield_current", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-read-bfield-current-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_Bfield_voltage", + "description": "voltage read from magnet supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-read-bfield-voltage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_Bfield_voltage", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-read-bfield-voltage-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_Efield_current", + "description": "current read from HT supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-read-efield-current-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_Efield_current", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-read-efield-current-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[current]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "read_Efield_voltage", + "description": "voltage read from HT supply.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-read-efield-voltage-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "read_Efield_voltage", + "nx_type": "NXlog", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/71" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Array of logged value, such as temperature. If this is\na single value the dimensionality is\nnEntries. However, NXlog can also be used to store\nmulti dimensional time stamped data such as images. In\nthis example the dimensionality of values would be value[nEntries,xdim,ydim].", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspin-rotator.html#nxspin-rotator-read-efield-voltage-value-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "value", + "nx_units": "NX_VOLTAGE", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 126, + "m_parent_sub_section": "section_definitions", + "name": "NXspindispersion", + "description": "Subclass of NXelectronanalyser to describe the spin filters in photoemission\nexperiments.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXspindispersion", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Type of spin detector, VLEED, SPLEED, Mott, etc. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "figure_of_merit", + "description": "Figure of merit of the spin detector", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-figure-of-merit-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "figure_of_merit", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "shermann_function", + "description": "Effective Shermann function, calibrated spin selectivity factor", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-shermann-function-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "shermann_function", + "nx_units": "NX_DIMENSIONLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "scattering_energy", + "description": "Energy of the spin-selective scattering ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-scattering-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "scattering_energy", + "nx_units": "NX_ENERGY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "scattering_angle", + "description": "Angle of the spin-selective scattering", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-scattering-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "scattering_angle", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "target", + "description": "Name of the target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-target-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "target", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "target_preparation", + "description": "Preparation procedure of the spin target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-target-preparation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "target_preparation", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "target_preparation_date", + "description": "Date of last preparation of the spin target", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-target-preparation-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "target_preparation_date", + "nx_optional": true + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "Specifies the position of the lens by pointing to the last transformation in the\ntransformation chain in the NXtransformations group.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/126/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "DEFLECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/126/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "LENS_EM", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/126/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "Collection of axis-based translations and rotations to describe the location and\ngeometry of the deflector as a component in the instrument. Conventions from the\nNXtransformations base class are used. In principle, the McStas coordinate\nsystem is used. The first transformation has to point either to another\ncomponent of the system or . (for pointing to the reference frame) to relate it\nrelative to the experimental setup. Typically, the components of a system should\nall be related relative to each other and only one component should relate to\nthe reference coordinate system.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdeflector", + "description": "Deflectors in the spin dispersive section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-deflector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdeflector", + "nx_type": "NXdeflector", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/26" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXlens_em", + "description": "Individual lenses in the spin dispersive section", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXspindispersion.html#nxspindispersion-lens-em-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXlens_em", + "nx_type": "NXlens_em", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/70" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 127, + "m_parent_sub_section": "section_definitions", + "name": "NXsqom", + "description": "This is the application definition for S(Q,OM) processed data. \n\nAs this kind of data is in\ngeneral not on a rectangular grid after data reduction, it is stored as Q,E positions plus their\nintensity, table like. It is the task of a possible visualisation program to regrid this data in\na sensible way.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXsqom", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/127/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "entry", + "variable": false, + "more": { + "nx_name": "entry" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXsqom" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/127/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/127/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "reduction", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/127/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/127/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of the instrument from which this data was reduced. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-instrument-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/127/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "reduction", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-reduction-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reduction", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Name of the program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-reduction-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "version", + "description": "Version of the program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-reduction-version-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "version", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "input", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/127/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "output", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/127/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "input", + "description": "Input parameters for the reduction program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-reduction-input-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "input", + "nx_type": "NXparameters", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/87" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "filenames", + "description": "Raw data files used to generate this I(Q)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-reduction-input-filenames-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "filenames", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "output", + "description": "Eventual output parameters from the data reduction program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-reduction-output-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "output", + "nx_type": "NXparameters", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/87" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "This is the intensity for each point in QE ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_signal": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "qx", + "description": "Positions for the first dimension of Q", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-data-qx-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "qx", + "nx_axis": "1", + "nx_units": "NX_WAVENUMBER", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "qy", + "description": "Positions for the the second dimension of Q", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-data-qy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "qy", + "nx_axis": "1", + "nx_units": "NX_WAVENUMBER", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "qz", + "description": "Positions for the the third dimension of Q", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-data-qz-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "qz", + "nx_axis": "1", + "nx_units": "NX_WAVENUMBER", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "1 / [length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "en", + "description": "Values for the energy transfer for each point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXsqom.html#nxsqom-entry-data-en-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "en", + "nx_axis": "1", + "nx_units": "NX_ENERGY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 128, + "m_parent_sub_section": "section_definitions", + "name": "NXstage_lab", + "description": "A stage lab can be used to hold, align, orient, and prepare a specimen.\n\nModern stages are multi-functional devices. Many of which offer a controlled\nenvironment around (a part) of the specimen. Stages enable experimentalists\nto apply stimuli. A stage_lab is a multi-purpose/-functional tools which\ncan have multiple actuators, sensors, and other components.\n\nWith such stages comes the need for storing various (meta)data \nthat are generated while manipulating the sample.\n\nModern stages realize a hierarchy of components: For example the specimen\nmight be mounted on a multi-axial tilt rotation holder. This holder is \nfixed in the support unit which connects the holder to the rest of the\nmicroscope.\n\nIn other examples, taken from atom probe microscopy, researchers may work\nwith wire samples which are clipped into a larger fixing unit for\nconvenience and enable for a more careful specimen handling.\nThis fixture unit is known in atom probe jargon as a stub.\nStubs in turn are positioned onto pucks.\nPucks are then loaded onto carousels.\nA carousel is a carrier unit with which eventually entire sets of specimens\ncan be moved in between parts of the microscope.\n\nAn NXstage_lab instance reflects this hierarchical design. The stage is the \nroot of the hierarchy. A stage carries the holder.\nIn the case that it is not practical to distinguish these two layers,\nthe holder should be given preference.\n\nSome examples for stage_labs in applications:\n\n* A nanoparticle on a copper grid. The copper grid is the holder. \n The grid itself is fixed to the stage. \n* An atom probe specimen fixed in a stub. In this case the stub can be \n considered the holder, while the cryostat temperature control unit is \n a component of the stage. \n* Samples with arrays of specimens, like a microtip on a microtip array \n is an example of a three-layer hierarchy commonly employed for \n efficient sequential processing of atom probe experiments. \n* With one entry of an application definition only one microtip should be \n described. Therefore, the microtip is the specimen, \n the array is the holder and the remaining mounting unit \n that is attached to the cryo-controller is the stage. \n* For in-situ experiments with e.g. chips with read-out electronics \n as actuators, the chips are again placed in a larger unit. \n* Other examples are (quasi) in-situ experiments where experimentalists \n anneal or deform the specimen via e.g. in-situ tensile testing machines \n which are mounted on the specimen holder. \n\nTo cover for an as flexible design of complex stages, users should nest\nmultiple instances of NXstage_lab objects according to their needs to reflect\nthe differences between what they consider as the holder and what \nthey consider is the stage.\n\nInstances should be named with integers starting from 1 as the top level unit.\nIn the microtip example stage_lab_1 for the stage, stage_lab_2 for the holder\n(microtip array), stage_lab_3 for the microtip specimen, respectively. \nThe depends_on keyword should be used with relative or absolute naming inside\nthe file to specify how different stage_lab instances build a hierarchy\nif this is not obvious from numbered identifiers like the stage_lab_1 to \nstage_lab 3 example. The lower it is the number the higher it is the\nrank in the hierarchy.\n\nFor specific details and inspiration about stages in electron microscopes:\n\n* `Holders with multiple axes <https://www.nanotechnik.com/e5as.html>`_ \n* `Chip-based designs <https://www.protochips.com/products/fusion/fusion-select-components/>`_ \n* `Further chip-based designs <https://www.nanoprobetech.com/about>`_\n* `Stages in transmission electron microscopy <https://doi.org/10.1007/978-3-662-14824-2>`_ (page 103, table 4.2) \n* `Further stages in transmission electron microscopy <https://doi.org/10.1007/978-1-4757-2519-3>`_ (page 124ff)\n* `Specimens in atom probe <https://doi.org/10.1007/978-1-4614-8721-0>`_ (page 47ff)\n* `Exemplar micro-manipulators <https://nano.oxinst.com/products/omniprobe/omniprobe-200>`_", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-group", + "https://www.nanotechnik.com/e5as.html", + "https://www.protochips.com/products/fusion/fusion-select-components/", + "https://www.nanoprobetech.com/about", + "https://doi.org/10.1007/978-3-662-14824-2", + "https://doi.org/10.1007/978-1-4757-2519-3", + "https://doi.org/10.1007/978-1-4614-8721-0", + "https://nano.oxinst.com/products/omniprobe/omniprobe-200" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXstage_lab", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "design", + "description": "Principal design of the stage.\n\nExemplar terms could be side_entry, top_entry,\nsingle_tilt, quick_change, multiple_specimen,\nbulk_specimen, double_tilt, tilt_rotate,\nheating_chip, atmosphere_chip,\nelectrical_biasing_chip, liquid_cell_chip", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-design-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "design", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Given name/alias for the components making the stage.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Ideally, a (globally) unique persistent identifier, link,\nor text to a resource which gives further details.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "tilt_1", + "description": "Should be defined by the application definition.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-tilt-1-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "tilt_1", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "tilt_2", + "description": "Should be defined by the application definition.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-tilt-2-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "tilt_2", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "rotation", + "description": "Should be defined by the application definition.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-rotation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "position", + "description": "Should be defined by the application definition.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "position", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "bias_voltage", + "description": "Voltage applied to the stage to decelerate electrons.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-bias-voltage-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "bias_voltage", + "nx_units": "NX_VOLTAGE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[energy] / [current] / [time]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "MANUFACTURER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/128/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/128/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "POSITIONER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/128/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmanufacturer", + "description": "Details about a component as defined by its manufacturer.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-manufacturer-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmanufacturer", + "nx_type": "NXmanufacturer", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/74" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "The rotation, tilt and position of stage components can be specified\neither via NXtransformations or via the tilt_1, tilt_2, rotation, \nand position fields.", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXpositioner", + "description": "A generic positioner such as a motor or piezo-electric transducer. ", + "links": [ + "https://manual.nexusformat.org/classes/contributed_definitions/NXstage-lab.html#nxstage-lab-positioner-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXpositioner", + "nx_type": "NXpositioner", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/92" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 129, + "m_parent_sub_section": "section_definitions", + "name": "NXstxm", + "description": "Application definition for a STXM instrument. \n\nThe interferometer\nposition measurements, monochromator photon energy values and\ndetector measurements are all treated as NXdetectors and stored\nwithin the NXinstrument group as lists of values stored in \nchronological order. The NXdata group then holds another version\nof the data in a regular 3D array (NumE by NumY by NumX, for a\ntotal of nP points in a sample image stack type scan). The former\ndata values should be stored with a minimum loss of precision, while\nthe latter values can be simplified and/or approximated in order to\nfit the constraints of a regular 3D array. 'Line scans' and 'point spectra'\nare just sample_image scan types with reduced dimensions in the same way \nas single images have reduced E dimensions compared to image 'stacks'.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXstxm", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXstxm" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "monochromator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "sample_x", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "sample_y", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "sample_z", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/129/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/5", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "muon", + "electron", + "ultraviolet", + "visible light", + "positron", + "proton" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "monochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "monochromator", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-monochromator-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample_x", + "description": "Measurements of the sample position from the x-axis interferometer.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-sample-x-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample_x", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-sample-x-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample_y", + "description": "Measurements of the sample position from the y-axis interferometer.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-sample-y-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample_y", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-sample-y-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample_z", + "description": "Measurements of the sample position from the z-axis interferometer.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-sample-z-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample_z", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-instrument-sample-z-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram has \nbeen obtained through an omega-2theta scan like from a traditional \nsingle detector powder diffractometer.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "stxm_scan_type", + "description": "Label for typical scan types as a convenience for humans. \nEach label corresponds to a specific set of axes being scanned \nto produce a data array of shape:\n\n* sample point spectrum: (photon_energy,)\n* sample line spectrum: (photon_energy, sample_y/sample_x)\n* sample image: (sample_y, sample_x)\n* sample image stack: (photon_energy, sample_y, sample_x)\n* sample focus: (zoneplate_z, sample_y/sample_x)\n* osa image: (osa_y, osa_x)\n* osa focus: (zoneplate_z, osa_y/osa_x)\n* detector image: (detector_y, detector_x)\n\nThe \"generic scan\" string is to be used when none of the \nother choices are appropriate.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-data-stxm-scan-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "stxm_scan_type", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "sample point spectrum", + "sample line spectrum", + "sample image", + "sample image stack", + "sample focus", + "osa image", + "osa focus", + "detector image", + "generic scan" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Detectors that provide more than one value per scan point should be summarised\nto a single value per scan point for this array in order to simplify plotting.\n\nNote that 'Line scans' and focus type scans measure along one spatial dimension\nbut are not restricted to being parallel to the X or Y axes. Such scans \nshould therefore use a single dimension for the positions along the spatial\nline. The 'sample_x' and 'sample_y' fields should then contain lists of the\nx- and y-positions and should both have the 'axis' attribute pointing to the same dimension.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_signal": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "List of photon energies of the X-ray beam. If scanned through multiple values,\nthen an 'axis' attribute will be required to link the field to the appropriate data array dimension.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-data-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nE" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "sample_y", + "description": "List of Y positions on the sample. If scanned through multiple values,\nthen an 'axis' attribute will be required to link the field to the appropriate data array dimension.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-data-sample-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sample_y", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nY" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "sample_x", + "description": "List of X positions on the sample. If scanned through multiple values,\nthen an 'axis' attribute will be required to link the field to the appropriate data array dimension.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-data-sample-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sample_x", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nX" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Values to use to normalise for time-variations in photon flux. Typically, the synchrotron storage ring\nelectron beam current is used as a proxy for the X-ray beam intensity. Array must have same shape as the\nNXdata groups.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXstxm.html#nxstxm-entry-control-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 130, + "m_parent_sub_section": "section_definitions", + "name": "NXsubentry", + "description": "Group of multiple application definitions for \"multi-modal\" (e.g. SAXS/WAXS) measurements.\n\n``NXsubentry`` is a base class virtually identical to :ref:`NXentry`\nand is used as the (overlay) location for application definitions.\nUse a separate ``NXsubentry`` for each application definition. \n\nTo use ``NXsubentry`` with a hypothetical application definition \ncalled ``NXmyappdef``:\n\n* Create a group with attribute ``NX_class=\"NXsubentry\"``\n* Within that group, create a field called ``definition=\"NXmyappdef\"``.\n* There are two optional attributes of definition: ``version`` and ``URL``\n\nThe intended use is to define application definitions for a \nmulti-modal (a.k.a. multi-technique) :ref:`NXentry`. \nPreviously, an application definition \nreplaced :ref:`NXentry` with its own definition. \nWith the increasing popularity of instruments combining \nmultiple techniques for data collection (such as SAXS/WAXS instruments), \nit was recognized the application definitions must be entered in the NeXus\ndata file tree as children of :ref:`NXentry`. ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsubentry", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "experiment_identifier", + "description": "Unique identifier for the experiment, defined by\nthe facility, possibly linked to the proposals", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-experiment-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_identifier", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "experiment_description", + "description": "Brief summary of the experiment, including key objectives.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-experiment-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "experiment_description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "collection_identifier", + "description": "User or Data Acquisition defined group of NeXus files or :ref:`NXentry`", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-collection-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_identifier", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "collection_description", + "description": "Brief summary of the collection, including grouping criteria.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-collection-description-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "collection_description", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "entry_identifier", + "description": "unique identifier for the measurement, defined by the facility.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-entry-identifier-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "entry_identifier", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this subentry conforms", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "definition_local", + "description": "Local NXDL schema extended from the subentry\nspecified in the ``definition`` field. \nThis contains any locally-defined,\nadditional fields in the subentry.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-definition-local-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition_local", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": true + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": true + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Duration of measurement", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "duration", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "collection_time", + "description": "Time transpired actually collecting data i.e. taking out time when collection was\nsuspended due to e.g. temperature out of range", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-collection-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "collection_time", + "nx_units": "NX_TIME", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "run_cycle", + "description": "Such as \"2007-3\". Some user facilities organize their beam time into run cycles.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-run-cycle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "run_cycle", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "program_name", + "description": "Name of program used to generate this file", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-program-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program_name", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "configuration", + "variable": false, + "more": { + "nx_name": "configuration" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "revision", + "description": "Revision id of the file due to re-calibration, reprocessing, new analysis, new\ninstrument definition format, ...", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-revision-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "revision", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "comment", + "variable": false, + "more": { + "nx_name": "comment" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "pre_sample_flightpath", + "description": "This is the flightpath before the sample position. This can be determined by a chopper,\nby the moderator or the source itself. In other words: it the distance to the component\nwhich gives the T0 signal to the detector electronics. If another component in the\nNXinstrument hierarchy provides this information, this should be a link.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-pre-sample-flightpath-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pre_sample_flightpath", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "experiment_documentation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "notes", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "thumbnail", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "USER", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "COLLECTION", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/8", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "PARAMETERS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "PROCESS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/130/inner_section_definitions/10", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "experiment_documentation", + "description": "Description of the full experiment (document in pdf, latex, ...)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-experiment-documentation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "experiment_documentation", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "notes", + "description": "Notes describing entry", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-notes-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "notes", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "thumbnail", + "description": "A small image that is representative of the entry. An example of this is a 640x480\njpeg image automatically produced by a low resolution plot of the NXdata.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-thumbnail-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "thumbnail", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "mime_type", + "variable": false, + "more": { + "nx_name": "mime_type" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "image/*" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXuser", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXuser", + "nx_type": "NXuser", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXcollection", + "description": "An unvalidated set of terms, such as the description of a beam line.\n\nUse :ref:`NXcollection` to gather together any set of terms.\nThe original suggestion is to use this as a container \nclass for the description of a beamline.\n\nFor NeXus validation, :ref:`NXcollection` will always generate \na warning since it is always an optional group. \nAnything (groups, fields, or attributes) placed in\nan :ref:`NXcollection` group will not be validated.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-collection-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXcollection", + "nx_type": "NXcollection", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/15" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXparameters", + "description": "Container for parameters, usually used in processing or analysis.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-parameters-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXparameters", + "nx_type": "NXparameters", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/87" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXprocess", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXsubentry.html#nxsubentry-process-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXprocess", + "nx_type": "NXprocess", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 131, + "m_parent_sub_section": "section_definitions", + "name": "NXtas", + "description": "This is an application definition for a triple axis spectrometer. \n\nIt is for the trademark scan of the TAS, the Q-E scan. \nFor your alignment scans use the rules in :ref:`NXscan`.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXtas", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXtas" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "monochromator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "analyser", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DETECTOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/131/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "monochromator", + "description": "A crystal monochromator or analyzer. \n\nPermits double bent\nmonochromator comprised of multiple segments with anisotropic \nGaussian mosaic.\n\nIf curvatures are set to zero or are absent, array \nis considered to be flat.\n\nScattering vector is perpendicular to surface. Crystal is oriented\nparallel to beam incident on crystal before rotation, and lies in\nvertical plane.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "monochromator", + "nx_type": "NXcrystal", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/21" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "ei", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-monochromator-ei-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "ei", + "nx_units": "NX_ENERGY", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-monochromator-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "analyser", + "description": "A crystal monochromator or analyzer. \n\nPermits double bent\nmonochromator comprised of multiple segments with anisotropic \nGaussian mosaic.\n\nIf curvatures are set to zero or are absent, array \nis considered to be flat.\n\nScattering vector is perpendicular to surface. Crystal is oriented\nparallel to beam incident on crystal before rotation, and lies in\nvertical plane.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-analyser-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "analyser", + "nx_type": "NXcrystal", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/21" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "ef", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-analyser-ef-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "ef", + "nx_units": "NX_ENERGY", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-analyser-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "Polar (scattering) angle at which crystal assembly is positioned. \nNote: some instrument geometries call this term 2theta.\nNote: it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-analyser-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdetector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdetector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/9" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "This is the polar angle of the detector towards the previous\ncomponent in the instrument; most often the sample.\nThe usage depends on the\nnature of the detector.\nMost often it is the polar_angle of the detector assembly.\nBut there are irregular detectors.\nIn this\ncase, the polar_angle must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "qh", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-qh-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "qh", + "nx_units": "NX_DIMENSIONLESS", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "qk", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-qk-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "qk", + "nx_units": "NX_DIMENSIONLESS", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "ql", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-ql-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "ql", + "nx_units": "NX_DIMENSIONLESS", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "en", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-en-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "en", + "nx_units": "NX_ENERGY", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[energy]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram has \nbeen obtained through an omega-2theta scan like from a traditional \nsingle detector powder diffractometer.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "sgu", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-sgu-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sgu", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "sgl", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-sgl-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "sgl", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "unit_cell", + "description": "Unit cell parameters (lengths and angles)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-unit-cell-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "orientation_matrix", + "description": "Orientation matrix of single crystal sample using Busing-Levy convention:\nW. R. Busing and H. A. Levy (1967). Acta Cryst. 22, 457-464", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-sample-orientation-matrix-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "orientation_matrix", + "nx_optional": false, + "nx_units": "NX_DIMENSIONLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 9 + ], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-monitor-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Total integral monitor counts", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "One of the ei,ef,qh,qk,ql,en should get a primary=1 attribute to denote the main scan axis", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtas.html#nxtas-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 132, + "m_parent_sub_section": "section_definitions", + "name": "NXtofnpd", + "description": "This is a application definition for raw data from a TOF neutron powder diffractometer", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXtofnpd", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/132/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXtofnpd" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "pre_sample_flightpath", + "description": "This is the flight path before the sample position. This can be determined by a chopper,\nby the moderator or the source itself. In other words: it the distance to the component\nwhich gives the T0 signal to the detector electronics. If another component in the\nNXinstrument hierarchy provides this information, this should be a link.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-pre-sample-flightpath-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pre_sample_flightpath", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "user", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/132/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/132/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/132/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/132/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/132/inner_section_definitions/0/inner_section_definitions/4", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "user", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "user", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of user responsible for this entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-user-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/132/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nDet", + "nTimeChan" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "detector_number", + "description": "Identifier for detector (pixels)\nCan be multidimensional, if needed", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-instrument-detector-detector-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "detector_number", + "nx_optional": false, + "nx_axis": "2" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nDet" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "distance to sample for each detector", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Total time of flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-instrument-detector-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTimeChan" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "polar angle for each detector element", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "azimuthal angle for each detector element", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-instrument-detector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-monitor-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance of monitor from sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-monitor-distance-field" + ], + "deprecated": "Use transformations/distance instead", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nTimeChan" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time-of-flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-monitor-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTimeChan" + ], + "dimensionality": "[time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofnpd.html#nxtofnpd-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 133, + "m_parent_sub_section": "section_definitions", + "name": "NXtofraw", + "description": "This is an application definition for raw data from a generic TOF instrument", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXtofraw", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/133/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXtofraw" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Duration of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "run_number", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-run-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "run_number", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "pre_sample_flightpath", + "description": "This is the flight path before the sample position. This can be determined by a chopper,\nby the moderator, or the source itself. In other words: it is the distance to the component\nwhich gives the T0 signal to the detector electronics. If another component in the\nNXinstrument hierarchy provides this information, this should be a link.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-pre-sample-flightpath-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pre_sample_flightpath", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "user", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/133/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/133/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/133/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/133/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/133/inner_section_definitions/0/inner_section_definitions/4", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "user", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "user", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of user responsible for this entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-user-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/133/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nDet", + "nTimeChan" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "detector_number", + "description": "Identifier for detector (pixels)\nCan be multidimensional, if needed", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-instrument-detector-detector-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "detector_number", + "nx_optional": false, + "nx_axis": "2" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nDet" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "distance to sample for each detector", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Total time of flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-instrument-detector-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTimeChan" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "polar angle for each detector element", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "azimuthal angle for each detector element", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-instrument-detector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "nature", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-sample-nature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "nature", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "powder", + "liquid", + "single crystal" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-monitor-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance of monitor from sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-monitor-distance-field" + ], + "deprecated": "Use transformations/distance instead", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nTimeChan" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time-of-flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-monitor-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTimeChan" + ], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "integral_counts", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-monitor-integral-counts-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "integral_counts", + "nx_units": "NX_UNITLESS", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofraw.html#nxtofraw-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 134, + "m_parent_sub_section": "section_definitions", + "name": "NXtofsingle", + "description": "This is a application definition for raw data from a generic TOF instrument", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXtofsingle", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/134/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXtofsingle" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "duration", + "description": "Duration of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-duration-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "duration", + "nx_units": "NX_TIME", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[time]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "pre_sample_flightpath", + "description": "This is the flight path before the sample position. This can be determined by a chopper,\nby the moderator or the source itself. In other words: it the distance to the component\nwhich gives the T0 signal to the detector electronics. If another component in the\nNXinstrument hierarchy provides this information, this should be a link.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-pre-sample-flightpath-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "pre_sample_flightpath", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "user", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/134/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/134/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/134/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/134/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/134/inner_section_definitions/0/inner_section_definitions/4", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "user", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-user-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "user", + "nx_type": "NXuser", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/140" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of user responsible for this entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-user-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/134/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "xSize", + "ySize", + "nTimeChan" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance to sample for the center of the detector", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 1 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Total time of flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-instrument-detector-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTimeChan" + ], + "dimensionality": "[time]", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "axis", + "variable": false, + "more": { + "nx_name": "axis", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "3" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "primary", + "variable": false, + "more": { + "nx_name": "primary", + "nx_type": "NX_POSINT", + "nx_deprecated": "see: https://github.com/nexusformat/definitions/issues/436" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "polar angle for each detector element", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "azimuthal_angle", + "description": "azimuthal angle for each detector element", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-instrument-detector-azimuthal-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "azimuthal_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDet" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "nature", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-sample-nature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "nature", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "powder", + "liquid", + "single crystal" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-monitor-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance of monitor from sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-monitor-distance-field" + ], + "deprecated": "Use transformations/distance instead", + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Monitor data", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nTimeChan" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "time_of_flight", + "description": "Time-of-flight", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-monitor-time-of-flight-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "time_of_flight", + "nx_units": "NX_TIME_OF_FLIGHT", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nTimeChan" + ], + "dimensionality": "[time]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtofsingle.html#nxtofsingle-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 135, + "m_parent_sub_section": "section_definitions", + "name": "NXtomo", + "description": "This is the application definition for x-ray or neutron tomography raw data. \n\nIn tomography \na number of dark field images are measured, some bright field images and, of course the sample. \nIn order to distinguish between them images carry a image_key.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXtomo", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/135/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXtomo" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/135/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/135/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/135/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/135/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/135/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/135/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nFrames", + "xSize", + "ySize" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "image_key", + "description": "In order\nto distinguish between sample projections, dark and flat\nimages, a magic number is recorded per frame.\nThe key is as follows:\n\n* projection = 0\n* flat field = 1\n* dark field = 2\n* invalid = 3", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-detector-image-key-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "image_key", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nFrames" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-detector-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-detector-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance between detector and sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_rotation_axis_pixel_position", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-detector-x-rotation-axis-pixel-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_rotation_axis_pixel_position", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "y_rotation_axis_pixel_position", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-instrument-detector-y-rotation-axis-pixel-position-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_rotation_axis_pixel_position", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "In practice this axis is always aligned along one pixel direction on the detector and usually vertical.\nThere are experiments with horizontal rotation axes, so this would need to be indicated somehow.\nFor now the best way for that is an open question.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nFrames" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_translation", + "description": "Translation of the sample along the X-direction of the laboratory coordinate system\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-sample-x-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_translation", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nFrames" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "y_translation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-sample-y-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_translation", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nFrames" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "z_translation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-sample-z-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "z_translation", + "nx_units": "NX_LENGTH", + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nFrames" + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Total integral monitor counts for each measured frame. Allows a to correction for\nfluctuations in the beam between frames.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-control-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nFrames" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomo.html#nxtomo-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 136, + "m_parent_sub_section": "section_definitions", + "name": "NXtomophase", + "description": "This is the application definition for x-ray or neutron tomography raw data with phase contrast variation at each point. \n\nIn tomography first \nsome dark field images are measured, some bright field images and, of course the sample. In order \nto properly sort the order of the images taken, a sequence number is stored with each image.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXtomophase", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "end_time", + "description": "Ending time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-end-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "end_time", + "nx_optional": false, + "nx_recommended": "true", + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXtomophase" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "bright_field", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "dark_field", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/136/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "bright_field", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-bright-field-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "bright_field", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-bright-field-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nBrightFrames", + "xSize", + "ySize" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "sequence_number", + "description": "In order to properly sort the order of the images taken in (for\nexample) a tomography experiment, a sequence number is stored with each\nimage.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-bright-field-sequence-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "sequence_number", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nBrightFrames" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "dark_field", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-dark-field-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "dark_field", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-dark-field-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nDarkFrames", + "xSize", + "ySize" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "sequence_number", + "description": "In order to properly sort the order of the images taken in (for\nexample) a tomography experiment, a sequence number is stored with each\nimage.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-dark-field-sequence-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "sequence_number", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nDarkFrames" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-sample-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nSampleFrames", + "nPhase", + "xSize", + "ySize" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "sequence_number", + "description": "In order to properly sort the order of the images taken in (for\nexample) a tomography experiment, a sequence number is stored with each\nimage.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-sample-sequence-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "sequence_number", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nSampleFrames", + "nPhase" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-sample-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-sample-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Distance between detector and sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-instrument-sample-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "Optional rotation angle for the case when the powder diagram has \nbeen obtained through an omega-2theta scan like from a traditional \nsingle detector powder diffractometer.\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nSampleFrames" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_translation", + "description": "Translation of the sample along the X-direction of the laboratory coordinate system\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-sample-x-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_translation", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nSampleFrames" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "y_translation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-sample-y-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_translation", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nSampleFrames" + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "z_translation", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-sample-z-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "z_translation", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nSampleFrames" + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "integral", + "description": "Total integral monitor counts for each measured frame. Allows a correction for\nfluctuations in the beam between frames.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-control-integral-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "integral", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nDarkFrames + nBrightFrames + nSampleFrame" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomophase.html#nxtomophase-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 137, + "m_parent_sub_section": "section_definitions", + "name": "NXtomoproc", + "description": "This is an application definition for the final result of a tomography experiment: a 3D construction of some volume of physical properties.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXtomoproc", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/137/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXtomoproc" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/137/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/137/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "reconstruction", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/137/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "data", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/137/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/137/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "reconstruction", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-reconstruction-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "reconstruction", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Name of the program used for reconstruction", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-reconstruction-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "version", + "description": "Version of the program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-reconstruction-version-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "version", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "date", + "description": "Date and time of reconstruction processing.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-reconstruction-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "date", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "parameters", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/137/inner_section_definitions/0/inner_section_definitions/2/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "parameters", + "description": "Container for parameters, usually used in processing or analysis.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-reconstruction-parameters-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "parameters", + "nx_type": "NXparameters", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/87" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "raw_file", + "description": "Original raw data file this data was derived from", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-reconstruction-parameters-raw-file-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "raw_file", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "data", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "data", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "This is the reconstructed volume. This can be different\nthings. Please indicate in the unit attribute what physical\nquantity this really is.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_signal": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nX", + "nX", + "nZ" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transform", + "variable": false, + "more": { + "nx_name": "transform" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "scaling", + "variable": false, + "more": { + "nx_name": "scaling" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x", + "description": "This is an array holding the values to use for the x-axis of\ndata. The units must be appropriate for the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-data-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nX" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "y", + "description": "This is an array holding the values to use for the y-axis of\ndata. The units must be appropriate for the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-data-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_axis": "2" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nY" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "z", + "description": "This is an array holding the values to use for the z-axis of\ndata. The units must be appropriate for the measurement.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXtomoproc.html#nxtomoproc-entry-data-z-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "z", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_axis": "3" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nZ" + ], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 138, + "m_parent_sub_section": "section_definitions", + "name": "NXtransformations", + "description": "Collection of axis-based translations and rotations to describe a geometry.\nMay also contain axes that do not move and therefore do not have a transformation\ntype specified, but are useful in understanding coordinate frames within which\ntransformations are done, or in documenting important directions, such as the\ndirection of gravity.\n\nA nested sequence of transformations lists the translation and rotation steps\nneeded to describe the position and orientation of any movable or fixed device.\n\nThere will be one or more transformations (axes) defined by one or more fields\nfor each transformation. Transformations can also be described by NXlog groups when\nthe values change with time. The all-caps name ``AXISNAME`` designates the\nparticular axis generating a transformation (e.g. a rotation axis or a translation\naxis or a general axis). The attribute ``units=\"NX_TRANSFORMATION\"`` designates the\nunits will be appropriate to the ``transformation_type`` attribute:\n\n* ``NX_LENGTH`` for ``translation``\n* ``NX_ANGLE`` for ``rotation``\n* ``NX_UNITLESS`` for axes for which no transformation type is specified\n\nThis class will usually contain all axes of a sample stage or goniometer or\na detector. The NeXus default McSTAS coordinate frame is assumed, but additional\nuseful coordinate axes may be defined by using axes for which no transformation\ntype has been specified.\n\nThe entry point (``depends_on``) will be outside of this class and point to a\nfield in here. Following the chain may also require following ``depends_on``\nlinks to transformations outside, for example to a common base table. If\na relative path is given, it is relative to the group enclosing the ``depends_on``\nspecification.\n\nFor a chain of three transformations, where :math:`T_1` depends on :math:`T_2`\nand that in turn depends on :math:`T_3`, the final transformation :math:`T_f` is\n\n.. math:: T_f = T_3 T_2 T_1\n\nIn explicit terms, the transformations are a subset of affine transformations\nexpressed as 4x4 matrices that act on homogeneous coordinates, :math:`w=(x,y,z,1)^T`.\n\nFor rotation and translation,\n\n.. math:: T_r &= \\begin{pmatrix} R & o \\\\ 0_3 & 1 \\end{pmatrix} \\\\ T_t &= \\begin{pmatrix} I_3 & t + o \\\\ 0_3 & 1 \\end{pmatrix}\n\nwhere :math:`R` is the usual 3x3 rotation matrix, :math:`o` is an offset vector,\n:math:`0_3` is a row of 3 zeros, :math:`I_3` is the 3x3 identity matrix and\n:math:`t` is the translation vector.\n\n:math:`o` is given by the ``offset`` attribute, :math:`t` is given by the ``vector``\nattribute multiplied by the field value, and :math:`R` is defined as a rotation\nabout an axis in the direction of ``vector``, of angle of the field value.\n\nNOTE\n\nOne possible use of ``NXtransformations`` is to define the motors and\ntransformations for a diffractometer (goniometer). Such use is mentioned\nin the ``NXinstrument`` base class. Use one ``NXtransformations`` group \nfor each diffractometer and name the group appropriate to the device.\nCollecting the motors of a sample table or xyz-stage in an NXtransformations\ngroup is equally possible.\n\n\nFollowing the section on the general dscription of axis in NXtransformations is a section which\ndocuments the fields commonly used within NeXus for positioning purposes and their meaning. Whenever\nthere is a need for positioning a beam line component please use the existing names. Use as many fields\nas needed in order to position the component. Feel free to add more axis if required. In the description\ngiven below, only those atttributes which are defined through the name are spcified. Add the other attributes\nof the full set:\n\n* vector\n* offset\n* transformation_type\n* depends_on\n\nas needed.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXtransformations.html#nxtransformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "AXISNAME", + "description": "Units need to be appropriate for translation or rotation\n\nThe name of this field is not forced. The user is free to use any name\nthat does not cause confusion. When using more than one ``AXISNAME`` field,\nmake sure that each field name is unique in the same group, as required\nby HDF5.\n\nThe values given should be the start points of exposures for the corresponding\nframes. The end points should be given in ``AXISNAME_end``.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXtransformations.html#nxtransformations-axisname-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "AXISNAME", + "nx_nameType": "any", + "nx_units": "NX_TRANSFORMATION", + "nx_maxOccurs": "unbounded", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "transformation", + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "transformation_type", + "variable": false, + "more": { + "nx_name": "transformation_type", + "nx_optional": "true" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "translation", + "rotation" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "vector", + "variable": false, + "more": { + "nx_name": "vector", + "nx_optional": "false", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "offset", + "variable": false, + "more": { + "nx_name": "offset", + "nx_type": "NX_NUMBER" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "offset_units", + "variable": false, + "more": { + "nx_name": "offset_units", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 4, + "m_parent_sub_section": "attributes", + "name": "depends_on", + "variable": false, + "more": { + "nx_name": "depends_on", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 5, + "m_parent_sub_section": "attributes", + "name": "equipment_component", + "variable": false, + "more": { + "nx_name": "equipment_component", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "AXISNAME_end", + "description": "``AXISNAME_end`` is a placeholder for a name constructed from the actual\nname of an axis to which ``_end`` has been appended.\n\nThe values in this field are the end points of the motions that start\nat the corresponding positions given in the ``AXISNAME`` field.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXtransformations.html#nxtransformations-axisname-end-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "AXISNAME_end", + "nx_units": "NX_TRANSFORMATION", + "nx_nameType": "any", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "transformation", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "AXISNAME_increment_set", + "description": "``AXISNAME_increment_set`` is a placeholder for a name constructed from the actual\nname of an axis to which ``_increment_set`` has been appended.\n\nThe value of this optional field is the intended average range through which\nthe corresponding axis moves during the exposure of a frame. Ideally, the\nvalue of this field added to each value of ``AXISNAME`` would agree with the\ncorresponding values of ``AXISNAME_end``, but there is a possibility of significant\ndifferences. Use of ``AXISNAME_end`` is recommended.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXtransformations.html#nxtransformations-axisname-increment-set-field" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "AXISNAME_increment_set", + "nx_units": "NX_TRANSFORMATION", + "nx_nameType": "any", + "nx_minOccurs": "0", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "transformation", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 139, + "m_parent_sub_section": "section_definitions", + "name": "NXtranslation", + "description": "legacy class - (used by :ref:`NXgeometry`) - general spatial location of a component.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXtranslation.html#nxtranslation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtranslation", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "distances", + "description": "(x,y,z)\nThis field describes the lateral movement of a component.\nThe pair of groups NXtranslation and NXorientation together\ndescribe the position of a component. \nFor absolute position, the origin is the scattering center (where a perfectly \naligned sample would be) with the z-axis pointing downstream and the y-axis \npointing gravitationally up. For a relative position the NXtranslation is \ntaken into account before the NXorientation. The axes are right-handed and \northonormal.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXtranslation.html#nxtranslation-distances-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distances", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "numobj", + 3 + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "geometry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/139/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry", + "description": "Link to other object if we are relative, else absent", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXtranslation.html#nxtranslation-geometry-group" + ], + "deprecated": "as decided at 2014 NIAC meeting, convert to use :ref:`NXtransformations`", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 140, + "m_parent_sub_section": "section_definitions", + "name": "NXuser", + "description": "Contact information for a user. \n\nThe format allows more \nthan one user with the same affiliation and contact information, \nbut a second :ref:`NXuser` group should be used if they have different \naffiliations, etc.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXuser", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of user responsible for this entry", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "role", + "description": "Role of user responsible for this entry.\nSuggested roles are \"local_contact\", \n\"principal_investigator\", and \"proposer\"", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-role-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "role", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "affiliation", + "description": "Affiliation of user", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-affiliation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "affiliation", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "address", + "description": "Address of user", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-address-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "address", + "nx_optional": false, + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "telephone_number", + "description": "Telephone number of user", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-telephone-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "telephone_number", + "nx_optional": "true", + "nx_recommended": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "fax_number", + "description": "Fax number of user", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-fax-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "fax_number", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "email", + "description": "Email of user", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-email-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "email", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "facility_user_id", + "description": "facility based unique identifier for this person \ne.g. their identification code on the facility \naddress/contact database", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-facility-user-id-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "facility_user_id", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "ORCID", + "description": "an author code, Open Researcher and Contributor ID,\ndefined by https://orcid.org and expressed as a URI", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXuser.html#nxuser-orcid-field", + "https://orcid.org" + ], + "variable": true, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "ORCID", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 141, + "m_parent_sub_section": "section_definitions", + "name": "NXvelocity_selector", + "description": "A neutron velocity selector", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXvelocity_selector", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "velocity selector type", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_speed", + "description": "velocity selector rotation speed", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-rotation-speed-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_speed", + "nx_units": "NX_FREQUENCY", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[frequency]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "radius", + "description": "radius at beam centre", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-radius-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "radius", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "spwidth", + "description": "spoke width at beam centre", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-spwidth-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "spwidth", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "length", + "description": "rotor length", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "length", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "num", + "description": "number of spokes/lamella", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-num-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "num", + "nx_units": "NX_UNITLESS", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "twist", + "description": "twist angle along axis", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-twist-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "twist", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "table", + "description": "offset vertical angle", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-table-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "table", + "nx_units": "NX_ANGLE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "height", + "description": "input beam height", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-height-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "height", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "width", + "description": "input beam width", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-width-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "width", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "wavelength_spread", + "description": "deviation FWHM /Wavelength", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-wavelength-spread-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength_spread", + "nx_units": "NX_WAVELENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a velocity selector.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "geometry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/141/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/141/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/141/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "geometry", + "description": "legacy class - recommend to use :ref:`NXtransformations` now\n\nIt is recommended that instances of :ref:`NXgeometry` be converted to \nuse :ref:`NXtransformations`.\n\nThis is the description for a general position of a component. \nIt is recommended to name an instance of :ref:`NXgeometry` as \"geometry\"\nto aid in the use of the definition in simulation codes such as McStas.\nAlso, in HDF, linked items must share the same name.\nHowever, it might not be possible or practical in all situations.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-geometry-group" + ], + "deprecated": "Use the field `depends_on` and :ref:`NXtransformations` to position the velocity selector and NXoff_geometry to describe its shape instead", + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "geometry", + "nx_type": "NXgeometry", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/49" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXvelocity-selector.html#nxvelocity-selector-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 142, + "m_parent_sub_section": "section_definitions", + "name": "NXxas", + "description": "This is an application definition for raw data from an X-ray absorption spectroscopy experiment. \n\nThis is essentially a scan on energy versus incoming/ \nabsorbed beam.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxas", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "entry", + "variable": false, + "more": { + "nx_name": "entry" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxas" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "INSTRUMENT", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "MONITOR", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXinstrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXinstrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SOURCE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "monochromator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "incoming_beam", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "absorbed_beam", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/142/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/3", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsource", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsource", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65/inner_section_definitions/23" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "x-ray" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "monochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "monochromator", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy", + "description": "energy selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-monochromator-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "energy", + "nx_units": "NX_ENERGY", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[energy]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "incoming_beam", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-incoming-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "incoming_beam", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "Data values from the detector. The rank and dimension ordering should follow a principle of\nslowest to fastest measurement axes and may be explicitly specified in application definitions.\n\nMechanical scanning of objects (e.g. sample position/angle, incident beam energy, etc) tends to be\nthe slowest part of an experiment and so any such scan axes should be allocated to the first dimensions\nof the array. Note that in some cases it may be useful to represent a 2D set of scan points as a single\nscan-axis in the data array, especially if the scan pattern doesn't fit a rectangular array nicely.\nRepetition of an experiment in a time series tends to be used similar to a slow scan axis\nand so will often be in the first dimension of the data array.\n\nThe next fastest axes are typically the readout of the detector. A point detector will not add any dimensions\n(as it is just a single value per scan point) to the data array, a strip detector will add one dimension, an \nimaging detector will add two dimensions (e.g. X, Y axes) and detectors outputting higher dimensional data \nwill add the corresponding number of dimensions. Note that the detector dimensions don't necessarily have to\nbe written in order of the actual readout speeds - the slowest to fastest rule principle is only a guide.\n\nFinally, detectors that operate in a time-of-flight mode, such as a neutron spectrometer or a silicon drift \ndetector (used for X-ray fluorescence) tend to have their dimension(s) added to the last dimensions in the data array.\n\nThe type of each dimension should should follow the order of scan points, detector pixels, \nthen time-of-flight (i.e. spectroscopy, spectrometry). The rank and dimension sizes (see symbol list) \nshown here are merely illustrative of coordination between related datasets.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-incoming-beam-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "absorbed_beam", + "description": "A detector, detector bank, or multidetector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-absorbed-beam-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "absorbed_beam", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "This data corresponds to the sample signal.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-instrument-absorbed-beam-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXmonitor", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-monitor-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXmonitor", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/8" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-monitor-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-monitor-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "This field could be a link to ``/NXentry/NXinstrument/incoming_beam:NXdetector/data``", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-monitor-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_NUMBER", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_primary": "1", + "nx_axes": "time_of_flight" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Detection method used for observing the sample absorption (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxas.html#nxxas-entry-data-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Total Electron Yield", + "Partial Electron Yield", + "Auger Electron Yield", + "Fluorescence Yield", + "Transmission" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 143, + "m_parent_sub_section": "section_definitions", + "name": "NXxasproc", + "description": "Processed data from XAS. This is energy versus I(incoming)/I(absorbed).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxasproc", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "ENTRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/143/inner_section_definitions/0", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXentry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXentry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "entry", + "variable": false, + "more": { + "nx_name": "entry" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxasproc" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "SAMPLE", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/143/inner_section_definitions/0/inner_section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "XAS_data_reduction", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/143/inner_section_definitions/0/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/143/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXsample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXsample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "XAS_data_reduction", + "description": "Document an event of data processing, reconstruction, or analysis for this data.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-xas-data-reduction-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "XAS_data_reduction", + "nx_type": "NXprocess", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/93" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "program", + "description": "Name of the program used for reconstruction", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-xas-data-reduction-program-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "program", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "version", + "description": "Version of the program used", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-xas-data-reduction-version-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "version", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "date", + "description": "Date and time of reconstruction processing.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-xas-data-reduction-date-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "date", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "parameters", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/143/inner_section_definitions/0/inner_section_definitions/1/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "parameters", + "description": "Container for parameters, usually used in processing or analysis.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-xas-data-reduction-parameters-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "parameters", + "nx_type": "NXparameters", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/87" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "raw_file", + "description": "Original raw data file this data was derived from", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-xas-data-reduction-parameters-raw-file-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "raw_file", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The data group\n\n.. note:: Before the NIAC2016 meeting [#]_, at least one\n :ref:`NXdata` group was required in each :ref:`NXentry` group.\n At the NIAC2016 meeting, it was decided to make :ref:`NXdata`\n an optional group in :ref:`NXentry` groups for data files that\n do not use an application definition.\n It is recommended strongly that all NeXus data files provide\n a NXdata group.\n It is permissable to omit the NXdata group only when\n defining the default plot is not practical or possible\n from the available data.\n\n For example, neutron event data may not have anything that\n makes a useful plot without extensive processing.\n\n Certain application definitions override this decision and\n require an :ref:`NXdata` group\n in the :ref:`NXentry` group. The ``minOccurs=0`` attribute\n in the application definition will indicate the\n :ref:`NXdata` group\n is optional, otherwise, it is required.\n\n .. [#] NIAC2016:\n https://www.nexusformat.org/NIAC2016.html,\n https://github.com/nexusformat/NIAC/issues/16", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-data-energy-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "energy", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "nP" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "This is corrected and calibrated I(incoming)/I(absorbed). So it is the absorption. \nExpect attribute ``signal=1``", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxasproc.html#nxxasproc-entry-data-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "data", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "flexible_unit": true + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 144, + "m_parent_sub_section": "section_definitions", + "name": "NXxbase", + "description": "This definition covers the common parts of all monochromatic single crystal raw data application definitions.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxbase", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/144/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/39" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "title", + "description": "Extended title for entry", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-title-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "title", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "start_time", + "description": "Starting time of measurement", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-start-time-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_DATE_TIME", + "nx_name": "start_time", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxbase" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "control", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "DATA", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/3", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/65" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "source", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "monochromator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "source", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "source", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/119" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "type of radiation source (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-source-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "type", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "Spallation Neutron Source", + "Pulsed Reactor Neutron Source", + "Reactor Neutron Source", + "Synchrotron X-ray Source", + "Pulsed Muon Source", + "Rotating Anode X-ray", + "Fixed Tube X-ray", + "UV Laser", + "Free-Electron Laser", + "Optical Laser", + "Ion Source", + "UV Plasma Source", + "Metal Jet X-ray" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Name of source", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-source-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "short_name", + "variable": false, + "more": { + "nx_name": "short_name", + "nx_optional": "true" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "probe", + "description": "type of radiation probe (pick one from the enumerated list and spell exactly)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-source-probe-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "probe", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "neutron", + "x-ray", + "electron" + ] + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "monochromator", + "description": "A wavelength defining device.\n\nThis is a base class for everything which\nselects a wavelength or energy, be it a \nmonochromator crystal, a velocity selector,\nan undulator or whatever.\n\nThe expected units are:\n\n* wavelength: angstrom\n* energy: eV", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-monochromator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "monochromator", + "nx_type": "NXmonochromator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/78" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "description": "wavelength selected", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-monochromator-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "The name of the group is detector if there is only one detector, \nif there are several, names have to be detector1, \ndetector2, ...detectorn.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/27" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "The area detector data, the first dimension is always the\nnumber of scan points, the second and third are the number\nof pixels in x and y. The origin is always assumed to be\nin the center of the detector. maxOccurs is limited to the\nthe number of detectors on your instrument.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-detector-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "data", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_signal": "1", + "nx_minOccurs": "1", + "nx_maxOccurs": "1", + "nx_axes": "x_pixel_offset,y_pixel_offset,time_of_flight", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [ + "nP", + "nXPixels", + "nYPixels" + ], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "long_name", + "variable": false, + "more": { + "nx_name": "long_name" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "check_sum", + "variable": false, + "more": { + "nx_name": "check_sum", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal", + "nx_type": "NX_POSINT" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "1" + ] + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-detector-x-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "y_pixel_size", + "description": "Size of each detector pixel. If it is scalar all pixels are the same size", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-detector-y-pixel-size-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_pixel_size", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "This is the distance to the previous component in the\ninstrument; most often the sample. The usage depends on the\nnature of the detector: Most often it is the distance of the\ndetector assembly. But there are irregular detectors. In this\ncase the distance must be specified for each detector pixel.\n\nNote, it is recommended to use NXtransformations instead.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-detector-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "frame_start_number", + "description": "This is the start number of the first frame of a scan. In PX one often scans a couple \nof frames on a give sample, then does something else, then returns to the same sample \nand scans some more frames. Each time with a new data file.\nThis number helps concatenating such measurements. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-instrument-detector-frame-start-number-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "frame_start_number", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/105" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Descriptive name of sample", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-sample-name-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "name", + "nx_optional": false, + "nx_maxOccurs": "1", + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "orientation_matrix", + "description": "The orientation matrix according to Busing and \nLevy conventions. This is not strictly necessary as \nthe UB can always be derived from the data. But \nlet us bow to common usage which includes the \nUB nearly always.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-sample-orientation-matrix-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "orientation_matrix", + "nx_optional": false, + "nx_units": "NX_DIMENSIONLESS" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "unit_cell", + "description": "The unit cell, a, b, c, alpha, beta, gamma. \nAgain, not strictly necessary, but normally written.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-sample-unit-cell-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "unit_cell", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "The sample temperature or whatever sensor represents this value best", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-sample-temperature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "temperature", + "nx_units": "NX_TEMPERATURE", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[temperature]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_translation", + "description": "Translation of the sample along the X-direction of the laboratory coordinate system", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-sample-x-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "x_translation", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "y_translation", + "description": "Translation of the sample along the Y-direction of the laboratory coordinate system", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-sample-y-translation-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "y_translation", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "distance", + "description": "Translation of the sample along the Z-direction of the laboratory coordinate system", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-sample-distance-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "distance", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "control", + "description": "A monitor of incident beam data. \n\nIt is similar to the :ref:`NXdata` groups containing\nmonitor data and its associated dimension scale, e.g. time_of_flight or\nwavelength in pulsed neutron instruments. However, it may also include\nintegrals, or scalar monitor counts, which are often used in both in both\npulsed and steady-state instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-control-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "control", + "nx_type": "NXmonitor", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/77" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "mode", + "description": "Count to a preset value based on either clock time (timer)\nor received monitor counts (monitor).", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-control-mode-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "mode", + "nx_optional": false + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "monitor", + "timer" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "preset", + "description": "preset value for time or monitor", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-control-preset-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "preset", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "integral", + "description": "Total integral monitor counts", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-control-integral-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "integral", + "nx_units": "NX_ANY", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXdata", + "description": "The name of this group id data if there is only \none detector; if there are several the names will \nbe data1, data2, data3 and will point \nto the corresponding detector groups in the \ninstrument hierarchy.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxbase.html#nxxbase-entry-data-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXdata", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/39/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 145, + "m_parent_sub_section": "section_definitions", + "name": "NXxeuler", + "description": "raw data from a :index:`four-circle diffractometer` with an :index:`eulerian cradle`, extends :ref:`NXxbase`\n\nIt extends :ref:`NXxbase`, so the full definition is the content \nof :ref:`NXxbase` plus the data defined here. All four angles are \nlogged in order to support arbitrary scans in reciprocal space.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxeuler", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXxbase" + }, + "base_sections": [ + "/packages/18/section_definitions/144" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/145/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxeuler" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/145/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/145/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "name", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/145/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/145/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "The name of the group is detector if there is only one detector, \nif there are several, names have to be detector1, \ndetector2, ...detectorn.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "The polar_angle (two theta) where the detector is placed\nat each scan point.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "This is an array holding the sample rotation angle at each\nscan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "chi", + "description": "This is an array holding the chi angle of the eulerian\ncradle at each scan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-sample-chi-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "chi", + "nx_units": "NX_ANGLE", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "phi", + "description": "This is an array holding the phi rotation of the eulerian\ncradle at each scan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-sample-phi-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "phi", + "nx_units": "NX_ANGLE", + "nx_signal": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "name", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxeuler.html#nxxeuler-entry-name-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "name", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 146, + "m_parent_sub_section": "section_definitions", + "name": "NXxkappa", + "description": "raw data from a kappa geometry (CAD4) single crystal diffractometer, extends :ref:`NXxbase`\n\nThis is the application definition for raw data from a kappa geometry \n(CAD4) single crystal\ndiffractometer. It extends :ref:`NXxbase`, so the full definition is \nthe content of :ref:`NXxbase` plus the\ndata defined here.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxkappa", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXxbase" + }, + "base_sections": [ + "/packages/18/section_definitions/144" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/146/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxkappa" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/146/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/146/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "name", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/146/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/146/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "The name of the group is detector if there is only one detector, \nif there are several, names have to be detector1, \ndetector2, ...detectorn.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "The polar_angle (two theta) at each scan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "This is an array holding the sample rotation angle at each\nscan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "kappa", + "description": "This is an array holding the kappa angle at each scan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-sample-kappa-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "kappa", + "nx_units": "NX_ANGLE", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "phi", + "description": "This is an array holding the phi angle at each scan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-sample-phi-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "phi", + "nx_units": "NX_ANGLE", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "alpha", + "description": "This holds the inclination angle of the kappa arm. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-sample-alpha-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "alpha", + "nx_units": "NX_ANGLE", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "name", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxkappa.html#nxxkappa-entry-name-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "name", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 147, + "m_parent_sub_section": "section_definitions", + "name": "NXxlaue", + "description": "raw data from a single crystal laue camera, extends :ref:`NXxrot`\n\nThis is the application definition for raw data from a single crystal laue \ncamera. It extends :ref:`NXxrot`.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaue.html#nxxlaue-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxlaue", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXxrot" + }, + "base_sections": [ + "/packages/18/section_definitions/151" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/147/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaue.html#nxxlaue-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/151/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaue.html#nxxlaue-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxlaue" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/147/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaue.html#nxxlaue-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/151/inner_section_definitions/0/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "source", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/147/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "source", + "description": "The neutron or x-ray storage ring/facility.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaue.html#nxxlaue-entry-instrument-source-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "source", + "nx_type": "NXsource", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "distribution", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/147/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "distribution", + "description": "This is the wavelength distribution of the beam", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaue.html#nxxlaue-entry-instrument-source-distribution-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "distribution", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/119/inner_section_definitions/5" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "data", + "description": "expect ``signal=1 axes=\"energy\"``", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaue.html#nxxlaue-entry-instrument-source-distribution-data-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "data", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "nE" + ], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "wavelength", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaue.html#nxxlaue-entry-instrument-source-distribution-wavelength-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "wavelength", + "nx_units": "NX_WAVELENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "nE" + ], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 148, + "m_parent_sub_section": "section_definitions", + "name": "NXxlaueplate", + "description": "raw data from a single crystal Laue camera, extends :ref:`NXxlaue`\n\nThis is the application definition for raw data from a single crystal Laue \ncamera with an image plate as a detector. It extends :ref:`NXxlaue`.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaueplate.html#nxxlaueplate-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxlaueplate", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXxlaue" + }, + "base_sections": [ + "/packages/18/section_definitions/147" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/148/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaueplate.html#nxxlaueplate-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/147/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaueplate.html#nxxlaueplate-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxlaueplate" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/148/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaueplate.html#nxxlaueplate-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/147/inner_section_definitions/0/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/148/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "The name of the group is detector if there is only one detector, \nif there are several, names have to be detector1, \ndetector2, ...detectorn.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaueplate.html#nxxlaueplate-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/151/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "diameter", + "description": "The diameter of a cylindrical detector", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxlaueplate.html#nxxlaueplate-entry-instrument-detector-diameter-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "diameter", + "nx_units": "NX_LENGTH", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 149, + "m_parent_sub_section": "section_definitions", + "name": "NXxnb", + "description": "raw data from a single crystal diffractometer, extends :ref:`NXxbase`\n\nThis is the application definition for raw data from \na single crystal diffractometer\nmeasuring in normal beam mode. It extends :ref:`NXxbase`, \nso the full definition is the content of\n:ref:`NXxbase` plus the data defined here. All angles are \nlogged in order to support arbitrary scans in\nreciprocal space.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxnb", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXxbase" + }, + "base_sections": [ + "/packages/18/section_definitions/144" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/149/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxnb" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/149/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/149/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "name", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/149/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/149/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "The name of the group is detector if there is only one detector, \nif there are several, names have to be detector1, \ndetector2, ...detectorn.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "The polar_angle (gamma) of the detector for each scan point.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "tilt_angle", + "description": "The angle by which the detector has been tilted out of the\nscattering plane.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-instrument-detector-tilt-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "tilt_angle", + "nx_units": "NX_ANGLE", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "This is an array holding the sample rotation angle at each\nscan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "name", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxnb.html#nxxnb-entry-name-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "name", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 150, + "m_parent_sub_section": "section_definitions", + "name": "NXxraylens", + "description": "An X-ray lens, typically at a synchrotron X-ray beam line.\n\nBased on information provided by Gerd Wellenreuther (DESY).", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXxraylens", + "nx_type": "group", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/83" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "lens_geometry", + "description": "Geometry of the lens", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-lens-geometry-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "lens_geometry", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "paraboloid", + "spherical", + "elliptical", + "hyperbolical" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "symmetric", + "description": "Is the device symmetric? ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-symmetric-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "symmetric", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "cylindrical", + "description": "Is the device cylindrical? ", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-cylindrical-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_BOOLEAN", + "nx_name": "cylindrical", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "focus_type", + "description": "The type of focus of the lens", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-focus-type-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "focus_type", + "nx_optional": true + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "line", + "point" + ] + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "lens_thickness", + "description": "Thickness of the lens", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-lens-thickness-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "lens_thickness", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "lens_length", + "description": "Length of the lens", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-lens-length-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "lens_length", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "curvature", + "description": "Radius of the curvature as measured in the middle of the lens", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-curvature-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "curvature", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "aperture", + "description": "Diameter of the lens.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-aperture-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "aperture", + "nx_units": "NX_LENGTH", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "number_of_lenses", + "description": "Number of lenses that make up the compound lens.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-number-of-lenses-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_INT", + "nx_name": "number_of_lenses", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "lens_material", + "description": "Material used to make the lens.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-lens-material-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "lens_material", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "gas", + "description": "Gas used to fill the lens", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-gas-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "gas", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "gas_pressure", + "description": "Gas pressure in the lens", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-gas-pressure-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "gas_pressure", + "nx_units": "NX_PRESSURE", + "nx_optional": true + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[pressure]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "depends_on", + "description": "NeXus positions components by applying a set of translations and rotations\nto apply to the component starting from 0, 0, 0. The order of these operations\nis critical and forms what NeXus calls a dependency chain. The depends_on\nfield defines the path to the top most operation of the dependency chain or the\nstring \".\" if located in the origin. Usually these operations are stored in a\nNXtransformations group. But NeXus allows them to be stored anywhere.\n\n.. todo::\n Add a definition for the reference point of a x-ray lens.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-depends-on-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "depends_on", + "nx_optional": true + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [], + "flexible_unit": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "cylinder_orientation", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/150/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "OFF_GEOMETRY", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/150/inner_section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "TRANSFORMATIONS", + "variable": true, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/150/inner_section_definitions/2", + "repeats": true + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "cylinder_orientation", + "description": "Orientation of the cylinder axis.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-cylinder-orientation-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "cylinder_orientation", + "nx_type": "NXnote", + "nx_optional": true, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/82" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXoff_geometry", + "description": "This group describes the shape of the beam line component", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-off-geometry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXoff_geometry", + "nx_type": "NXoff_geometry", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_minOccurs": "0" + }, + "base_sections": [ + "/packages/18/section_definitions/84" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "NXtransformations", + "description": "This is the group recommended for holding the chain of translation\nand rotation operations necessary to position the component within\nthe instrument. The dependency chain may however traverse similar groups in\nother component groups.", + "links": [ + "https://manual.nexusformat.org/classes/base_classes/NXxraylens.html#nxxraylens-transformations-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "NXtransformations", + "nx_type": "NXtransformations", + "nx_optional": true, + "nx_extends": "NXobject", + "nx_ignoreExtraGroups": "true", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/138" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 151, + "m_parent_sub_section": "section_definitions", + "name": "NXxrot", + "description": "raw data from a rotation camera, extends :ref:`NXxbase` \n\nThis is the application definition for raw data from a rotation camera.\nIt extends :ref:`NXxbase`, so the full definition is the content of :ref:`NXxbase`\nplus the data defined here.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "application", + "nx_name": "NXxrot", + "nx_type": "group", + "nx_optional": false, + "nx_extends": "NXxbase" + }, + "base_sections": [ + "/packages/18/section_definitions/144" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "entry", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/151/inner_section_definitions/0", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "entry", + "description": "(**required**) :ref:`NXentry` describes the measurement.\n\nThe top-level NeXus group which contains all the data and associated\ninformation that comprise a single measurement.\nIt is mandatory that there is at least one\ngroup of this type in the NeXus file. ", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "entry", + "nx_type": "NXentry", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "IDF_Version", + "variable": true, + "more": { + "nx_name": "IDF_Version" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "definition", + "description": "Official NeXus NXDL schema to which this file conforms.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-definition-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_CHAR", + "nx_name": "definition", + "nx_optional": false, + "nx_minOccurs": "1", + "nx_maxOccurs": "1" + }, + "type": { + "type_kind": "Enum", + "type_data": [ + "NXxrot" + ] + }, + "shape": [], + "flexible_unit": true, + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "version", + "variable": false, + "more": { + "nx_name": "version", + "nx_type": "NX_CHAR" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "URL", + "variable": true, + "more": { + "nx_name": "URL" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "instrument", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/151/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sample", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/151/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "name", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/151/inner_section_definitions/0/inner_section_definitions/2", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "instrument", + "description": "Collection of the components of the instrument or beamline.\n\nTemplate of instrument descriptions comprising various beamline components. \nEach component will also be a NeXus group defined by its distance from the \nsample. Negative distances represent beamline components that are before the \nsample while positive distances represent components that are after the sample. \nThis device allows the unique identification of beamline components in a way \nthat is valid for both reactor and pulsed instrumentation.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-instrument-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "instrument", + "nx_type": "NXinstrument", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "detector", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/151/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "attenuator", + "variable": false, + "more": { + "nx_kind": "group" + }, + "sub_section": "/packages/18/section_definitions/151/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/1", + "repeats": false + } + ], + "inner_section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "inner_section_definitions", + "name": "detector", + "description": "The name of the group is detector if there is only one detector, \nif there are several, names have to be detector1, \ndetector2, ...detectorn.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-instrument-detector-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "detector", + "nx_type": "NXdetector", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_maxOccurs": "unbounded" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/0/inner_section_definitions/2" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "polar_angle", + "description": "The polar_angle (two theta) where the detector is placed.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-instrument-detector-polar-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "polar_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "beam_center_x", + "description": "This is the x position where the direct beam would hit the detector. This is a\nlength, not a pixel position, and can be outside of the actual detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-instrument-detector-beam-center-x-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_x", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "beam_center_y", + "description": "This is the y position where the direct beam would hit the detector. This is a\nlength, not a pixel position, and can be outside of the actual detector.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-instrument-detector-beam-center-y-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "beam_center_y", + "nx_units": "NX_LENGTH", + "nx_optional": false, + "nx_minOccurs": "0", + "nx_maxOccurs": "1", + "nx_recommended": "true" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "[length]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "attenuator", + "description": "A device that reduces the intensity of a beam by attenuation.\n\nIf uncertain whether to use :ref:`NXfilter` (band-pass filter)\nor :ref:`NXattenuator` (reduces beam intensity), then choose \n:ref:`NXattenuator`.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-instrument-attenuator-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "attenuator", + "nx_type": "NXattenuator", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/6" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "attenuator_transmission", + "description": "The nominal amount of the beam that gets through\n(transmitted intensity)/(incident intensity)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-instrument-attenuator-attenuator-transmission-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "attenuator_transmission", + "nx_units": "NX_ANY", + "nx_optional": false, + "nx_minOccurs": "0" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "dimensionality": "1", + "flexible_unit": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "inner_section_definitions", + "name": "sample", + "description": "Any information on the sample. \n\nThis could include scanned variables that\nare associated with one of the data dimensions, e.g. the magnetic field, or\nlogged data, e.g. monitored temperature vs elapsed time.", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-sample-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "sample", + "nx_type": "NXsample", + "nx_optional": false, + "nx_extends": "NXobject" + }, + "base_sections": [ + "/packages/18/section_definitions/144/inner_section_definitions/0/inner_section_definitions/1" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "default", + "variable": false, + "more": { + "nx_name": "default" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "rotation_angle", + "description": "This is an array holding the sample rotation start angle at each scan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-sample-rotation-angle-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle", + "nx_units": "NX_ANGLE", + "nx_optional": false, + "nx_axis": "1", + "nx_primary": "1" + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "rotation_angle_step", + "description": "This is an array holding the step made for sample rotation angle at each scan point", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-sample-rotation-angle-step-field" + ], + "variable": false, + "more": { + "nx_kind": "field", + "nx_type": "NX_FLOAT", + "nx_name": "rotation_angle_step", + "nx_units": "NX_ANGLE", + "nx_axis": "1", + "nx_optional": false + }, + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nP" + ], + "dimensionality": "[angle]", + "flexible_unit": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "inner_section_definitions", + "name": "name", + "description": ":ref:`NXdata` describes the plottable data and related dimension scales. \n\n.. index:: plotting\n\nIt is strongly recommended that there is at least one :ref:`NXdata`\ngroup in each :ref:`NXentry` group.\nNote that the fields named ``AXISNAME`` and ``DATA``\ncan be defined with different names. \n(Upper case is used to indicate that the actual name is left to the user.)\nThe ``signal`` and ``axes`` attributes of the \n``data`` group define which items \nare plottable data and which are *dimension scales*, respectively.\n\n:ref:`NXdata` is used to implement one of the basic motivations in NeXus,\nto provide a default plot for the data of this :ref:`NXentry`. The actual data\nmight be stored in another group and (hard) linked to the :ref:`NXdata` group.\n\n* Each :ref:`NXdata` group will define one field as the default\n plottable data. The value of the ``signal`` attribute names this field.\n Additional fields may be used to describe the dimension scales and \n uncertainities.\n The ``auxiliary_signals`` attribute is a list of the other fields\n to be plotted with the ``signal`` data.\n* The plottable data may be of arbitrary rank up to a maximum\n of ``NX_MAXRANK=32`` (for compatibility with backend file formats).\n* The plottable data will be named as the value of \n the group ``signal`` attribute, such as::\n \n data:NXdata\n @signal = \"counts\"\n @axes = \"mr\"\n @mr_indices = 0\n counts: float[100] --> the default dependent data\n mr: float[100] --> the default independent data\n \n The field named in the ``signal`` attribute **must** exist, either\n directly as a NeXus field or defined through a link.\n\n* The group ``axes`` attribute will name the\n *dimension scale* associated with the plottable data.\n\nIf available, the standard deviations of the data are to be\nstored in a data set of the same rank and dimensions, with the name ``errors``. \n\n* For each data dimension, there should be a one-dimensional array\n of the same length.\n* These one-dimensional arrays are the *dimension scales* of the\n data, *i.e*. the values of the independent variables at which the data\n is measured, such as scattering angle or energy transfer.\n\n.. index:: link\n.. index:: axes (attribute)\n\nThe preferred method to associate each data dimension with\nits respective dimension scale is to specify the field name\nof each dimension scale in the group ``axes`` attribute as a string list.\nHere is an example for a 2-D data set *data* plotted \nagainst *time*, and *pressure*. (An additional *temperature* data set \nis provided and could be selected as an alternate for the *pressure* axis.)::\n\n data_2d:NXdata\n @signal=\"data\"\n @axes=[\"time\", \"pressure\"]\n @pressure_indices=1\n @temperature_indices=1\n @time_indices=0\n data: float[1000,20]\n pressure: float[20]\n temperature: float[20]\n time: float[1000]\n\n.. rubric:: Old methods to identify the plottable data\n\nThere are two older methods of associating \neach data dimension to its respective dimension scale.\nBoth are now out of date and\nshould not be used when writing new data files.\nHowever, client software should expect to see data files\nwritten with any of these methods.\n\n * One method uses the ``axes`` \n attribute to specify the names of each *dimension scale*.\n\n * The oldest method uses the ``axis`` attribute on each\n *dimension scale* to identify\n with an integer the axis whose value is the number of the dimension.\n\n.. index: !plot; axis label\n plot, axis units\n units\n dimension scale\n\nEach axis of the plot may be labeled with information from the \ndimension scale for that axis. The optional ``@long_name`` attribute\nis provided as the axis label default. If ``@long_name`` is not\ndefined, then use the name of the dimension scale. A ``@units`` attribute,\nif available, may be added to the axis label for further description.\nSee the section :ref:`Design-Units` for more information.\n\n.. index: !plot; axis title\n\nThe optional ``title`` field, if available, provides a suggested\ntitle for the plot. If no ``title`` field is found in the :ref:`NXdata`\ngroup, look for a ``title`` field in the parent :ref:`NXentry` group,\nwith a fallback to displaying the path to the :ref:`NXdata` group.\n\nNeXus is about how to find and annotate the data to be plotted \nbut not to describe how the data is to be plotted.\n(https://www.nexusformat.org/NIAC2018Minutes.html#nxdata-plottype--attribute)", + "links": [ + "https://manual.nexusformat.org/classes/applications/NXxrot.html#nxxrot-entry-name-group" + ], + "more": { + "nx_kind": "group", + "nx_category": "base", + "nx_name": "name", + "nx_type": "NXdata", + "nx_optional": false, + "nx_extends": "NXobject", + "nx_ignoreExtraFields": "true", + "nx_ignoreExtraAttributes": "true" + }, + "base_sections": [ + "/packages/18/section_definitions/25" + ], + "attributes": [ + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 0, + "m_parent_sub_section": "attributes", + "name": "auxiliary_signals", + "variable": false, + "more": { + "nx_name": "auxiliary_signals" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 1, + "m_parent_sub_section": "attributes", + "name": "signal", + "variable": false, + "more": { + "nx_name": "signal" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 2, + "m_parent_sub_section": "attributes", + "name": "axes", + "variable": false, + "more": { + "nx_name": "axes" + }, + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Attribute", + "m_parent_index": 3, + "m_parent_sub_section": "attributes", + "name": "AXISNAME_indices", + "variable": true, + "more": { + "nx_name": "AXISNAME_indices", + "nx_type": "NX_INT" + }, + "type": { + "type_kind": "numpy", + "type_data": "int64" + }, + "shape": [] + } + ] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 152, + "m_parent_sub_section": "section_definitions", + "name": "NeXus", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "NXapm", + "sub_section": "/packages/18/section_definitions/3" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "NXarchive", + "sub_section": "/packages/18/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "NXarpes", + "sub_section": "/packages/18/section_definitions/5" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "NXcanSAS", + "sub_section": "/packages/18/section_definitions/11" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "NXcxi_ptycho", + "sub_section": "/packages/18/section_definitions/23" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "NXdirecttof", + "sub_section": "/packages/18/section_definitions/30" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "NXellipsometry", + "sub_section": "/packages/18/section_definitions/36" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "NXem", + "sub_section": "/packages/18/section_definitions/37" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "NXfluo", + "sub_section": "/packages/18/section_definitions/47" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "NXindirecttof", + "sub_section": "/packages/18/section_definitions/63" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "NXiqproc", + "sub_section": "/packages/18/section_definitions/68" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "NXlauetof", + "sub_section": "/packages/18/section_definitions/69" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "NXmonopd", + "sub_section": "/packages/18/section_definitions/79" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "NXmpes", + "sub_section": "/packages/18/section_definitions/80" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "NXmx", + "sub_section": "/packages/18/section_definitions/81" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "NXrefscan", + "sub_section": "/packages/18/section_definitions/100" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "NXreftof", + "sub_section": "/packages/18/section_definitions/101" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "NXsas", + "sub_section": "/packages/18/section_definitions/107" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "NXsastof", + "sub_section": "/packages/18/section_definitions/108" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "NXscan", + "sub_section": "/packages/18/section_definitions/109" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 20, + "m_parent_sub_section": "sub_sections", + "name": "NXsnsevent", + "sub_section": "/packages/18/section_definitions/115" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 21, + "m_parent_sub_section": "sub_sections", + "name": "NXsnshisto", + "sub_section": "/packages/18/section_definitions/116" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 22, + "m_parent_sub_section": "sub_sections", + "name": "NXspe", + "sub_section": "/packages/18/section_definitions/120" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 23, + "m_parent_sub_section": "sub_sections", + "name": "NXsqom", + "sub_section": "/packages/18/section_definitions/127" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 24, + "m_parent_sub_section": "sub_sections", + "name": "NXstxm", + "sub_section": "/packages/18/section_definitions/129" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 25, + "m_parent_sub_section": "sub_sections", + "name": "NXtas", + "sub_section": "/packages/18/section_definitions/131" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 26, + "m_parent_sub_section": "sub_sections", + "name": "NXtofnpd", + "sub_section": "/packages/18/section_definitions/132" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 27, + "m_parent_sub_section": "sub_sections", + "name": "NXtofraw", + "sub_section": "/packages/18/section_definitions/133" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 28, + "m_parent_sub_section": "sub_sections", + "name": "NXtofsingle", + "sub_section": "/packages/18/section_definitions/134" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 29, + "m_parent_sub_section": "sub_sections", + "name": "NXtomo", + "sub_section": "/packages/18/section_definitions/135" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 30, + "m_parent_sub_section": "sub_sections", + "name": "NXtomophase", + "sub_section": "/packages/18/section_definitions/136" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 31, + "m_parent_sub_section": "sub_sections", + "name": "NXtomoproc", + "sub_section": "/packages/18/section_definitions/137" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 32, + "m_parent_sub_section": "sub_sections", + "name": "NXxas", + "sub_section": "/packages/18/section_definitions/142" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 33, + "m_parent_sub_section": "sub_sections", + "name": "NXxasproc", + "sub_section": "/packages/18/section_definitions/143" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 34, + "m_parent_sub_section": "sub_sections", + "name": "NXxbase", + "sub_section": "/packages/18/section_definitions/144" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 35, + "m_parent_sub_section": "sub_sections", + "name": "NXxeuler", + "sub_section": "/packages/18/section_definitions/145" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 36, + "m_parent_sub_section": "sub_sections", + "name": "NXxkappa", + "sub_section": "/packages/18/section_definitions/146" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 37, + "m_parent_sub_section": "sub_sections", + "name": "NXxlaue", + "sub_section": "/packages/18/section_definitions/147" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 38, + "m_parent_sub_section": "sub_sections", + "name": "NXxlaueplate", + "sub_section": "/packages/18/section_definitions/148" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 39, + "m_parent_sub_section": "sub_sections", + "name": "NXxnb", + "sub_section": "/packages/18/section_definitions/149" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 40, + "m_parent_sub_section": "sub_sections", + "name": "NXxrot", + "sub_section": "/packages/18/section_definitions/151" + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 19, + "m_parent_sub_section": "packages", + "name": "nomad.metainfo.metainfo", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "Definition", + "description": ":class:`Definition` is the common base class for all metainfo definitions. All metainfo `definitions` (sections, quantities, subsections, packages, ...) share\nsome common properties.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "name", + "description": "Each `definition` has a name. Names have to be valid Python identifier.\nThey can contain letters, numbers and _, but must not start with a number.\nThis also qualifies them as identifier in most storage formats, databases,\nmakes them URL safe, etc.\n\nNames must be unique within the :class:`Package` or :class:`Section` that\nthis definition is part of.\n\nBy convention, we use capitalized `CamelCase` identifier to refer to *sections\ndefinitions* (i.e. section definitions are represented by Python classes),\nlower case `snake_case` identifier for variables that hold *sections*, and for\n*properties* (i.e. fields in a Python class) we typically use lower\ncase `snake_case` identifier. Subsections are often prefixed with ``section_``\nto clearly separate subsections from quantities.\n\nGenerally, you do not have to set this attribute manually, it will be derived\nfrom Python identifiers automatically.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "The description can be an arbitrary human-readable text that explains\nwhat a definition is about. For section definitions you do not have to set\nthis manually as it will be derived from the classes doc string. Quantity and\nsubsection descriptions can also be taken from the containing section class'\ndoc-string ``Attributes:`` section.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "links", + "description": "Each definition can be accompanied by a list of URLs. These should point\nto resources that further explain the definition.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "categories", + "description": "All metainfo definitions can be put into one or more `categories`.\nCategories allow to organize the definitions themselves. It is different from\nsections, which organize the data (e.g. quantity values) and not the definitions\nof data (e.g. quantities definitions). See :ref:`metainfo-categories` for more\ndetails.", + "type": { + "type_kind": "reference", + "type_data": "/packages/19/section_definitions/5" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "deprecated", + "description": "If set this definition is marked deprecated. The value should be a\nstring that describes how to replace the deprecated definition.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "aliases", + "description": "A list of alternative names. For quantities and subsections these\ncan be used to access the respective property with a different name from\nits containing section.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "variable", + "description": "A boolean that indicates this property as variable parts in its name.\nIf this is set to true, all capital letters in the name can be\nreplaced with arbitrary strings. However, variable names work similar to\naliases and can be considered on-demand aliases. Other aliases and the\ndefined name will work as well. Thus, variable names are only resolved\nat runtime by the Python interface and are not directly serialized.\nHowever, the variable name is set in a meta attribute `m_source_name`\nautomatically for properties (but not attributes).\nVariable names are only implemented for Quantity, SubSection,\nAttribute.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "more", + "description": "A dictionary that contains additional definition properties that are not\npart of the metainfo. Those can be passed as additional kwargs to definition\nconstructors. The values must be JSON serializable.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "default": {} + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "all_attributes", + "description": "A virtual convenient property that provides all attributes as a dictionary\nfrom attribute name to attribute. This includes meta attributes (starting with m_)\nthat are defined for all properties of the same kind (sub_section or quantity).", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "attributes", + "description": "The attributes that can further qualify property values.", + "sub_section": "/packages/19/section_definitions/1", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Attribute", + "description": "Attributes can be used to qualify all properties (subsections and quantities) with simple scalar values.", + "base_sections": [ + "/packages/19/section_definitions/0" + ], + "constraints": [ + "is_primitive" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "The type of the attribute. Can be any primitive type, including\nnumpy types, Datetime and enums.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._QuantityType" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shape", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Dimension" + }, + "shape": [ + "0..*" + ], + "default": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Property", + "description": "A common base-class for section properties: subsections and quantities.", + "base_sections": [ + "/packages/19/section_definitions/0" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Section", + "description": "Instances of the class :class:`Section` are created by writing Python classes that extend :class:`MSection` like this:\n\n.. code-block:: python\n\n class SectionName(BaseSection):\n ''' Section description '''\n m_def = Section(**section_attributes)\n\n quantity_name = Quantity(**quantity_attributes)\n sub_section_name = SubSection(**sub_section_attributes)\n\nWe call such classes *section classes*. They are not the *section definition*, but just\nrepresentation of it in Python syntax. The *section definition* (in instance of :class:`Section`)\nwill be created for each of these classes and stored in the ``m_def`` property. See\n:ref:`metainfo-reflection` for more details.\n\nMost of the attributes for a :class:`Section` instance will be set automatically from\nthe section class:", + "base_sections": [ + "/packages/19/section_definitions/0" + ], + "constraints": [ + "resolved_base_sections", + "unique_names" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "base_sections", + "type": { + "type_kind": "reference", + "type_data": "/packages/19/section_definitions/3" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "extending_sections", + "type": { + "type_kind": "reference", + "type_data": "/packages/19/section_definitions/3" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "extends_base_section", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "inheriting_sections", + "type": { + "type_kind": "reference", + "type_data": "/packages/19/section_definitions/3" + }, + "shape": [ + "0..*" + ], + "default": [], + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "constraints", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "event_handlers", + "description": "Event handler are functions that get called when the section data is changed.\nThere are two types of events: ``set`` and ``add_sub_section``. The handler type\nis determined by the handler (i.e. function) name: ``on_set`` and ``on_add_sub_section``.\nThe handler arguments correspond to :py:meth:`MSection.m_set` (section, quantity_def, value) and\n:py:meth:`MSection.m_add_sub_section` (section, sub_section_def, sub_section).\nHandler are called after the respective action was performed. This quantity is\nautomatically populated with handler from the section classes methods. If there\nis a method ``on_set`` or ``on_add_sub_section``, it will be added as handler.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Callable" + }, + "shape": [ + "0..*" + ], + "default": [], + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "inherited_sections", + "description": "A helper attribute that gives direct and indirect base sections and extending\nsections including this section. These are all sections that this sections\ngets its properties from.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "all_base_sections", + "description": "A helper attribute that gives direct and indirect base sections.", + "type": { + "type_kind": "Any" + }, + "cached": false, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "all_inheriting_sections", + "description": null, + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "all_properties", + "description": "A helper attribute that gives all properties (subsection and quantity) definitions\nincluding inherited properties and properties from extending sections as a\ndictionary with names and definitions.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "all_quantities", + "description": "A helper attribute that gives all quantity definition including inherited ones\nand ones from extending sections as a dictionary that maps names (strings)\nto :class:`Quantity`.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "all_sub_sections", + "description": "A helper attribute that gives all subsection definition including inherited ones\nand ones from extending sections as a dictionary that maps names (strings)\nto :class:`SubSection`.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "all_sub_sections_by_section", + "description": "A helper attribute that gives all subsection definition including inherited ones\nand ones from extending sections as a dictionary that maps section classes\n(i.e. Python class objects) to lists of :class:`SubSection`.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "all_aliases", + "description": "A helper attribute that gives all aliases for all properties including\ninherited properties and properties form extending sections as a\ndictionary with aliases and the definitions.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "all_inner_section_definitions", + "description": "A helper attribute that gives all inner_section_definitions including\ntheir aliases by name.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "has_variable_names", + "description": null, + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "path", + "description": "Shortest path from a root section to this section. This is not the path\nin the metainfo schema (`m_path`) but an archive path in potential data.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "quantities", + "sub_section": "/packages/19/section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "sub_sections", + "sub_section": "/packages/19/section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "inner_section_definitions", + "aliases": [ + "inner_section_defs", + "section_defs", + "inner_sections", + "sections" + ], + "sub_section": "/packages/19/section_definitions/3", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "Package", + "description": "Packages organize metainfo definitions alongside Python modules Each Python module with metainfo Definition (explicitly or implicitly) has a member\n``m_package`` with an instance of this class. Definitions (categories, sections) in\nPython modules are automatically added to the module's :class:`Package`.\nPackages are not nested and rather have the fully qualified Python module name as\nname.\n\nThis allows to inspect all definitions in a Python module and automatically puts\nmodule name and docstring as :class:`Package` name and description.\n\nBesides the regular :class:`Definition` attributes, packages can have the following\nattributes:", + "base_sections": [ + "/packages/19/section_definitions/0" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "all_definitions", + "description": "A helper attribute that provides all section and category definitions\nby name and aliases.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "dependencies", + "description": "All packages which have definitions that definitions from this package need. Being\n'needed' includes categories, base sections, and referenced definitions.", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "section_definitions", + "description": "All `section definitions` in this package as :class:`Section`\nobjects.", + "aliases": [ + "section_defs", + "sections" + ], + "sub_section": "/packages/19/section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "category_definitions", + "description": "All `category definitions` in this package as :class:`Category`\nobjects.", + "aliases": [ + "category_defs" + ], + "sub_section": "/packages/19/section_definitions/5", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "Category", + "description": "Categories allow to organize metainfo definitions (not metainfo data like sections do) Each definition, including categories themselves, can belong to a set of categories.\nCategories therefore form a hierarchy of concepts that definitions can belong to, i.e.\nthey form a `is a` relationship.", + "base_sections": [ + "/packages/19/section_definitions/0" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "Quantity", + "description": "To define quantities, instantiate :class:`Quantity` as a class attribute values in a `section classes`. The name of a quantity is automatically taken from its `section class`\nattribute. You can provide all other attributes to the constructor with keyword arguments\n\nSee :ref:`metainfo-sections` to learn about `section classes`.\nIn Python terms, ``Quantity`` is a descriptor. Descriptors define how to get and\nset attributes in a Python object. This allows us to use sections like regular\nPython objects and quantity like regular Python attributes.\n\nEach quantity must define a basic data type and a shape. The values of a quantity must\nfulfil the given type. The default shape is a single value. Quantities can also have\nphysical units. Units are applied to all values.", + "base_sections": [ + "/packages/19/section_definitions/2" + ], + "constraints": [ + "annotations_are_valid", + "dimensions", + "has_type", + "higher_shapes_require_dtype" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._QuantityType" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "shape", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Dimension" + }, + "shape": [ + "0..*" + ], + "default": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "unit", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Unit" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "dimensionality", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "default", + "type": { + "type_kind": "Any" + }, + "default": null + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "derived", + "description": "A Python callable that takes the containing section as input and outputs the\nvalue for this quantity. This quantity cannot be set directly, its value\nis only derived by the given callable. The callable is executed when this\nquantity is get. Derived quantities are always virtual.", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Callable" + }, + "default": null, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "cached", + "description": "A bool indicating that derived values should be cached unless the underlying\nsection has changed.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "virtual", + "description": "A boolean that determines if this quantity is virtual. Virtual quantities can\nbe got/set like regular quantities, but their values are not (de-)serialized,\nhence never permanently stored.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "is_scalar", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "repeats", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "use_full_storage", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "flexible_unit", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "SubSection", + "description": "Like quantities, subsections are defined in a `section class` as attributes of this class. Unlike quantities, each subsection definition becomes a property of\nthe corresponding `section definition` (parent). A subsection definition references\nanother `section definition` as the subsection (child). As a consequence, parent\n`section instances` can contain child `section instances` as subsections.\n\nContrary to the old NOMAD metainfo, we distinguish between subsection the section\nand subsection the property. This allows to use on child `section definition` as\nsubsection of many parent `section definitions`.", + "base_sections": [ + "/packages/19/section_definitions/2" + ], + "constraints": [ + "has_sub_section" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "sub_section", + "description": "A :class:`Section` or Python class object for a `section class`. This\nwill be the child `section definition`. The defining section the child\n`section definition`.", + "aliases": [ + "section_definition", + "section_def", + "section" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/19/section_definitions/3" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "repeats", + "description": "A boolean that determines whether this subsection can appear multiple\ntimes in the parent section.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "Environment", + "description": "Environments allow to manage many metainfo packages and quickly access all definitions. Environments provide a name-table for large-sets of metainfo definitions that span\nmultiple packages. It provides various functions to resolve metainfo definitions by\ntheir names, legacy names, and qualified names.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "all_definitions_by_name", + "type": { + "type_kind": "Any" + }, + "cached": true, + "virtual": true + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "packages", + "description": "Packages in this environment.", + "sub_section": "/packages/19/section_definitions/4", + "repeats": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 20, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.data", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "ArchiveSection", + "description": "Base class for sections in a NOMAD archive. Provides a framework for custom section normalization via the `normalize` function." + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "EntryData", + "description": "An empty base section definition. This can be used to add new top-level sections to an entry.", + "base_sections": [ + "/packages/20/section_definitions/0" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Author", + "description": "A person that is author of data in NOMAD or references by NOMAD.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "viewers.name", + "viewers.name.text", + "viewers.name__suggestion" + ] + }, + "name": "name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "first_name", + "description": "The users first name (including all other given names)", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Capitalized" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "last_name", + "description": "The users last name", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Capitalized" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "email", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "affiliation", + "description": "The name of the company and institutes the user identifies with", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "affiliation_address", + "description": "The address of the given affiliation", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "m_annotations": { + "pydantic": [ + "PydanticModel" + ] + }, + "name": "User", + "description": "A NOMAD user. Typically a NOMAD user has a NOMAD account. The user related data is managed by\nNOMAD keycloak user-management system. Users are used to denote authors,\nreviewers, and owners of datasets.", + "base_sections": [ + "/packages/20/section_definitions/2" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "viewers.user_id" + ] + }, + "name": "user_id", + "description": "The unique, persistent keycloak UUID", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "username", + "description": "The unique, persistent, user chosen username", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "created", + "description": "The time the account was created", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._Datetime" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "repo_user_id", + "description": "Optional, legacy user id from the old NOMAD CoE repository.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "is_admin", + "description": "Bool that indicated, iff the user the use admin user", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "is_oasis_admin", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "default": false + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 21, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.common", + "category_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 0, + "m_parent_sub_section": "category_definitions", + "name": "FastAccess", + "description": "Used to mark archive objects that need to be stored in a fast 2nd-tier storage medium,\nbecause they are frequently accessed via archive API.\n\nIf applied to a sub_section, the section will be added to the fast storage. Currently\nthis only works for *root* sections that are sub_sections of `EntryArchive`.\n\nIf applied to a reference types quantity, the referenced section will also be added to\nthe fast storage, regardless if the referenced section has the category or not." + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 22, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.metainfo.workflow", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "Interface", + "description": "Section containing results of an interface (stacking fault, gamma surface, etc.) workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy_extrinsic_stacking_fault", + "description": "Value of the relaxed extrinsic stacking fault energy per unit area.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "energy_intrinsic_stacking_fault", + "description": "Value of the relaxed intrinsic stacking fault energy per unit area.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "dimensionality", + "description": "Dimensionality of the property, i.e. 1 for stacking fault energy and 2 for gamma\nsurface.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "shift_direction", + "description": "shift direction of the two crystal parts to calculate the fault energy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "dimensionality" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_displacements", + "description": "Number of displacements in the shift to calculate the fault energy.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "displacement_fraction", + "description": "Relative displacements of the two crystal parts along the direction indicated by\nshift_direction.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "dimensionality", + "n_displacements" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "energy_fault_plane", + "description": "Value of the relaxed excess energy per unit area for each displacement.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_displacements" + ], + "unit": "joule / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "gamma_surface", + "description": "Value of the gamma surface, i.e. the excess energy per unit area calculated for\neach displacement.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_displacements", + "n_displacements" + ], + "unit": "joule / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "slip_fraction", + "description": "Relative displacement between two crystal parts where the energy is maximum.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "energy_unstable_stacking_fault", + "description": "Value of the relaxed unstable stacking fault energy per unit area.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule / meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "energy_unstable_twinning_fault", + "description": "Value of the relaxed unstable twinning energy per unit area.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule / meter ** 2" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Raman", + "description": "Section containing results of a Raman workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_modes", + "description": "Number of evaluated vibrational modes.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "Number of atoms in the simulation cell.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "frequencies", + "description": "Calculated value of the Raman frequencies.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_modes" + ], + "unit": "1 / meter" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "MagneticOrdering", + "description": "Section containing results of a magnetic ordering workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_structures", + "description": "Number of magnetic structures evaluated.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "Number of atoms in the simulation cell.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "labels", + "description": "Labels corresponding to each magnetic structure.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_structures" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "Calculated value of the energies corresponding to each magnetic structure.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_structures" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "magnetic_moments", + "description": "Resulting atomic magnetic moments corresponding to each magnetic structure.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_structures", + "n_atoms" + ], + "unit": "bohr_magneton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "magnetic_deformations", + "description": "Average atomic displacements after relaxation with respect to the non-magnetic\ncase for each magnetic structure.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_structures" + ], + "unit": "meter" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Adsorption", + "description": "Section containing results of a surface adsorption workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_sites", + "description": "Number of sites for which the adsorption energy is evaluated.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "slab_miller_index", + "description": "Miller index of the slab.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "slab", + "description": "Chemical formula of the slab.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "adsorbate", + "description": "Chemical formula of the adsorbate molecule.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "adsorption_sites", + "description": "Coordinates of the adsorption sites corresponding to a minimum energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_sites" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "adsorption_energies", + "description": "Calculated value of the adsorption energy corresponding to each site.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_sites" + ], + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "ConvexHull", + "description": "Section containing results of a convex hull workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_elements", + "description": "Number of elements for which the thermal stability is evaluated. This represents\nthe dimensionality of the convex hull.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_points", + "description": "Number of points for which the energies are evaluated.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "compositions", + "description": "Normalized composition of the elements corresponding to each point for which the\nenergies are evaluated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_points", + "n_elements" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "references", + "description": "Specifies the reference structure for each element.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_elements" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "energy_of_formation", + "description": "Values of the heat of formation corresponding to each point.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_points" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "energy_hulll", + "description": "Values of the energy above the convex hull corresponding to each point.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_points" + ], + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "NudgedElasticBand", + "description": "Section containing results of a nudged-elastic band workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "method", + "description": "Specifies the method used in calculating the minumum energy path. Can be one of\nstandard, improved_tangeant, full_spring_force, spline_interpolation, string.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "climbing_image", + "description": "Indicates if climbing image is used.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "solid_state", + "description": "Indicates if solid state nudged-elastic band calculation is performed.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "optimizer", + "description": "Specifies the method used in energy minimization.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_images", + "description": "Number of images used in the calculation.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "spring_constants", + "description": "Spring constants for each spring.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_images" + ], + "unit": "newton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "energy_barrier", + "description": "Maximum value of the calculated energy barrier.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "force_maximum", + "description": "Maximum force along the minimum energy path.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "newton" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "EOSFit", + "description": "Section containing results of an equation of state fit.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "function_name", + "description": "Specifies the function used to perform the fitting of the volume-energy data. Value\ncan be one of birch_euler, birch_lagrange, birch_murnaghan, mie_gruneisen,\nmurnaghan, pack_evans_james, poirier_tarantola, tait, vinet.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "fitted_energies", + "description": "Array of the fitted energies corresponding to each volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_points" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "bulk_modulus", + "description": "Calculated value of the bulk modulus by fitting the volume-energy data.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "bulk_modulus_derivative", + "description": "Calculated value of the pressure derivative of the bulk modulus.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "equilibrium_volume", + "description": "Calculated value of the equilibrium volume by fitting the volume-energy data.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "equilibrium_energy", + "description": "Calculated value of the equilibrium energy by fitting the volume-energy data.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "rms_error", + "description": "Root-mean squared value of the error in the fitting.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "EquationOfState", + "description": "Section containing results of an equation of state workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_points", + "description": "Number of volume-energy pairs in data.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "volumes", + "description": "Array of volumes per atom for which the energies are evaluated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_points" + ], + "unit": "meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "Array of energies corresponding to each volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_points" + ], + "unit": "joule" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "eos_fit", + "sub_section": "/packages/22/section_definitions/6", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "DebyeModel", + "description": "Section containing results of an debye-model workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_temperatures", + "description": "Number of temperature evaluations.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "thermal_conductivity", + "description": "Calculated value of the thermal conductity.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_temperatures" + ], + "unit": "kelvin * watt / meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "debye_temperature", + "description": "Calculated value of the Debye temperature.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_temperatures" + ], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "gruneisen_parameter", + "description": "Calculated value of the Gruneisen parameter.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_temperatures" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "thermal_expansion", + "description": "Calculated value of the thermal expansion coefficient.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_temperatures" + ], + "unit": "1 / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "bulk_modulus_static", + "description": "Calculated value of the static bulk modulus.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_temperatures" + ], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "bulk_modulus_isothermal", + "description": "Calculated value of the static bulk modulus.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_temperatures" + ], + "unit": "pascal" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "GeometryOptimization", + "description": "Section containing the results of a geometry_optimization workflow.", + "extending_sections": [ + "/packages/26/section_definitions/3", + "/packages/27/section_definitions/52", + "/packages/29/section_definitions/24", + "/packages/31/section_definitions/23", + "/packages/43/section_definitions/61", + "/packages/47/section_definitions/5", + "/packages/14/section_definitions/11", + "/packages/54/section_definitions/6", + "/packages/55/section_definitions/4" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "The type of geometry optimization, which denotes what is being optimized.\n\nAllowed values are:\n\n| Type | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `\"static\"` | no optimization |\n\n| `\"atomic\"` | the atomic coordinates alone are updated |\n\n| `\"cell_volume\"` | `\"atomic\"` + cell lattice paramters are updated isotropically |\n\n| `\"cell_shape\"` | `\"cell_volume\"` but without the isotropic constraint: all cell parameters are updated |", + "type": { + "type_kind": "Enum", + "type_data": [ + "static", + "atomic", + "cell_shape", + "cell_volume" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "method", + "description": "The method used for geometry optimization. Some known possible values are:\n`\"steepest_descent\"`, `\"conjugant_gradient\"`, `\"low_memory_broyden_fletcher_goldfarb_shanno\"`.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.convergence_tolerance_energy_difference" + ] + }, + "name": "convergence_tolerance_energy_difference", + "description": "The input energy difference tolerance criterion.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.convergence_tolerance_force_maximum" + ] + }, + "name": "convergence_tolerance_force_maximum", + "description": "The input maximum net force tolerance criterion.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "newton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "convergence_tolerance_displacement_maximum", + "description": "The input maximum displacement tolerance criterion.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.final_energy_difference" + ] + }, + "name": "final_energy_difference", + "description": "The difference in the energy_total between the last two steps during\noptimization.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.final_force_maximum" + ] + }, + "name": "final_force_maximum", + "description": "The maximum net force in the last optimization step.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "newton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.geometry_optimization.final_displacement_maximum" + ] + }, + "name": "final_displacement_maximum", + "description": "The maximum displacement in the last optimization step with respect to previous.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "optimization_steps_maximum", + "description": "Maximum number of optimization steps.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "optimization_steps", + "description": "Number of saved optimization steps.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "energies", + "description": "List of energy_total values gathered from the single configuration\ncalculations that are a part of the optimization trajectory.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "optimization_steps" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "steps", + "description": "The step index corresponding to each saved configuration.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "is_converged_geometry", + "description": "Indicates if the geometry convergence criteria were fulfilled.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "Phonon", + "description": "Section containing the results of a phonon workflow.", + "extending_sections": [ + "/packages/64/section_definitions/3" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "force_calculator", + "description": "Name of the program used to calculate the forces.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "mesh_density", + "description": "Density of the k-mesh for sampling.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "1 / meter ** 3" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_imaginary_frequencies", + "description": "Number of modes with imaginary frequencies.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "random_displacements", + "description": "Identifies if displacements are made randomly.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "with_non_analytic_correction", + "description": "Identifies if non-analytical term corrections are applied to dynamical matrix.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "with_grueneisen_parameters", + "description": "Identifies if Grueneisen parameters are calculated.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "n_bands", + "description": "Number of phonon bands.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "n_qpoints", + "description": "Number of q points for which phonon properties are evaluated.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "qpoints", + "description": "Value of the qpoints.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_qpoints", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "group_velocity", + "description": "Calculated value of the group velocity at each qpoint.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_qpoints", + "n_bands", + 3 + ], + "unit": "meter / second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "n_displacements", + "description": "Number of independent displacements.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "n_atoms", + "description": "Number of atoms in the simulation cell.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "displacements", + "description": "Value of the displacements applied to each atom in the simulation cell.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_displacements", + "n_atoms", + 3 + ], + "unit": "meter" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "StrainDiagrams", + "description": "Section containing the information regarding the elastic strains.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Kind of strain diagram. Possible values are: energy; cross-validation (cross-\nvalidation error); d2E (second derivative of the energy wrt the strain)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_eta", + "description": "Number of strain values used in the strain diagram", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_deformations", + "description": "Number of deformations.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of the energy(units:J)/d2E(units:Pa)/cross-validation (depending on the\nvalue of strain_diagram_type)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_deformations", + "n_eta" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "eta", + "description": "eta values used the strain diagrams", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_deformations", + "n_eta" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "stress_voigt_component", + "description": "Voigt component corresponding to the strain diagram", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "polynomial_fit_order", + "description": "Order of the polynomial fit", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "Elastic", + "description": "Section containing the results of an elastic workflow.", + "extending_sections": [ + "/packages/52/section_definitions/10", + "/packages/64/section_definitions/2" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "energy_stress_calculator", + "description": "Name of program used to calculate energy or stress.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "calculation_method", + "description": "Method used to calculate elastic constants, can either be energy or stress.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "elastic_constants_order", + "description": "Order of the calculated elastic constants.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "n_deformations", + "description": "Number of deformed structures used to calculate the elastic constants. This is\ndetermined by the symmetry of the crystal.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "deformation_types", + "description": "deformation types", + "type": { + "type_kind": "numpy", + "type_data": "str_" + }, + "shape": [ + "n_deformations", + 6 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "n_strains", + "description": "number of equally spaced strains applied to each deformed structure, which are\ngenerated between the maximum negative strain and the maximum positive one.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "is_mechanically_stable", + "description": "Indicates if structure is mechanically stable from the calculated values of the\nelastic constants.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "fitting_error_maximum", + "description": "Maximum error in polynomial fit.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "strain_maximum", + "description": "Maximum strain applied to crystal.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "elastic_constants_notation_matrix_second_order", + "description": "Symmetry of the second-order elastic constant matrix in Voigt notation", + "type": { + "type_kind": "numpy", + "type_data": "str_" + }, + "shape": [ + 6, + 6 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "elastic_constants_matrix_second_order", + "description": "2nd order elastic constant (stiffness) matrix in pascals", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6, + 6 + ], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "elastic_constants_matrix_third_order", + "description": "3rd order elastic constant (stiffness) matrix in pascals", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6, + 6, + 6 + ], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "compliance_matrix_second_order", + "description": "Elastic compliance matrix in 1/GPa", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6, + 6 + ], + "unit": "1 / pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "elastic_constants_gradient_matrix_second_order", + "description": "gradient of the 2nd order elastic constant (stiffness) matrix in newton", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 18, + 18 + ], + "unit": "newton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "bulk_modulus_voigt", + "description": "Voigt bulk modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "shear_modulus_voigt", + "description": "Voigt shear modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "bulk_modulus_reuss", + "description": "Reuss bulk modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "shear_modulus_reuss", + "description": "Reuss shear modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "bulk_modulus_hill", + "description": "Hill bulk modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "shear_modulus_hill", + "description": "Hill shear modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "young_modulus_voigt", + "description": "Voigt Young modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "poisson_ratio_voigt", + "description": "Voigt Poisson ratio", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "young_modulus_reuss", + "description": "Reuss Young modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "poisson_ratio_reuss", + "description": "Reuss Poisson ratio", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "young_modulus_hill", + "description": "Hill Young modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "poisson_ratio_hill", + "description": "Hill Poisson ratio", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "elastic_anisotropy", + "description": "Elastic anisotropy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "pugh_ratio_hill", + "description": "Pugh ratio defined as the ratio between the shear modulus and bulk modulus", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "debye_temperature", + "description": "Debye temperature", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "speed_sound_transverse", + "description": "Speed of sound along the transverse direction", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter / second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "speed_sound_longitudinal", + "description": "Speed of sound along the longitudinal direction", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter / second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "speed_sound_average", + "description": "Average speed of sound", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter / second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "eigenvalues_elastic", + "description": "Eigenvalues of the stiffness matrix", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ], + "unit": "pascal" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "strain_diagrams", + "sub_section": "/packages/22/section_definitions/11", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "Decomposition", + "description": "Section containing information about the system to which an unstable compound will decompose to.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "fraction", + "description": "Amount of the resulting system.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "system_ref", + "description": "Reference to the resulting system.", + "type": { + "type_kind": "reference", + "type_data": "/packages/1/section_definitions/6" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "formula", + "description": "Chemical formula of the resulting system.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "Stability", + "description": "Section containing information regarding the stability of the system.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_references", + "description": "Number of reference systems.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "systems_ref", + "description": "References to the reference systems.", + "type": { + "type_kind": "reference", + "type_data": "/packages/1/section_definitions/6" + }, + "shape": [ + "n_references" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "formation_energy", + "description": "Calculated value of the formation energy of the compound.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "delta_formation_energy", + "description": "Energy with respect to the convex hull.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "is_stable", + "description": "Indicates if a compound is stable.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "decomposition", + "sub_section": "/packages/22/section_definitions/13", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "Thermodynamics", + "description": "Section containing the results of a thermodynamics workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "n_values", + "description": "Number of thermodynamics property evaluations.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "temperature", + "description": "Specifies the temperatures at which properties such as the Helmholtz free energy\nare calculated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "pressure", + "description": "Array containing the values of the pressure (one third of the trace of the stress\ntensor) corresponding to each property evaluation.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "helmholtz_free_energy", + "description": "Helmholtz free energy per unit cell at constant volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "heat_capacity_c_p", + "description": "Heat capacity per cell unit at constant pressure.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "heat_capacity_c_v", + "description": "Heat capacity per cell unit at constant volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "heat_capacity_c_v_specific", + "description": "Specific heat capacity at constant volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule / kelvin / kilogram", + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "vibrational_free_energy_at_constant_volume", + "description": "Holds the vibrational free energy per cell unit at constant volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "vibrational_free_energy_at_constant_volume_specific", + "description": "Stores the specific vibrational free energy at constant volume.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule / kilogram", + "cached": true, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "vibrational_free_energy", + "description": "Calculated value of the vibrational free energy, F_vib.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "vibrational_internal_energy", + "description": "Calculated value of the vibrational internal energy, U_vib.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "vibrational_entropy", + "description": "Calculated value of the vibrational entropy, S.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "gibbs_free_energy", + "description": "Calculated value of the Gibbs free energy, G.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "entropy", + "description": "Calculated value of the entropy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule / kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "internal_energy", + "description": "Calculated value of the internal energy, U.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_values" + ], + "unit": "joule" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "stability", + "sub_section": "/packages/22/section_definitions/14", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "ThermostatParameters", + "description": "Section containing the parameters pertaining to the thermostat for a molecular dynamics run.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "thermostat_type", + "description": "The name of the thermostat used for temperature control. If skipped or an empty string is used, it\nmeans no thermostat was applied.\n\nAllowed values are:\n\n| Thermostat Name | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `\"\"` | No thermostat |\n\n| `\"andersen\"` | H.C. Andersen, [J. Chem. Phys.\n**72**, 2384 (1980)](https://doi.org/10.1063/1.439486) |\n\n| `\"berendsen\"` | H. J. C. Berendsen, J. P. M. Postma,\nW. F. van Gunsteren, A. DiNola, and J. R. Haak, [J. Chem. Phys.\n**81**, 3684 (1984)](https://doi.org/10.1063/1.448118) |\n\n| `\"brownian\"` | Brownian Dynamics |\n\n| `\"langevin_goga\"` | N. Goga, A. J. Rzepiela, A. H. de Vries,\nS. J. Marrink, and H. J. C. Berendsen, [J. Chem. Theory Comput. **8**, 3637 (2012)]\n(https://doi.org/10.1021/ct3000876) |\n\n| `\"langevin_schneider\"` | T. Schneider and E. Stoll,\n[Phys. Rev. B **17**, 1302](https://doi.org/10.1103/PhysRevB.17.1302) |\n\n| `\"nose_hoover\"` | S. Nos\u00e9, [Mol. Phys. **52**, 255 (1984)]\n(https://doi.org/10.1080/00268978400101201); W.G. Hoover, [Phys. Rev. A\n**31**, 1695 (1985) |\n\n| `\"velocity_rescaling\"` | G. Bussi, D. Donadio, and M. Parrinello,\n[J. Chem. Phys. **126**, 014101 (2007)](https://doi.org/10.1063/1.2408420) |\n\n| `\"velocity_rescaling_langevin\"` | G. Bussi and M. Parrinello,\n[Phys. Rev. E **75**, 056707 (2007)](https://doi.org/10.1103/PhysRevE.75.056707) |", + "type": { + "type_kind": "Enum", + "type_data": [ + "andersen", + "berendsen", + "brownian", + "langevin_goga", + "langevin_schneider", + "nose_hoover", + "velocity_rescaling", + "velocity_rescaling_langevin" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "reference_temperature", + "description": "The target temperature for the simulation.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "coupling_constant", + "description": "The time constant for temperature coupling. Need to describe what this means for the various\nthermostat options...", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "name": "BarostatParameters", + "description": "Section containing the parameters pertaining to the barostat for a molecular dynamics run.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "barostat_type", + "description": "The name of the barostat used for temperature control. If skipped or an empty string is used, it\nmeans no barostat was applied.\n\nAllowed values are:\n\n| Barostat Name | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `\"\"` | No thermostat |\n\n| `\"berendsen\"` | H. J. C. Berendsen, J. P. M. Postma,\nW. F. van Gunsteren, A. DiNola, and J. R. Haak, [J. Chem. Phys.\n**81**, 3684 (1984)](https://doi.org/10.1063/1.448118) |\n\n| `\"martyna_tuckerman_tobias_klein\"` | G.J. Martyna, M.E. Tuckerman, D.J. Tobias, and M.L. Klein,\n[Mol. Phys. **87**, 1117 (1996)](https://doi.org/10.1080/00268979600100761);\nM.E. Tuckerman, J. Alejandre, R. L\u00f3pez-Rend\u00f3n, A.L. Jochim, and G.J. Martyna,\n[J. Phys. A. **59**, 5629 (2006)](https://doi.org/10.1088/0305-4470/39/19/S18)|\n\n| `\"nose_hoover\"` | S. Nos\u00e9, [Mol. Phys. **52**, 255 (1984)]\n(https://doi.org/10.1080/00268978400101201); W.G. Hoover, [Phys. Rev. A\n**31**, 1695 (1985) |\n\n| `\"parrinello_rahman\"` | M. Parrinello and A. Rahman,\n[J. Appl. Phys. **52**, 7182 (1981)](https://doi.org/10.1063/1.328693);\nS. Nos\u00e9 and M.L. Klein, [Mol. Phys. **50**, 1055 (1983) |\n\n| `\"stochastic_cell_rescaling\"` | M. Bernetti and G. Bussi,\n[J. Chem. Phys. **153**, 114107 (2020)](https://doi.org/10.1063/1.2408420) |", + "type": { + "type_kind": "Enum", + "type_data": [ + "berendsen", + "martyna_tuckerman_tobias_klein", + "nose_hoover", + "parrinello_rahman", + "stochastic_cell_rescaling" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "coupling_type", + "description": "Describes the symmetry of pressure coupling. Specifics can be inferred from the `coupling constant`\n\n| Type | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `isotropic` | Identical coupling in all directions. |\n\n| `semi_isotropic` | Identical coupling in 2 directions. |\n\n| `anisotropic` | General case. |", + "type": { + "type_kind": "Enum", + "type_data": [ + "isotropic", + "semi_isotropic", + "anisotropic" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "reference_pressure", + "description": "The target pressure for the simulation, stored in a 3x3 matrix, indicating the values for individual directions\nalong the diagonal, and coupling between directions on the off-diagonal.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "coupling_constant", + "description": "The time constants for pressure coupling, stored in a 3x3 matrix, indicating the values for individual directions\nalong the diagonal, and coupling between directions on the off-diagonal. 0 values along the off-diagonal\nindicate no-coupling between these directions.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "compressibility", + "description": "An estimate of the system's compressibility, used for box rescaling, stored in a 3x3 matrix indicating the values for individual directions\nalong the diagonal, and coupling between directions on the off-diagonal. If None, it may indicate that these values\nare incorporated into the coupling_constant, or simply that the software used uses a fixed value that is not available in\nthe input/output files.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "1 / pascal" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "section_definitions", + "name": "IntegrationParameters", + "description": "Section containing the parameters for the molecular dynamics integrator.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "integrator_type", + "description": "Name of the integrator.\n\nAllowed values are:\n\n| Integrator Name | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `\"langevin_goga\"` | N. Goga, A. J. Rzepiela, A. H. de Vries,\nS. J. Marrink, and H. J. C. Berendsen, [J. Chem. Theory Comput. **8**, 3637 (2012)]\n(https://doi.org/10.1021/ct3000876) |\n\n| `\"langevin_schneider\"` | T. Schneider and E. Stoll,\n[Phys. Rev. B **17**, 1302](https://doi.org/10.1103/PhysRevB.17.1302) |\n\n| `\"leap_frog\"` | R.W. Hockney, S.P. Goel, and J. Eastwood,\n[J. Comp. Phys. **14**, 148 (1974)](https://doi.org/10.1016/0021-9991(74)90010-2) |\n\n| `\"velocity_verlet\"` | W.C. Swope, H.C. Andersen, P.H. Berens, and K.R. Wilson,\n[J. Chem. Phys. **76**, 637 (1982)](https://doi.org/10.1063/1.442716) |\n\n| `\"rRESPA_multitimescale\"` | M. Tuckerman, B. J. Berne, and G. J. Martyna\n[J. Chem. Phys. **97**, 1990 (1992)](https://doi.org/10.1063/1.463137) |", + "type": { + "type_kind": "Enum", + "type_data": [ + "brownian", + "conjugant_gradient", + "langevin_goga", + "langevin_schneider", + "leap_frog", + "rRESPA_multitimescale", + "velocity_verlet" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.thermodynamic.trajectory.methodology.molecular_dynamics.time_step" + ] + }, + "name": "integration_timestep", + "description": "The timestep at which the numerical integration is performed.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "n_steps", + "description": "Number of timesteps performed.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "coordinate_save_frequency", + "description": "The number of timesteps between saving the coordinates.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "velocity_save_frequency", + "description": "The number of timesteps between saving the velocities.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "force_save_frequency", + "description": "The number of timesteps between saving the forces.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "thermodynamics_save_frequency", + "description": "The number of timesteps between saving the thermodynamic quantities.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "thermostat_parameters", + "sub_section": "/packages/22/section_definitions/16", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "barostat_parameters", + "sub_section": "/packages/22/section_definitions/17", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "section_definitions", + "name": "MolecularDynamicsResults", + "description": "Section containing the parameters for sampling via molecular dynamics using a force field model.", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "radial_distribution_functions", + "sub_section": "/packages/22/section_definitions/26", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "radius_of_gyration", + "sub_section": "/packages/22/section_definitions/29", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "mean_squared_displacements", + "sub_section": "/packages/22/section_definitions/34", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "section_definitions", + "name": "MolecularDynamics", + "description": "Section containing results of molecular dynamics workflow.", + "extending_sections": [ + "/packages/27/section_definitions/51", + "/packages/31/section_definitions/24", + "/packages/40/section_definitions/10", + "/packages/43/section_definitions/62", + "/packages/51/section_definitions/5", + "/packages/52/section_definitions/11", + "/packages/53/section_definitions/1", + "/packages/54/section_definitions/5", + "/packages/55/section_definitions/5" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.thermodynamic.trajectory.methodology.molecular_dynamics.ensemble_type" + ] + }, + "name": "thermodynamic_ensemble", + "description": "The type of thermodynamic ensemble that was simulated.\n\nAllowed values are:\n\n| Thermodynamic Ensemble | Description |\n\n| ---------------------- | ----------------------------------------- |\n\n| `\"NVE\"` | Constant number of particles, volume, and energy |\n\n| `\"NVT\"` | Constant number of particles, volume, and temperature |\n\n| `\"NPT\"` | Constant number of particles, pressure, and temperature |\n\n| `\"NPH\"` | Constant number of particles, pressure, and enthalpy |", + "type": { + "type_kind": "Enum", + "type_data": [ + "NVE", + "NVT", + "NPT", + "NPH" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "finished_normally", + "description": "Indicates if calculation terminated normally.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "with_trajectory", + "description": "Indicates if calculation includes trajectory data.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "with_thermodynamics", + "description": "Indicates if calculation contains thermodynamic data.", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "integration_parameters", + "sub_section": "/packages/22/section_definitions/18", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "results", + "sub_section": "/packages/22/section_definitions/19", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "section_definitions", + "name": "TrajectoryProperty", + "description": "Generic section containing information about a calculation of any observable defined and stored at each individual frame of a trajectory.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "type", + "description": "Describes if the observable is calculated at the molecular or atomic level.", + "type": { + "type_kind": "Enum", + "type_data": [ + "molecular", + "atomic" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "error_type", + "description": "Describes the type of error reported for this observable.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "section_definitions", + "name": "TrajectoryPropertyValues", + "description": "Generic section containing information regarding the values of a trajectory property.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "label", + "description": "Describes the atoms or molecule types involved in determining the property.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_frames", + "description": "Number of frames for which the observable is stored.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "frames", + "description": "Frames for which the observable is stored.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "n_frames" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "times", + "description": "Times for which the observable is stored.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_frames" + ], + "unit": "second" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "section_definitions", + "name": "EnsemblePropertyValues", + "description": "Generic section containing information regarding the values of an ensemble property.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.structural.radial_distribution_function.label", + "results.properties.structural.radial_distribution_function.label__suggestion" + ] + }, + "name": "label", + "description": "Describes the atoms or molecule types involved in determining the property.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_bins", + "description": "Number of bins.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "frame_start", + "description": "Trajectory frame number where the ensemble averaging starts.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "frame_end", + "description": "Trajectory frame number where the ensemble averaging ends.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 24, + "m_parent_sub_section": "section_definitions", + "name": "EnsembleProperty", + "description": "Generic section containing information about a calculation of any static observable from a trajectory (i.e., from an ensemble average).", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.structural.radial_distribution_function.type", + "results.properties.structural.radial_distribution_function.type__suggestion" + ] + }, + "name": "type", + "description": "Describes if the observable is calculated at the molecular or atomic level.", + "type": { + "type_kind": "Enum", + "type_data": [ + "molecular", + "atomic" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_smooth", + "description": "Number of bins over which the running average was computed for\nthe observable `values'.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "error_type", + "description": "Describes the type of error reported for this observable.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "n_variables", + "description": "Number of variables along which the property is determined.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "variables_name", + "description": "Name/description of the independent variables along which the observable is defined.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "n_variables" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 25, + "m_parent_sub_section": "section_definitions", + "name": "RadialDistributionFunctionValues", + "description": "Section containing information regarding the values of radial distribution functions (rdfs).", + "base_sections": [ + "/packages/22/section_definitions/23" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "bins", + "description": "Distances along which the rdf was calculated.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_bins" + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of the property.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_bins" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 26, + "m_parent_sub_section": "section_definitions", + "name": "RadialDistributionFunction", + "description": "Section containing information about the calculation of radial distribution functions (rdfs).", + "base_sections": [ + "/packages/22/section_definitions/24" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "radial_distribution_function_values", + "sub_section": "/packages/22/section_definitions/25", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 27, + "m_parent_sub_section": "section_definitions", + "name": "RadiusOfGyrationHistogram", + "description": "Section containing the distribution of the Radius of Gyration over some trajectory.", + "base_sections": [ + "/packages/22/section_definitions/23" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "bins", + "description": "Values of the radius of gyration.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_bins" + ], + "unit": "meter" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Histogram counts.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_bins" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 28, + "m_parent_sub_section": "section_definitions", + "name": "RadiusOfGyrationValues", + "description": "Section containing information regarding the values of radius of gyration (Rg).", + "base_sections": [ + "/packages/22/section_definitions/22" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "molecule_ref", + "description": "References to the atoms_group section containing the molecule for which Rg was calculated.", + "type": { + "type_kind": "reference", + "type_data": "/packages/1/section_definitions/0" + }, + "shape": [ + 1 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of the property.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_frames" + ], + "unit": "meter" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "radius_of_gyration_histogram", + "sub_section": "/packages/22/section_definitions/27", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 29, + "m_parent_sub_section": "section_definitions", + "name": "RadiusOfGyration", + "description": "Section containing information about the calculation of radius of gyration (Rg).", + "base_sections": [ + "/packages/22/section_definitions/21" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "radius_of_gyration_values", + "sub_section": "/packages/22/section_definitions/28", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 30, + "m_parent_sub_section": "section_definitions", + "name": "CorrelationFunctionValues", + "description": "Generic section containing information regarding the values of a correlation function.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.dynamical.mean_squared_displacement.label", + "results.properties.dynamical.mean_squared_displacement.label__suggestion" + ] + }, + "name": "label", + "description": "Describes the atoms or molecule types involved in determining the property.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_times", + "description": "Number of times windows for the calculation of the correlation function.", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 31, + "m_parent_sub_section": "section_definitions", + "name": "CorrelationFunction", + "description": "Generic section containing information about a calculation of any time correlation function from a trajectory.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.properties.dynamical.mean_squared_displacement.type", + "results.properties.dynamical.mean_squared_displacement.type__suggestion" + ] + }, + "name": "type", + "description": "Describes if the correlation function is calculated at the molecular or atomic level.", + "type": { + "type_kind": "Enum", + "type_data": [ + "molecular", + "atomic" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "direction", + "description": "Describes the direction in which the correlation function was calculated.", + "type": { + "type_kind": "Enum", + "type_data": [ + "x", + "y", + "z", + "xy", + "yz", + "xz", + "xyz" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "error_type", + "description": "Describes the type of error reported for this correlation function.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 32, + "m_parent_sub_section": "section_definitions", + "name": "DiffusionConstantValues", + "description": "Section containing information regarding the diffusion constants.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Values of the diffusion constants.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter ** 2 / second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "error_type", + "description": "Describes the type of error reported for this observable.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "errors", + "description": "Error associated with the determination of the diffusion constant.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 33, + "m_parent_sub_section": "section_definitions", + "name": "MeanSquaredDisplacementValues", + "description": "Section containing information regarding the values of a mean squared displacements (msds).", + "base_sections": [ + "/packages/22/section_definitions/30" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "times", + "description": "Time windows used for the calculation of the msds.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_times" + ], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "value", + "description": "Msd values.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_times" + ], + "unit": "meter ** 2" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "errors", + "description": "Error associated with the determination of the msds.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "*" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "diffusion_constant", + "sub_section": "/packages/22/section_definitions/32", + "repeats": false + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 34, + "m_parent_sub_section": "section_definitions", + "name": "MeanSquaredDisplacement", + "description": "Section containing information about a calculation of any mean squared displacements (msds).", + "base_sections": [ + "/packages/22/section_definitions/31" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "mean_squared_displacement_values", + "sub_section": "/packages/22/section_definitions/33", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 35, + "m_parent_sub_section": "section_definitions", + "name": "GW", + "description": "Section containing results of a GW workflow", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "dos_dft", + "description": "DFT density of states", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/17" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "dos_gw", + "description": "GW density of states", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/17" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "band_structure_dft", + "description": "DFT density of states", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/14" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "band_structure_gw", + "description": "DFT density of states", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/14" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 36, + "m_parent_sub_section": "section_definitions", + "name": "SinglePoint", + "description": "Section containing results of a single point workflow.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "method", + "description": "Calculation method used.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "n_scf_steps", + "description": "Number of self-consistent steps in the calculation", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "final_scf_energy_difference", + "description": "The difference in the energy between the last two scf steps.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "is_converged", + "description": "Indicates if the convergence criteria were fullfilled", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "with_density_of_states", + "description": "Indicates if the calculation contains density of states data", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "with_bandstructure", + "description": "Indicates if the calculation contains bandstructure data", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "with_eigenvalues", + "description": "Indicates if the calculation contains eigenvalue data", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "with_volumetric_data", + "description": "Indicates if the calculation contains volumetric data", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "with_excited_states", + "description": "Indicates if the calculation contains excited states data", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 37, + "m_parent_sub_section": "section_definitions", + "name": "Task", + "description": "Section defining a specific task in the workflow chain. It has an input and an output, both can either be a workflow or a calculation and their relation is noted in the\ndescription.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "input_workflow", + "description": "Reference to the input workflow.", + "type": { + "type_kind": "reference", + "type_data": "/packages/22/section_definitions/38" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "output_workflow", + "description": "Reference to the output workflow.", + "type": { + "type_kind": "reference", + "type_data": "/packages/22/section_definitions/38" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "input_calculation", + "description": "Reference to the input calculation.", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/34" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "output_calculation", + "description": "Reference to the output calculation.", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/34" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "description", + "description": "Descibes the relationship between the input and output workflows. For example, if\na single_point workflow uses the relaxed structure from a geometry_optimization as\nan input, the description may be \"relaxed structure from geometry_optimization\nused to calucalate single_point properties\"", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 38, + "m_parent_sub_section": "section_definitions", + "name": "Workflow", + "description": "Section containing the results of a workflow.", + "extending_sections": [ + "/packages/29/section_definitions/25", + "/packages/64/section_definitions/4" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "results.method.workflow_name", + "results.method.workflow_name__suggestion" + ] + }, + "name": "type", + "description": "The workflow type.", + "type": { + "type_kind": "Enum", + "type_data": [ + "GW", + "single_point", + "geometry_optimization", + "phonon", + "elastic", + "molecular_dynamics", + "debye_model", + "equation_of_state", + "nudged_elastic_band", + "convex_hull", + "adsorption", + "magnetic_ordering", + "raman", + "interface", + "thermodynamics" + ] + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "initial_structure", + "description": "Starting structure for geometry optimization.", + "type": { + "type_kind": "reference", + "type_data": "/packages/1/section_definitions/1" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "calculator", + "description": "Energy and force calculator.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "calculation_result_ref", + "description": "Reference to calculation result. In the case of geometry_optimization and\nmolecular dynamics, this corresponds to the final step in the simulation. For the\nrest of the workflow types, it refers to the original system.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/34" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "n_calculations", + "description": "Number of calculations in workflow", + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "calculations_ref", + "description": "List of references to each section single_configuration_calculation in the\nsimulation.", + "type": { + "type_kind": "reference", + "type_data": "/packages/2/section_definitions/34" + }, + "shape": [ + "n_calculations" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "run_ref", + "description": "Links the section workflow to the section run that contains the calculations.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/3/section_definitions/3" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "n_references", + "description": "Number of references to the current section workflow.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "workflows_ref", + "description": "Links the the current section to other workflow sections. Such a link is necessary\nfor example between an Debye model that uses a the poisson ratio calculated\nfrom an elastic workflow.", + "categories": [ + "/packages/21/category_definitions/0" + ], + "type": { + "type_kind": "reference", + "type_data": "/packages/22/section_definitions/38" + }, + "shape": [ + "n_references" + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "task", + "sub_section": "/packages/22/section_definitions/37", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "single_point", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/22/section_definitions/36", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "gw", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/22/section_definitions/35", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "geometry_optimization", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/22/section_definitions/9", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "phonon", + "categories": [ + "/packages/21/category_definitions/0" + ], + "sub_section": "/packages/22/section_definitions/10", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "elastic", + "sub_section": "/packages/22/section_definitions/12", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "molecular_dynamics", + "sub_section": "/packages/22/section_definitions/20", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "debye_model", + "sub_section": "/packages/22/section_definitions/8", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "equation_of_state", + "sub_section": "/packages/22/section_definitions/7", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "nudged_elastic_band", + "sub_section": "/packages/22/section_definitions/5", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "convex_hull", + "sub_section": "/packages/22/section_definitions/4", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "adsorption", + "sub_section": "/packages/22/section_definitions/3", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "magnetic_ordering", + "sub_section": "/packages/22/section_definitions/2", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "raman", + "sub_section": "/packages/22/section_definitions/1", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "interface", + "sub_section": "/packages/22/section_definitions/0", + "repeats": false + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "thermodynamics", + "sub_section": "/packages/22/section_definitions/15", + "repeats": false + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 23, + "m_parent_sub_section": "packages", + "name": "nomad.datamodel.optimade", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "Species", + "description": "Used to describe the species of the sites of this structure. Species can be pure chemical elements, or virtual-crystal atoms representing a statistical occupation of a\ngiven site by multiple chemical elements.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.13" + ], + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "optimade": [ + "Optimade" + ] + }, + "name": "name", + "description": "The name of the species; the name value MUST be unique in the species list.", + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "optimade": [ + "Optimade" + ] + }, + "name": "chemical_symbols", + "description": "A list of strings of all chemical elements composing this species.\n\nIt MUST be one of the following:\n\n- a valid chemical-element name, or\n- the special value \"X\" to represent a non-chemical element, or\n- the special value \"vacancy\" to represent that this site has a non-zero probability\n\nof having a vacancy (the respective probability is indicated in the concentration\nlist, see below).\n\nIf any one entry in the species list has a chemical_symbols list that is longer than 1\nelement, the correct flag MUST be set in the list structure_features (see\nstructure_features)", + "type": { + "type_kind": "Enum", + "type_data": [ + "X", + "H", + "He", + "Li", + "Be", + "B", + "C", + "N", + "O", + "F", + "Ne", + "Na", + "Mg", + "Al", + "Si", + "P", + "S", + "Cl", + "Ar", + "K", + "Ca", + "Sc", + "Ti", + "V", + "Cr", + "Mn", + "Fe", + "Co", + "Ni", + "Cu", + "Zn", + "Ga", + "Ge", + "As", + "Se", + "Br", + "Kr", + "Rb", + "Sr", + "Y", + "Zr", + "Nb", + "Mo", + "Tc", + "Ru", + "Rh", + "Pd", + "Ag", + "Cd", + "In", + "Sn", + "Sb", + "Te", + "I", + "Xe", + "Cs", + "Ba", + "La", + "Ce", + "Pr", + "Nd", + "Pm", + "Sm", + "Eu", + "Gd", + "Tb", + "Dy", + "Ho", + "Er", + "Tm", + "Yb", + "Lu", + "Hf", + "Ta", + "W", + "Re", + "Os", + "Ir", + "Pt", + "Au", + "Hg", + "Tl", + "Pb", + "Bi", + "Po", + "At", + "Rn", + "Fr", + "Ra", + "Ac", + "Th", + "Pa", + "U", + "Np", + "Pu", + "Am", + "Cm", + "Bk", + "Cf", + "Es", + "Fm", + "Md", + "No", + "Lr", + "Rf", + "Db", + "Sg", + "Bh", + "Hs", + "Mt", + "Ds", + "Rg", + "Cn", + "Nh", + "Fl", + "Mc", + "Lv", + "Ts", + "Og", + "x", + "vacancy" + ] + }, + "shape": [ + "1..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "optimade": [ + "Optimade" + ] + }, + "name": "concentration", + "description": "A list of floats, with same length as chemical_symbols. The numbers represent the\nrelative concentration of the corresponding chemical symbol in this species. The\nnumbers SHOULD sum to one. Cases in which the numbers do not sum to one typically fall\nonly in the following two categories:\n\n- Numerical errors when representing float numbers in fixed precision, e.g. for two\nchemical symbols with concentrations 1/3 and 2/3, the concentration might look\nsomething like [0.33333333333, 0.66666666666]. If the client is aware that the sum\nis not one because of numerical precision, it can renormalize the values so that the\nsum is exactly one.\n- Experimental errors in the data present in the database. In this case, it is the\nresponsibility of the client to decide how to process the data.\n\nNote that concentrations are uncorrelated between different sites (even of the same\nspecies).", + "type": { + "type_kind": "python", + "type_data": "float" + }, + "shape": [ + "1..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "optimade": [ + { + "entry": "optional", + "sortable": false, + "type": "float" + } + ] + }, + "name": "mass", + "type": { + "type_kind": "python", + "type_data": "float" + }, + "unit": "unified_atomic_mass_unit" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "optimade": [ + { + "entry": "optional", + "sortable": false, + "type": "string" + } + ] + }, + "name": "original_name", + "description": "Can be any valid Unicode string, and SHOULD contain (if specified) the name of the\nspecies that is used internally in the source database.\n\nNote: With regards to \"source database\", we refer to the immediate source being\nqueried via the OPTiMaDe API implementation. The main use of this field is for source\ndatabases that use species names, containing characters that are not allowed (see\ndescription of the species_at_sites list).", + "type": { + "type_kind": "python", + "type_data": "str" + } + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "OptimadeEntry", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2" + ], + "more": { + "label": "Optimade" + }, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.elements" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "elements", + "description": "Names of the different elements present in the structure.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.1" + ], + "type": { + "type_kind": "Enum", + "type_data": [ + "X", + "H", + "He", + "Li", + "Be", + "B", + "C", + "N", + "O", + "F", + "Ne", + "Na", + "Mg", + "Al", + "Si", + "P", + "S", + "Cl", + "Ar", + "K", + "Ca", + "Sc", + "Ti", + "V", + "Cr", + "Mn", + "Fe", + "Co", + "Ni", + "Cu", + "Zn", + "Ga", + "Ge", + "As", + "Se", + "Br", + "Kr", + "Rb", + "Sr", + "Y", + "Zr", + "Nb", + "Mo", + "Tc", + "Ru", + "Rh", + "Pd", + "Ag", + "Cd", + "In", + "Sn", + "Sb", + "Te", + "I", + "Xe", + "Cs", + "Ba", + "La", + "Ce", + "Pr", + "Nd", + "Pm", + "Sm", + "Eu", + "Gd", + "Tb", + "Dy", + "Ho", + "Er", + "Tm", + "Yb", + "Lu", + "Hf", + "Ta", + "W", + "Re", + "Os", + "Ir", + "Pt", + "Au", + "Hg", + "Tl", + "Pb", + "Bi", + "Po", + "At", + "Rn", + "Fr", + "Ra", + "Ac", + "Th", + "Pa", + "U", + "Np", + "Pu", + "Am", + "Cm", + "Bk", + "Cf", + "Es", + "Fm", + "Md", + "No", + "Lr", + "Rf", + "Db", + "Sg", + "Bh", + "Hs", + "Mt", + "Ds", + "Rg", + "Cn", + "Nh", + "Fl", + "Mc", + "Lv", + "Ts", + "Og" + ] + }, + "shape": [ + "1..*" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.nelements" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "nelements", + "description": "Number of different elements in the structure as an integer.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.2" + ], + "type": { + "type_kind": "python", + "type_data": "int" + }, + "default": 0 + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.elements_ratios" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "elements_ratios", + "description": "Relative proportions of different elements in the structure.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.3" + ], + "type": { + "type_kind": "python", + "type_data": "float" + }, + "shape": [ + "nelements" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.chemical_formula_descriptive" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "chemical_formula_descriptive", + "description": "The chemical formula for a structure as a string in a form chosen by the API\nimplementation.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.4" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.chemical_formula_reduced" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "chemical_formula_reduced", + "description": "The reduced chemical formula for a structure as a string with element symbols and\ninteger chemical proportion numbers. The proportion number MUST be omitted if it is 1.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.5" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.chemical_formula_hill" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "chemical_formula_hill", + "description": "The chemical formula for a structure in Hill form with element symbols followed by\ninteger chemical proportion numbers. The proportion number MUST be omitted if it is 1.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.6" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.chemical_formula_anonymous" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "chemical_formula_anonymous", + "description": "The anonymous formula is the chemical_formula_reduced, but where the elements are\ninstead first ordered by their chemical proportion number, and then, in order left to\nright, replaced by anonymous symbols A, B, C, ..., Z, Aa, Ba, ..., Za, Ab, Bb, ... and\nso on.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.7" + ], + "type": { + "type_kind": "python", + "type_data": "str" + } + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "m_annotations": { + "optimade": [ + "Optimade" + ] + }, + "name": "dimension_types", + "description": "List of three integers. For each of the three directions indicated by the three lattice\nvectors (see property lattice_vectors). This list indicates if the direction is\nperiodic (value 1) or non-periodic (value 0). Note: the elements in this list each\nrefer to the direction of the corresponding entry in lattice_vectors and not\nthe Cartesian x, y, z directions.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.8" + ], + "type": { + "type_kind": "python", + "type_data": "int" + }, + "shape": [ + 3 + ], + "default": [ + 0, + 0, + 0 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.nperiodic_dimensions" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "nperiodic_dimensions", + "description": "An integer specifying the number of periodic dimensions in the structure, equivalent\nto the number of non-zero entries in dimension_types.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.8" + ], + "type": { + "type_kind": "python", + "type_data": "int" + }, + "virtual": true + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "m_annotations": { + "optimade": [ + "Optimade" + ] + }, + "name": "lattice_vectors", + "description": "The three lattice vectors in Cartesian coordinates, in \u00e5ngstr\u00f6m (\u00c5).", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.9" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "angstrom" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "m_annotations": { + "optimade": [ + "Optimade" + ] + }, + "name": "cartesian_site_positions", + "description": "Cartesian positions of each site. A site is an atom, a site potentially occupied by\nan atom, or a placeholder for a virtual mixture of atoms (e.g., in a virtual crystal\napproximation).", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.10" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "nsites", + 3 + ], + "unit": "angstrom" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.nsites" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "nsites", + "description": "An integer specifying the length of the cartesian_site_positions property.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.11" + ], + "type": { + "type_kind": "python", + "type_data": "int" + }, + "default": 0 + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.species_at_sites" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "species_at_sites", + "description": "Name of the species at each site (where values for sites are specified with the same\norder of the cartesian_site_positions property). The properties of the species are\nfound in the species property.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.12" + ], + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "nsites" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "m_annotations": { + "elasticsearch": [ + "optimade.structure_features" + ], + "optimade": [ + "Optimade" + ] + }, + "name": "structure_features", + "description": "A list of strings that flag which special features are used by the structure.\n\n- disorder: This flag MUST be present if any one entry in the species list has a\nchemical_symbols list that is longer than 1 element.\n- unknown_positions: This flag MUST be present if at least one component of the\ncartesian_site_positions list of lists has value null.\n- assemblies: This flag MUST be present if the assemblies list is present.", + "links": [ + "https://github.com/Materials-Consortia/OPTiMaDe/blob/develop/optimade.md#h.6.2.15" + ], + "type": { + "type_kind": "Enum", + "type_data": [ + "disorder", + "unknown_positions", + "assemblies" + ] + }, + "shape": [ + "1..*" + ], + "default": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "species", + "sub_section": "/packages/23/section_definitions/0", + "repeats": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 24, + "m_parent_sub_section": "packages", + "name": "electronicparsers.abinit.metainfo.abinit", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "x_abinit_section_stress_tensor", + "description": "Section describing the stress tensor", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_stress_tensor_xx", + "description": "xx component of the stress tensor", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_stress_tensor_yy", + "description": "yy component of the stress tensor", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abinit_stress_tensor_zz", + "description": "zz component of the stress tensor", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abinit_stress_tensor_zy", + "description": "zy component of the stress tensor", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abinit_stress_tensor_zx", + "description": "zx component of the stress tensor", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abinit_stress_tensor_yx", + "description": "yx component of the stress tensor", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "x_abinit_section_dataset_header", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_dataset_number", + "description": "Dataset number", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_vprim_1", + "description": "Primitive axis 1", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abinit_vprim_2", + "description": "Primitive axis 2", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abinit_vprim_3", + "description": "Primitive axis 3", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "x_abinit_section_var", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_vardtset", + "description": "Variable dataset number", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_varname", + "description": "Variable name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abinit_varvalue", + "description": "Variable value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abinit_vartruncation", + "description": "Variable truncation length", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "Run", + "base_sections": [ + "/packages/3/section_definitions/3" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_parallel_compilation", + "description": "Parallel or sequential compilation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_start_date", + "description": "Start date as string", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abinit_start_time", + "description": "Start time as string", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abinit_input_file", + "description": "Input file name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abinit_output_file", + "description": "Output file name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abinit_input_files_root", + "description": "Root for input files", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_abinit_output_files_root", + "description": "Root for output files", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_abinit_total_cpu_time", + "description": "Total CPU time", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_abinit_total_wallclock_time", + "description": "Total wallclock time", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_abinit_completed", + "description": "Message that the calculation was completed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_abinit_section_var", + "sub_section": "/packages/24/section_definitions/2", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "Method", + "base_sections": [ + "/packages/0/section_definitions/23" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_tolvrs", + "description": "`TOLerance on the potential V(r) ReSidual`:\nSets a tolerance for potential residual that, when reached, will cause\none SCF cycle to stop (and ions to be moved). If set to zero, this\nstopping condition is ignored. Instead, refer to other tolerances, such\nas toldfe, tolwfr.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_tolwfr", + "description": "TOLerance on WaveFunction squared Residual:\nSpecifies the threshold on WaveFunction squared Residuals;\nit gives a convergence tolerance for the largest squared residual\nfor any given band.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abinit_istwfk", + "description": "Integer for choice of STorage of WaveFunction at each k point;\nControls the way the wavefunction for each k-point is stored inside ABINIT,\nin reciprocal space, according to time-reversal symmetry properties.", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abinit_iscf", + "description": "ABINIT variable Integer for Self-Consistent-Field cycles", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "System", + "base_sections": [ + "/packages/1/section_definitions/6" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_atom_xcart_final", + "description": "Cartesian coordinates of an atom at the end of the dataset", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_atom_xcart", + "description": "Cartesian coordinates of an atom at the end of a single configuration calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "Calculation", + "base_sections": [ + "/packages/2/section_definitions/34" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_magnetisation", + "description": "Total magnetisation.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_fermi_energy", + "description": "Fermi energy.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abinit_single_configuration_calculation_converged", + "description": "Determines whether a single configuration calculation is converged.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abinit_atom_force", + "description": "Force acting on an atom at the end of a single configuration calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abinit_atom_force_final", + "description": "Force acting on an atom at the end of the dataset", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "newton" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abinit_energy_ewald", + "description": "Ewald energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_abinit_energy_psp_core", + "description": "Pseudopotential core energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_abinit_energy_psp_local", + "description": "Local pseudopotential energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_abinit_energy_psp_nonlocal", + "description": "Non-local pseudopotential energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_abinit_energy_internal", + "description": "Internal energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_abinit_energy_ktentropy", + "description": "-kT*entropy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_abinit_energy_band", + "description": "Band energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_abinit_unit_cell_volume", + "description": "Unit cell volume", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "meter ** 3" + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_abinit_section_stress_tensor", + "sub_section": "/packages/24/section_definitions/0", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "x_abinit_section_dataset", + "base_sections": [ + "/packages/25/section_definitions/1" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_geometry_optimization_converged", + "description": "Determines whether a geometry optimization is converged.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_eig_filename", + "description": "Name of file where the eigenvalues were written to.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_abinit_section_dataset_header", + "sub_section": "/packages/24/section_definitions/1", + "repeats": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 25, + "m_parent_sub_section": "packages", + "name": "electronicparsers.abinit.metainfo.abinit_autogenerated", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "x_abinit_section_input", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_accuracy", + "description": "ABINIT variable ACCURACY", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_acell", + "description": "ABINIT variable CELL lattice vector scaling", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_adpimd", + "description": "ABINIT variable ADiabatic Path-Integral Molecular Dynamics", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_adpimd_gamma", + "description": "ABINIT variable ADiabatic Path-Integral Molecular Dynamics: GAMMA factor", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_algalch", + "description": "ABINIT variable ALGorithm for generating ALCHemical pseudopotentials", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_ntypalch" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_amu", + "description": "ABINIT variable Atomic Mass Units", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_angdeg", + "description": "ABINIT variable ANGles in DEGrees", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_asr", + "description": "ABINIT variable Acoustic Sum Rule", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_atvshift", + "description": "ABINIT variable ATomic potential (V) energy SHIFTs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_natom", + "x_abinit_var_nsppol", + "x_abinit_var_natvshift" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_autoparal", + "description": "ABINIT variable AUTOmatisation of the PARALlelism", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_awtr", + "description": "ABINIT variable evaluate the Adler-Wiser expression of $\\chi^{0}_{KS}$ assuming\nTime-Reversal", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bandpp", + "description": "ABINIT variable BAND Per Processor", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bdberry", + "description": "ABINIT variable BanD limits for BERRY phase", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 4 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bdeigrf", + "description": "ABINIT variable BanD for second-order EIGenvalues from Response-Function", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bdgw", + "description": "ABINIT variable BanDs for GW calculation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nsppol", + "x_abinit_var_nkptgw", + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_berryopt", + "description": "ABINIT variable BERRY phase OPTions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_berrysav", + "description": "ABINIT variable BERRY SAVe", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_berrystep", + "description": "ABINIT variable BERRY phase : multiple STEP", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bfield", + "description": "ABINIT variable finite B FIELD calculation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bmass", + "description": "ABINIT variable Barostat MASS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_boxcenter", + "description": "ABINIT variable BOX CENTER", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_boxcutmin", + "description": "ABINIT variable BOX CUT-off MINimum", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_brvltt", + "description": "ABINIT variable BRaVais LaTTice type", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_algorithm", + "description": "ABINIT variable Bethe-Salpeter ALGORITHM", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_calctype", + "description": "ABINIT variable Bethe-Salpeter CALCulation TYPE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_coulomb_term", + "description": "ABINIT variable Bethe-Salpeter COULOMB TERM", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_coupling", + "description": "ABINIT variable Bethe-Salpeter COUPLING", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_eh_cutoff", + "description": "ABINIT variable Bethe-Salpeter Electron-Hole CUTOFF", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_exchange_term", + "description": "ABINIT variable Bethe-Salpeter EXCHANGE TERM", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_freq_mesh", + "description": "ABINIT variable Bethe-Salpeter FREQuency MESH", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_hayd_term", + "description": "ABINIT variable Bethe-Salpeter HAYdock TERMinator", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_haydock_niter", + "description": "ABINIT variable Bethe-Salpeter HAYDOCK Number of Iterations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_haydock_tol", + "description": "ABINIT variable Bethe-Salpeter HAYDOCK TOLerance", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_interp_kmult", + "description": "ABINIT variable Bethe-Salpeter INTERPolation K-point MULTiplication factors", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_interp_m3_width", + "description": "ABINIT variable Bethe-Salpeter INTERPolation Method3 WIDTH", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_interp_method", + "description": "ABINIT variable Bethe-Salpeter INTERPolation METHOD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_interp_mode", + "description": "ABINIT variable Bethe-Salpeter INTERPolation MODE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_interp_prep", + "description": "ABINIT variable Bethe-Salpeter INTERPolation PREParation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_interp_rl_nb", + "description": "ABINIT variable Bethe-Salpeter INTERPolation Rohlfing & Louie NeighBour", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 39, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_loband", + "description": "ABINIT variable Bethe-Salpeter Lowest Occupied BAND", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nsppol" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 40, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bs_nstates", + "description": "ABINIT variable Bethe-Salpeter Number of States", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 41, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_builtintest", + "description": "ABINIT variable BUIT-IN TEST number", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 42, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_bxctmindg", + "description": "ABINIT variable BoX CuT-off MINimum for the Double Grid (PAW)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 43, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cd_customnimfrqs", + "description": "ABINIT variable Contour Deformation Custom Imaginary Frequencies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 44, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cd_frqim_method", + "description": "ABINIT variable Contour Deformation Imaginary Frequency integration Method", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 45, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cd_full_grid", + "description": "ABINIT variable Contour Deformation Full Grid in complex plane", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 46, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cd_halfway_freq", + "description": "ABINIT variable Contour Deformation tangent grid Halfway Frequency", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 47, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cd_imfrqs", + "description": "ABINIT variable Contour Deformation Imaginary Frequencies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_cd_customnimfrqs" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 48, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cd_max_freq", + "description": "ABINIT variable Contour Deformation grid Maximum Frequency", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 49, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cd_subset_freq", + "description": "ABINIT variable Contour Deformation grid calculate Subset of Frequencies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 50, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cgtyphf", + "description": "ABINIT variable Conjugate Gradient TYpe used for Hartree Fock exact exchange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 51, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_charge", + "description": "ABINIT variable CHARGE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 52, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_chkexit", + "description": "ABINIT variable CHecK whether the user want to EXIT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 53, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_chkprim", + "description": "ABINIT variable CHecK whether the cell is PRIMitive", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 54, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_chksymbreak", + "description": "ABINIT variable CHecK SYMmetry BREAKing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 55, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_chneut", + "description": "ABINIT variable CHarge NEUTrality treatment", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 56, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cineb_start", + "description": "ABINIT variable Climbing-Image Nudged Elastic Band: STARTing iteration", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 57, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cpuh", + "description": "ABINIT variable CPU time limit in Hours", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 58, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cpum", + "description": "ABINIT variable CPU time limit in Minutes", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 59, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_cpus", + "description": "ABINIT variable CPU time limit in seconds", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 60, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert1_atpol", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 1: limits of ATomic\nPOLarisations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 61, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert1_dir", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 1: DIRections", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 62, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert1_elfd", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 1: ELectric FielD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 63, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert1_phon", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 1: PHONons", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 64, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert2_atpol", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 2: limits of ATomic\nPOLarisations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 65, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert2_dir", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 2: DIRections", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 66, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert2_elfd", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 2: ELectric FielD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 67, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert2_phon", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 2: PHONons", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 68, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert3_atpol", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 3: limits of ATomic\nPOLarisations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 69, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert3_dir", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 3: DIRections", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 70, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert3_elfd", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 3: ELectric FielD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 71, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_d3e_pert3_phon", + "description": "ABINIT variable 3rd Derivative of Energy, mixed PERTurbation 3: PHONons", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 72, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ddamp", + "description": "ABINIT variable electric Displacement field DAMPing parameter", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 73, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ddb_ngqpt", + "description": "ABINIT variable Derivative DatabBase: Number of Grid points for Q-PoinTs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 74, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_delayperm", + "description": "ABINIT variable DELAY between trials to PERMUTE atoms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 75, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_densfor_pred", + "description": "ABINIT variable DENSity and FORces PREDictor", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 76, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_densty", + "description": "ABINIT variable initial DENSity for each TYpe of atom", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 77, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dfield", + "description": "ABINIT variable Displacement FIELD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 78, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dfpt_sciss", + "description": "ABINIT variable DFPT SCISSor operator", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 79, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_diecut", + "description": "ABINIT variable DIElectric matrix Energy CUToff", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 80, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_diegap", + "description": "ABINIT variable DIElectric matrix GAP", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 81, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dielam", + "description": "ABINIT variable DIElectric matrix LAMbda", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 82, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dielng", + "description": "ABINIT variable model DIElectric screening LeNGth", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 83, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_diemac", + "description": "ABINIT variable model DIElectric MACroscopic constant", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 84, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_diemix", + "description": "ABINIT variable model DIElectric MIXing factor", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 85, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_diemixmag", + "description": "ABINIT variable model DIElectric MIXing factor for the MAGgnetization", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 86, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_diismemory", + "description": "ABINIT variable Direct Inversion in the Iterative Subspace MEMORY", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 87, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dilatmx", + "description": "ABINIT variable DILATation : MaXimal value", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 88, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dipdip", + "description": "ABINIT variable DIPole-DIPole interaction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 89, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmatpawu", + "description": "ABINIT variable initial Density MATrix for PAW+U", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_natpawu", + "max(x_abinit_var_nsppol, x_abinit_var_nspinor)", + "2*max(x_abinit_var_lpawu)+1", + "2*max(x_abinit_var_lpawu)+1" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 90, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmatpuopt", + "description": "ABINIT variable Density MATrix for PAW+U OPTion", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 91, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmatudiag", + "description": "ABINIT variable Density MATrix for paw+U, DIAGonalization", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 92, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_dc", + "description": "ABINIT variable Dynamical Mean Fied Theory: Double Counting", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 93, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_entropy", + "description": "ABINIT variable Dynamical Mean Fied Theory: ENTROPY", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 94, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_iter", + "description": "ABINIT variable Dynamical Mean Fied Theory: number of ITERation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 95, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_mxsf", + "description": "ABINIT variable Dynamical Mean Fied Theory: MiXing parameter for the SelF energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 96, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_nlambda", + "description": "ABINIT variable Dynamical Mean Fied Theory: Number of LAMBDA points", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 97, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_nwli", + "description": "ABINIT variable Dynamical Mean Fied Theory: Number of frequency omega (W) in the\nLInear mesh", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 98, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_nwlo", + "description": "ABINIT variable Dynamical Mean Fied Theory: Number of frequency omega (W) in the\nlog mesh", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 99, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_read_occnd", + "description": "ABINIT variable Dynamical Mean Fied Theory: Read Occupations (Non Diagonal)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 100, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_rslf", + "description": "ABINIT variable Dynamical Mean Fied Theory: Read SeLF energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 101, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_solv", + "description": "ABINIT variable Dynamical Mean Fied Theory: choice of SOLVer", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 102, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_t2g", + "description": "ABINIT variable Dynamical Mean Fied Theory: t2g orbitals", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 103, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmft_tollc", + "description": "ABINIT variable Dynamical Mean Fied Theory: Tolerance on Local Charge for\nconvergence of the DMFT loop", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 104, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftbandf", + "description": "ABINIT variable Dynamical Mean Field Theory: BAND: Final", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 105, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftbandi", + "description": "ABINIT variable Dynamical Mean Field Theory: BAND: Initial", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 106, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftcheck", + "description": "ABINIT variable Dynamical Mean Fied Theory: CHECKs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 107, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_basis", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\nbasis", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 108, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_check", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\ncheck", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 109, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_correl", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\nCORRelations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 110, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_gmove", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\nGlobal MOVEs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 111, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_grnns", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\nGReeNs NoiSe", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 112, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_meas", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\nMEASurements", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 113, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_mov", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\nMOVie", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 114, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_mrka", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\nMARKov Analysis", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 115, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftctqmc_order", + "description": "ABINIT variable Dynamical Mean Fied Theory: Continuous Time Quantum Monte Carlo\nperturbation ORDER", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 116, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftqmc_l", + "description": "ABINIT variable Dynamical Mean Fied Theory: Quantum Monte Carlo time sLices", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 117, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftqmc_n", + "description": "ABINIT variable Dynamical Mean Fied Theory: Quantum Monte Carlo sweeps", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 118, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftqmc_seed", + "description": "ABINIT variable Dynamical Mean Fied Theory: Quantum Monte Carlo seed", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 119, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dmftqmc_therm", + "description": "ABINIT variable Dynamical Mean Fied Theory: Quantum Monte Carlo THERMalization", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 120, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dosdeltae", + "description": "ABINIT variable DOS Delta in Energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 121, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dtion", + "description": "ABINIT variable Delta Time for IONs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 122, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_dynimage", + "description": "ABINIT variable DYNamics of the IMAGE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nimage" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 123, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ecut", + "description": "ABINIT variable Energy CUToff", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 124, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ecuteps", + "description": "ABINIT variable Energy CUT-off for EPSilon (the dielectric matrix)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 125, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ecutsigx", + "description": "ABINIT variable Energy CUT-off for SIGma eXchange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 126, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ecutsm", + "description": "ABINIT variable Energy CUToff SMearing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 127, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ecutwfn", + "description": "ABINIT variable Energy CUT-off for WaveFunctions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 128, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_effmass", + "description": "ABINIT variable EFFective MASS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 129, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efield", + "description": "ABINIT variable Electric FIELD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 130, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas", + "description": "ABINIT variable EFfective MASs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 131, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas_bands", + "description": "ABINIT variable EFfective MASs, BANDS to be treated.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nkpt", + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 132, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas_calc_dirs", + "description": "ABINIT variable EFfective MASs, CALCulate along DIRectionS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 133, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas_deg", + "description": "ABINIT variable EFfective MASs, activate DEGenerate formalism", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 134, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas_deg_tol", + "description": "ABINIT variable EFfective MASs, DEGeneracy TOLerance", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 135, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas_dim", + "description": "ABINIT variable EFfective MASs, DIMension of the effective mass tensor", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 136, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas_dirs", + "description": "ABINIT variable EFfective MASs, DIRectionS to be calculated", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_efmas_n_dirs", + "3 or 2" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 137, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas_n_dirs", + "description": "ABINIT variable EFfective MASs, Number of DIRectionS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 138, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_efmas_ntheta", + "description": "ABINIT variable EFfective MASs, Number of points for integration w/r to THETA", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 139, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_elph2_imagden", + "description": "ABINIT variable ELectron-PHonon interaction at 2nd order : IMAGina y shoft of the\nDENominator", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 140, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_enunit", + "description": "ABINIT variable ENergy UNITs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 141, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_eph_extrael", + "description": "ABINIT variable Electron-PHonon: EXTRA ELectrons", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 142, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_eph_fermie", + "description": "ABINIT variable Electron-PHonon: Fermi Energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 143, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_eph_fsewin", + "description": "ABINIT variable Electron-Phonon: Fermi Surface Energy WINdow", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 144, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_eph_fsmear", + "description": "ABINIT variable Electron-PHonon: Fermi surface SMEARing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 145, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_eph_intmeth", + "description": "ABINIT variable Electron-Phonon: INTegration METHod", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 146, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_eph_mustar", + "description": "ABINIT variable MU STAR", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 147, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_eph_ngqpt_fine", + "description": "ABINIT variable Number of Grid Q-Points in FINE grid.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 148, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_eshift", + "description": "ABINIT variable Energy SHIFT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 149, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_esmear", + "description": "ABINIT variable Eigenvalue SMEARing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 150, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_exchmix", + "description": "ABINIT variable EXCHange MIXing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 151, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_exchn2n3d", + "description": "ABINIT variable EXCHange N2 and N3 Dimensions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 152, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_extrapwf", + "description": "ABINIT variable flag - EXTRAPolation of the Wave-Functions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 153, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_f4of2_sla", + "description": "ABINIT variable F4 Over F2 ratio of Slater integrals", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 154, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_f6of2_sla", + "description": "ABINIT variable F6 Over F2 ratio of Slater integrals", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 155, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_fband", + "description": "ABINIT variable Factor for the number of BANDs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 156, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_fermie_nest", + "description": "ABINIT variable FERMI Energy for printing the NESTing function", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 157, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_fftalg", + "description": "ABINIT variable Fast Fourier Transform ALGorithm", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 158, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_fftcache", + "description": "ABINIT variable Fast Fourier Transform CACHE size", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 159, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_fftgw", + "description": "ABINIT variable FFT for GW calculation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 160, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_freqim_alpha", + "description": "ABINIT variable FREQuencies along the IMaginary axis ALPHA parameter", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 161, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_freqremax", + "description": "ABINIT variable FREQuencies along the Real axis MAXimum", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 162, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_freqremin", + "description": "ABINIT variable FREQuencies along the Real axis MINimum", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 163, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_freqspmax", + "description": "ABINIT variable FREQuencies for the SPectral function MAXimum", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 164, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_freqspmin", + "description": "ABINIT variable FREQuencies for the SPectral function MINimum", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 165, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_friction", + "description": "ABINIT variable internal FRICTION coefficient", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 166, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_frzfermi", + "description": "ABINIT variable FReeZe FERMI energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 167, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_fxcartfactor", + "description": "ABINIT variable Forces to (X) CARTesian coordinates FACTOR", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 168, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ga_algor", + "description": "ABINIT variable Genetic Algorithm selection", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 169, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ga_fitness", + "description": "ABINIT variable Genetic Algorithm FITNESS function selection", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 170, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ga_n_rules", + "description": "ABINIT variable Genetic Algorithm Number of RULES", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 171, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ga_opt_percent", + "description": "ABINIT variable Genetic Algorithm OPTIMAL PERCENT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 172, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ga_rules", + "description": "ABINIT variable Genetic Algorithm RULES", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 173, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_genafm", + "description": "ABINIT variable GENerator of the translation for Anti-FerroMagnetic space group", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 174, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_get1den", + "description": "ABINIT variable GET the first-order density from _DEN file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 175, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_get1wf", + "description": "ABINIT variable GET the first-order wavefunctions from _1WF file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 176, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getbscoup", + "description": "ABINIT variable GET the Bethe-Salpeter COUPling block from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 177, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getbseig", + "description": "ABINIT variable GET the Bethe-Salpeter EIGenstates from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 178, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getbsreso", + "description": "ABINIT variable GET the Bethe-Salpeter RESOnant block from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 179, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getcell", + "description": "ABINIT variable GET CELL parameters from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 180, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getddb", + "description": "ABINIT variable GET the DDB from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 181, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getddk", + "description": "ABINIT variable GET the ddk wavefunctions from _1WF file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 182, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getden", + "description": "ABINIT variable GET the DENsity from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 183, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getgam_eig2nkq", + "description": "ABINIT variable GET the GAMma phonon data EIG2NKQ from dataset", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 184, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gethaydock", + "description": "ABINIT variable GET the Haydock restart file from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 185, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getocc", + "description": "ABINIT variable GET OCC parameters from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 186, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getqps", + "description": "ABINIT variable GET QuasiParticle Structure", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 187, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getscr", + "description": "ABINIT variable GET SCReening (the inverse dielectric matrix) from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 188, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getsuscep", + "description": "ABINIT variable GET SUSCEPtibility (the irreducible polarizability) from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 189, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getvel", + "description": "ABINIT variable GET VEL from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 190, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getwfk", + "description": "ABINIT variable Integer that governs the ReaDing of _1WF files", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 191, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getwfkfine", + "description": "ABINIT variable GET the fine grid wavefunctions from _WFK file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 192, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getwfq", + "description": "ABINIT variable GET the wavefunctions from _WFQ file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 193, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getxcart", + "description": "ABINIT variable GET XCART from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 194, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_getxred", + "description": "ABINIT variable GET XRED from ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 195, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_goprecon", + "description": "ABINIT variable Geometry Optimization PRECONditioner equations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 196, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_goprecprm", + "description": "ABINIT variable Geometry Optimization PREconditioner PaRaMeters equations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 197, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gpu_devices", + "description": "ABINIT variable GPU: choice of DEVICES on one node", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 5 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 198, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gpu_linalg_limit", + "description": "ABINIT variable GPU (Cuda): LINear ALGebra LIMIT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 199, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_customnfreqsp", + "description": "ABINIT variable GW CUSTOM SPectral FREQuencies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 200, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_freqsp", + "description": "ABINIT variable GW SPectral FREQuencies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_gw_customnfreqsp" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 201, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_frqim_inzgrid", + "description": "ABINIT variable Contour Deformation Imaginary Frequencies Inverse Z Grid", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 202, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_frqre_inzgrid", + "description": "ABINIT variable Contour Deformation Real Frequencies Inverse Z Grid", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 203, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_frqre_tangrid", + "description": "ABINIT variable Contour Deformation Use Tangent Grid", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 204, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_invalid_freq", + "description": "ABINIT variable Invalid Frequency for Hybertsen-Louie PPM", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 205, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_nqlwl", + "description": "ABINIT variable GW, Number of Q-points for the Long Wave-Length Limit", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 206, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_nstep", + "description": "ABINIT variable GW Number of self-consistent STEPS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 207, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_qlwl", + "description": "ABINIT variable GW, Q-points for the Long Wave-Length Limit", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_gw_nqlwl", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 208, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_qprange", + "description": "ABINIT variable GW Policy for K-point and Bands selection", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 209, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_sctype", + "description": "ABINIT variable GW, Self-Consistency TYPE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 210, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_sigxcore", + "description": "ABINIT variable GW, treatment of the ...", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 211, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gw_toldfeig", + "description": "ABINIT variable GW TOLerance on the DiFference of the EIGenvalues", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 212, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwcalctyp", + "description": "ABINIT variable GW CALCulation TYPe", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 213, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwcomp", + "description": "ABINIT variable GW COMPletness", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 214, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwencomp", + "description": "ABINIT variable GW Energy for COMPletness", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 215, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwgamma", + "description": "ABINIT variable GW Gamma", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 216, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_band_index", + "description": "ABINIT variable GWLS BAND INDEX", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 217, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_correlation", + "description": "ABINIT variable GWLS CORRELATION", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 218, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_dielectric_model", + "description": "ABINIT variable GWLS dielectric model", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 219, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_exchange", + "description": "ABINIT variable GWLS exact EXCHANGE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 220, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_first_seed", + "description": "ABINIT variable GWLS FIRST SEED vector", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 221, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_kmax_analytic", + "description": "ABINIT variable GWLS KMAX for the ANALYTIC term", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 222, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_kmax_complement", + "description": "ABINIT variable GWLS KMAX for the COMPLEMENT space.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 223, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_kmax_numeric", + "description": "ABINIT variable GWLS KMAX for the NUMERIC term", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 224, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_kmax_poles", + "description": "ABINIT variable GWLS KMAX for the calculation of the POLES residue", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 225, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_list_proj_freq", + "description": "ABINIT variable GWLS LIST of the PROJection FREQuencies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_gwls_n_proj_freq" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 226, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_model_parameter", + "description": "ABINIT variable GWLS model parameter", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 227, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_n_proj_freq", + "description": "ABINIT variable GWLS Number of PROJection FREQuencies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 228, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_npt_gauss_quad", + "description": "ABINIT variable GWLS Number of PoinTs to use for the GAUSSian QUADrature", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 229, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_nseeds", + "description": "ABINIT variable GWLS Number of SEED vectorS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 230, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_print_debug", + "description": "ABINIT variable GWLS PRINT level for DEBUGging", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 231, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_recycle", + "description": "ABINIT variable GWLS RECYCLE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 232, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_second_model_parameter", + "description": "ABINIT variable GWLS second model parameter", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 233, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwls_sternheimer_kmax", + "description": "ABINIT variable GWLS Kmax", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 234, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwmem", + "description": "ABINIT variable GW MEMory", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 235, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwpara", + "description": "ABINIT variable GW PARAllelization level", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 236, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_gwrpacorr", + "description": "ABINIT variable GW RPA CORRelation energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 237, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iatcon", + "description": "ABINIT variable Indices of AToms in CONstraint equations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nconeq", + "x_abinit_var_natcon" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 238, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iatfix", + "description": "ABINIT variable Indices of AToms that are FIXed", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_natfix" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 239, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iatfixx", + "description": "ABINIT variable Indices of AToms that are FIXed along the X direction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_natfixx" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 240, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iatfixy", + "description": "ABINIT variable Indices of AToms that are FIXed along the Y direction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_natfixy" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 241, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iatfixz", + "description": "ABINIT variable Indices of AToms that are FIXed along the Z direction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_natfixz" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 242, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iatsph", + "description": "ABINIT variable Index for the ATomic SPHeres of the atom-projected density-of-\nstates", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_natsph" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 243, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iboxcut", + "description": "ABINIT variable Integer governing the internal use of BOXCUT - not a very good\nchoice of variable name", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 244, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_icoulomb", + "description": "ABINIT variable Coulomb TReaTMenT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 245, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_icutcoul", + "description": "ABINIT variable Integer that governs the CUT-off for COULomb interaction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 246, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ieig2rf", + "description": "ABINIT variable Integer for second-order EIGenvalues from Response-Function", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 247, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_imgmov", + "description": "ABINIT variable IMaGe MOVEs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 248, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_inclvkb", + "description": "ABINIT variable INCLude VKB", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 249, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_intxc", + "description": "ABINIT variable INTerpolation for eXchange-Correlation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 250, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iomode", + "description": "ABINIT variable IO MODE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 251, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ionmov", + "description": "ABINIT variable IONic MOVEs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 252, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iprcel", + "description": "ABINIT variable Integer for PReConditioning of ELectron response", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 253, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iprcfc", + "description": "ABINIT variable Integer for PReConditioner of Force Constants", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 254, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_iqpt", + "description": "ABINIT variable Index for QPoinT generation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 255, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irandom", + "description": "ABINIT variable Integer for the choice of the RANDOM number generator", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 256, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ird1den", + "description": "ABINIT variable Integer that governs the ReaDing of 1st-order DEN file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 257, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ird1wf", + "description": "ABINIT variable Integer that governs the ReaDing of _1WF files", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 258, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdbscoup", + "description": "ABINIT variable Integer that governs the ReaDing of COUPling block", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 259, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdbseig", + "description": "ABINIT variable Integer that governs the ReaDing of BS_EIG file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 260, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdbsreso", + "description": "ABINIT variable Integer that governs the ReaDing of RESOnant block", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 261, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdddb", + "description": "ABINIT variable Integer that governs the ReaDing of DDB file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 262, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdddk", + "description": "ABINIT variable Integer that governs the ReaDing of DDK wavefunctions, in _1WF\nfiles", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 263, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdden", + "description": "ABINIT variable Integer that governs the ReaDing of DEN file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 264, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdhaydock", + "description": "ABINIT variable Integer that governs the ReaDing of the HAYDOCK restart file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 265, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdqps", + "description": "ABINIT variable Integer that governs the ReaDing of QuasiParticle Structure", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 266, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdscr", + "description": "ABINIT variable Integer that governs the ReaDing of the SCReening", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 267, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdsuscep", + "description": "ABINIT variable Integer that governs the ReaDing of the SUSCEPtibility", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 268, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdvdw", + "description": "ABINIT variable Integer that governs the ReaDing of _VDW files", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 269, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdwfk", + "description": "ABINIT variable Integer that governs the ReaDing of _WFK files", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 270, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdwfkfine", + "description": "ABINIT variable Integer that governs the ReaDing of the fine grid _WFK files", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 271, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_irdwfq", + "description": "ABINIT variable Integer that governs the ReaDing of _WFQ files", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 272, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_isecur", + "description": "ABINIT variable Integer for level of SECURity choice", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 273, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_istatimg", + "description": "ABINIT variable Integer governing the computation of STATic IMaGes", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 274, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_istatr", + "description": "ABINIT variable Integer for STATus file SHiFT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 275, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_istatshft", + "description": "ABINIT variable Integer for STATus file SHiFT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 276, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_istwfk", + "description": "ABINIT variable Integer for choice of STorage of WaveFunction at each k point", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nkpt" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 277, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ixc", + "description": "ABINIT variable Integer for eXchange-Correlation choice", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 278, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ixcpositron", + "description": "ABINIT variable Integer for the eXchange-Correlation applied to the electron-\nPOSITRON interaction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 279, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_jdtset", + "description": "ABINIT variable index -J- for DaTaSETs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_ndtset" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 280, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_jellslab", + "description": "ABINIT variable include a JELLium SLAB in the cell", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 281, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_jfielddir", + "description": "ABINIT variable electric/displacement FIELD DIRection", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 282, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_jpawu", + "description": "ABINIT variable value of J for PAW+U", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 283, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kberry", + "description": "ABINIT variable K wavevectors for BERRY phase computation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nberry", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 284, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kpt", + "description": "ABINIT variable K - PoinTs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nkpt", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 285, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kptbounds", + "description": "ABINIT variable K PoinTs BOUNDarieS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "abs(x_abinit_var_kptopt)+1)", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 286, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kptgw", + "description": "ABINIT variable K-PoinTs for GW calculations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nkptgw", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 287, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kptnrm", + "description": "ABINIT variable K - PoinTs NoRMalization", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 288, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kptns", + "description": "ABINIT variable K-PoinTs re-Normalized and Shifted", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nkpt", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 289, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kptopt", + "description": "ABINIT variable KPoinTs OPTion", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 290, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kptrlatt", + "description": "ABINIT variable K - PoinTs grid : Real space LATTice", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 291, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kptrlen", + "description": "ABINIT variable K - PoinTs grid : Real space LENgth", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 292, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_kssform", + "description": "ABINIT variable Kohn Sham Structure file FORMat", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 293, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_lexexch", + "description": "ABINIT variable value of angular momentum L for EXact EXCHange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 294, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_localrdwf", + "description": "ABINIT variable LOCAL ReaD WaveFunctions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 295, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_lotf_classic", + "description": "ABINIT variable LOTF classic model for Glue model", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 296, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_lotf_nitex", + "description": "ABINIT variable LOTF number of iterations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 297, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_lotf_nneigx", + "description": "ABINIT variable LOTF max number of neighbours", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 298, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_lotf_version", + "description": "ABINIT variable LOTF version of MD algorithm", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 299, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_lpawu", + "description": "ABINIT variable value of angular momentum L for PAW+U", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 300, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_macro_uj", + "description": "ABINIT variable Macro variable that activates the determination of the U and J\nparameter (for the PAW+U calculations)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 301, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_magcon_lambda", + "description": "ABINIT variable MAGnetization CONstraint LAMBDA parameter", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 302, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_magconon", + "description": "ABINIT variable turn MAGnetization CONstraint ON", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 303, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_max_ncpus", + "description": "ABINIT variable MAXimum Number of CPUS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 304, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_maxestep", + "description": "ABINIT variable MAXimum Electric field STEP", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 305, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_maxnsym", + "description": "ABINIT variable MAXimum Number of SYMetries", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 306, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mband", + "description": "ABINIT variable Maximum number of BANDs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 307, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mbpt_sciss", + "description": "ABINIT variable Many Body Perturbation Theory SCISSor operator", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 308, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mdf_epsinf", + "description": "ABINIT variable Model dielectric function, epsilon infinity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 309, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mdtemp", + "description": "ABINIT variable Molecular Dynamics Temperatures", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 310, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mdwall", + "description": "ABINIT variable Molecular Dynamics WALL location", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 311, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mem_test", + "description": "ABINIT variable MEMory TEST", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 312, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mep_mxstep", + "description": "ABINIT variable Minimal Energy Path search: MaXimum allowed STEP size", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 313, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mep_solver", + "description": "ABINIT variable Minimal Energy Path ordinary differential equation SOLVER", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 314, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mgfft", + "description": "ABINIT variable Maximum of nGFFT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 315, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mgfftdg", + "description": "ABINIT variable Maximum of nGFFT for the Double Grid", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 316, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mixalch", + "description": "ABINIT variable MIXing coefficients for ALCHemical potentials", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypalch", + "x_abinit_var_npspalch" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 317, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mpw", + "description": "ABINIT variable Maximum number of Plane Waves", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 318, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mqgrid", + "description": "ABINIT variable Maximum number of Q-space GRID points for pseudopotentials", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 319, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_mqgriddg", + "description": "ABINIT variable Maximum number of Q-wavevectors for the 1-dimensional GRID for\nthe Double Grid in PAW", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 320, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natcon", + "description": "ABINIT variable Number of AToms in CONstraint equations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nconeq" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 321, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natfix", + "description": "ABINIT variable Number of Atoms that are FIXed", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 322, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natfixx", + "description": "ABINIT variable Number of Atoms that are FIXed along the X direction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 323, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natfixy", + "description": "ABINIT variable Number of Atoms that are FIXed along the Y direction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 324, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natfixz", + "description": "ABINIT variable Number of Atoms that are FIXed along the Z direction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 325, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natom", + "description": "ABINIT variable Number of ATOMs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 326, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natpawu", + "description": "ABINIT variable Number of AToms on which PAW+U is applied", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 327, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natrd", + "description": "ABINIT variable Number of AToms ReaD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 328, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natsph", + "description": "ABINIT variable Number of ATomic SPHeres for the atom-projected density-of-states", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 329, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natsph_extra", + "description": "ABINIT variable Number of ATomic SPHeres for the l-projected density-of-states in\nEXTRA set", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 330, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_natvshift", + "description": "ABINIT variable Number of ATomic potential (V) energy SHIFTs (per atom)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 331, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nband", + "description": "ABINIT variable Number of BANDs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nkpt", + "x_abinit_var_nsppol" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 332, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nbandhf", + "description": "ABINIT variable Number of BANDs for Fock exact exchange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 333, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nbandkss", + "description": "ABINIT variable Number of BANDs in the KSS file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 334, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nbdblock", + "description": "ABINIT variable Number of BanDs in a BLOCK", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 335, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nbdbuf", + "description": "ABINIT variable Number of BanDs for the BUFfer", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 336, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nberry", + "description": "ABINIT variable Number of BERRY phase computations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 337, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nc_xccc_gspace", + "description": "ABINIT variable Norm-Conserving, use XC Core-Correction in G-space", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 338, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nconeq", + "description": "ABINIT variable Number of CONstraint EQuations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 339, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nctime", + "description": "ABINIT variable NetCdf TIME between output of molecular dynamics informations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 340, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ndivk", + "description": "ABINIT variable Number of DIVisions of K lines", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "abs(x_abinit_var_kptopt)" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 341, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ndivsm", + "description": "ABINIT variable Number of DIVisions for the SMallest segment", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 342, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ndtset", + "description": "ABINIT variable Number of DaTaSETs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 343, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ndynimage", + "description": "ABINIT variable Number of DYNamical IMAGEs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 344, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_neb_algo", + "description": "ABINIT variable Nudged Elastic Band ALGOrithm", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 345, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_neb_spring", + "description": "ABINIT variable Nudged Elastic Band: SPRING constant", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 346, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nelect", + "description": "ABINIT variable Number of ELECTrons", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 347, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nfft", + "description": "ABINIT variable Number of FFT points", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 348, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nfftdg", + "description": "ABINIT variable Number of FFT points for the Double Grid", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 349, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nfreqim", + "description": "ABINIT variable Number of FREQuencies along the IMaginary axis", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 350, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nfreqmidm", + "description": "ABINIT variable Nth FREQuencey Moment of the Imaginary part of the Dielectric\nMatrix", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 351, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nfreqre", + "description": "ABINIT variable Number of FREQuencies along the REal axis", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 352, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nfreqsp", + "description": "ABINIT variable Number of FREQuencies for the SPectral function", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 353, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ngfft", + "description": "ABINIT variable Number of Grid points for Fast Fourier Transform", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 354, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ngfftdg", + "description": "ABINIT variable Number of Grid points for Fast Fourier Transform : Double Grid", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 355, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ngkpt", + "description": "ABINIT variable Number of Grid points for K PoinTs generation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 356, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ngqpt", + "description": "ABINIT variable Number of Grid pointsfor Q PoinTs generation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 357, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nimage", + "description": "ABINIT variable Number of IMAGEs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 358, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nkpt", + "description": "ABINIT variable Number of K - Points", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 359, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nkptgw", + "description": "ABINIT variable Number of K-PoinTs for GW corrections", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 360, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nkpthf", + "description": "ABINIT variable Number of K - Points for Fock exact exchange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 361, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nline", + "description": "ABINIT variable Number of LINE minimisations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 362, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nloc_alg", + "description": "ABINIT variable Non LOCal ALGorithm", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 363, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nloc_mem", + "description": "ABINIT variable Non LOCal MEMOry", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 364, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nnos", + "description": "ABINIT variable Number of nose masses", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 365, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nnsclo", + "description": "ABINIT variable Number of Non-Self Consistent LOops", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 366, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nnsclohf", + "description": "ABINIT variable Number of Non-Self Consistent LOops for Fock exact exchange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 367, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nobj", + "description": "ABINIT variable Number of OBJects", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 368, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nomegasf", + "description": "ABINIT variable Number of OMEGA to evaluate the Spectral Function", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 369, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nomegasi", + "description": "ABINIT variable Number of OMEGA(S) along the Imaginary axis", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 370, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nomegasrd", + "description": "ABINIT variable Number of OMEGA to evaluate the Sigma Real axis Derivative", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 371, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_normpawu", + "description": "ABINIT variable NORMalize atomic PAW+U projector", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 372, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_noseinert", + "description": "ABINIT variable NOSE thermostat INERTia factor", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 373, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_np_slk", + "description": "ABINIT variable Number of mpi Processors used for ScaLapacK calls", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 374, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npband", + "description": "ABINIT variable Number of Processors at the BAND level", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 375, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npfft", + "description": "ABINIT variable Number of Processors at the FFT level", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 376, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nphf", + "description": "ABINIT variable Number of Processors for Fock exact exchange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 377, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npimage", + "description": "ABINIT variable Number of Processors at the IMAGE level", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 378, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npkpt", + "description": "ABINIT variable Number of Processors at the K-Point Level", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 379, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nppert", + "description": "ABINIT variable Number of Processors at the PERTurbation level", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 380, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npsp", + "description": "ABINIT variable Number of PSeudoPotentials", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 381, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npspalch", + "description": "ABINIT variable Number of PSeudoPotentials that are \"ALCHemical\"", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 382, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npspinor", + "description": "ABINIT variable Number of Processors at the SPINOR level", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 383, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npulayit", + "description": "ABINIT variable Number of PULAY ITerations for SC mixing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 384, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npvel", + "description": "ABINIT variable Number of Particle VELocities", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 385, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npweps", + "description": "ABINIT variable Number of PlaneWaves for EPSilon (the dielectric matrix)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 386, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npwkss", + "description": "ABINIT variable Number of PlaneWaves in the KSS file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 387, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npwsigx", + "description": "ABINIT variable Number of PlaneWaves for SIGma eXchange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 388, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_npwwfn", + "description": "ABINIT variable Number of PlaneWaves for WaveFunctioNs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 389, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nqpt", + "description": "ABINIT variable Number of Q - POINTs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 390, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nqptdm", + "description": "ABINIT variable Number of Q-PoinTs for the Dielectric Matrix", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 391, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nscforder", + "description": "ABINIT variable SCaling Function ORDER", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 392, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nshiftk", + "description": "ABINIT variable Number of SHIFTs for K point grids", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 393, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nshiftq", + "description": "ABINIT variable Number of SHIFTs for Q point grids", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 394, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nspden", + "description": "ABINIT variable Number of SPin-DENsity components", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 395, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nspinor", + "description": "ABINIT variable Number of SPINORial components of the wavefunctions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 396, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nsppol", + "description": "ABINIT variable Number of SPin POLarization", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 397, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nstep", + "description": "ABINIT variable Number of (non-)self-consistent field STEPS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 398, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nsym", + "description": "ABINIT variable Number of SYMmetry operations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 399, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ntime", + "description": "ABINIT variable Number of TIME steps", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 400, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ntimimage", + "description": "ABINIT variable Number of TIME steps for IMAGE propagation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 401, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ntypalch", + "description": "ABINIT variable Number of TYPe of atoms that are \"ALCHemical\"", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 402, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ntypat", + "description": "ABINIT variable Number of TYPEs of atoms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 403, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ntyppure", + "description": "ABINIT variable Number of TYPe of atoms that are \"PURe\"", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 404, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nucdipmom", + "description": "ABINIT variable NUClear DIPole MOMents", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_natom", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 405, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_nwfshist", + "description": "ABINIT variable Number of WaveFunctionS HISTory", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 406, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objaat", + "description": "ABINIT variable OBJect A : list of AToms, OBJect B : list of AToms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_objan" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 407, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objaax", + "description": "ABINIT variable OBJect A : AXis, OBJect B : AXis", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 408, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objan", + "description": "ABINIT variable OBJect A : Number of atoms, OBJect B : Number of atoms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 409, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objarf", + "description": "ABINIT variable OBJect A : Repetition Factors, OBJect B : Repetition Factors", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 410, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objaro", + "description": "ABINIT variable OBJect A : ROtations, OBJect B : ROtations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 411, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objatr", + "description": "ABINIT variable OBJect A : TRanslations, OBJect B : TRanslations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 412, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objbat", + "description": "ABINIT variable OBJect A : list of AToms, OBJect B : list of AToms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 413, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objbax", + "description": "ABINIT variable OBJect A : AXis, OBJect B : AXis", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 414, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objbn", + "description": "ABINIT variable OBJect A : Number of atoms, OBJect B : Number of atoms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 415, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objbrf", + "description": "ABINIT variable OBJect A : Repetition Factors, OBJect B : Repetition Factors", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 416, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objbro", + "description": "ABINIT variable OBJect A : ROtations, OBJect B : ROtations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 417, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_objbtr", + "description": "ABINIT variable OBJect A : TRanslations, OBJect B : TRanslations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 418, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_occ", + "description": "ABINIT variable OCCupation numbers", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "sum(x_abinit_var_nband)" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 419, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_occopt", + "description": "ABINIT variable OCCupation OPTion", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 420, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_omegasimax", + "description": "ABINIT variable OMEGA to evaluate Sigma along the Imaginary axis D: MAXimal value", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 421, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_omegasrdmax", + "description": "ABINIT variable OMEGA to evaluate the Sigma Real axis Derivative : MAXimal value", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 422, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_optcell", + "description": "ABINIT variable OPTimize the CELL shape and dimensions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 423, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_optdriver", + "description": "ABINIT variable OPTions for the DRIVER", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 424, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_optforces", + "description": "ABINIT variable OPTions for the calculation of FORCES", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 425, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_optnlxccc", + "description": "ABINIT variable OPTion for the calculation of Non-Linear eXchange-Correlation Core\nCorrection", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 426, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_optstress", + "description": "ABINIT variable OPTion for the computation of STRess", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 427, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ortalg", + "description": "ABINIT variable ORThogonalisation ALGorithm", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 428, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_papiopt", + "description": "ABINIT variable PAPI OPTion", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 429, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_paral_atom", + "description": "ABINIT variable activate PARALelization over (paw) ATOMic sites", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 430, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_paral_kgb", + "description": "ABINIT variable activate PARALelization over K-point, G-vectors and Bands", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 431, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_paral_rf", + "description": "ABINIT variable activate PARALlelization over Response Function perturbations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 432, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawcpxocc", + "description": "ABINIT variable PAW - use ComPleX rhoij OCCupancies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 433, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawcross", + "description": "ABINIT variable PAW - add CROSS term in oscillator strengths", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 434, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawecutdg", + "description": "ABINIT variable PAW - Energy CUToff for the Double Grid", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 435, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawfatbnd", + "description": "ABINIT variable PAW: print band structure in the FAT-BaND representation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 436, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawlcutd", + "description": "ABINIT variable PAW - L angular momentum used to CUT the development in moments of\nthe Densitites", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 437, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawlmix", + "description": "ABINIT variable PAW - maximum L used in the spherical part MIXing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 438, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawmixdg", + "description": "ABINIT variable PAW - MIXing is done (or not) on the (fine) Double Grid", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 439, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawnhatxc", + "description": "ABINIT variable PAW - Flag for exact computation of gradients of NHAT density in\neXchange-Correlation.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 440, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawnphi", + "description": "ABINIT variable PAW - Number of PHI angles used to discretize the sphere around\neach atom.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 441, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawntheta", + "description": "ABINIT variable PAW - Number of THETA angles used to discretize the sphere around\neach atom.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 442, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawnzlm", + "description": "ABINIT variable PAW - only compute Non-Zero LM-moments of the contributions to the\ndensity from the spheres", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 443, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawoptmix", + "description": "ABINIT variable PAW - OPTion for the MIXing of the spherical part", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 444, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawoptosc", + "description": "ABINIT variable PAW - OPTion for the computation of the OSCillator matrix elements", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 445, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawovlp", + "description": "ABINIT variable PAW - spheres OVerLap allowed (in percentage)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 446, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawprt_b", + "description": "ABINIT variable PAW print band", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 447, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawprt_k", + "description": "ABINIT variable PAW print k-point", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 448, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawprtden", + "description": "ABINIT variable PAW: PRinT total physical electron DENsity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 449, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawprtdos", + "description": "ABINIT variable PAW: PRinT partial DOS contributions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 450, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawprtvol", + "description": "ABINIT variable PAW: PRinT VOLume", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 451, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawprtwf", + "description": "ABINIT variable PAW: PRinT WaveFunctions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 452, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawspnorb", + "description": "ABINIT variable PAW - option for SPiN-ORBit coupling", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 453, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawstgylm", + "description": "ABINIT variable PAW - option for the STorage of G_l(r).YLM(r)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 454, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawsushat", + "description": "ABINIT variable PAW - SUSceptibility, inclusion of HAT (compensation charge)\ncontribution", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 455, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawujat", + "description": "ABINIT variable PAW+macro_UJ, ATom number", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 456, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawujrad", + "description": "ABINIT variable PAW+macro_UJ, sphere RADius", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 457, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawujv", + "description": "ABINIT variable PAW+macro_UJ, potential shift (V)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 458, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawusecp", + "description": "ABINIT variable PAW - option for the USE of CPrj in memory (cprj=WF projected with\nNL projector)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 459, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pawxcdev", + "description": "ABINIT variable PAW - choice for eXchange-Correlation DEVelopment (spherical part)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 460, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_intmeth", + "description": "ABINIT variable PHonon: INTegration METHod", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 461, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_ndivsm", + "description": "ABINIT variable PHonon: number of divisions for sampling the smallest segment", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 462, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_ngqpt", + "description": "ABINIT variable PHonon: Number of Grid points for Q-PoinT mesh.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 463, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_nqpath", + "description": "ABINIT variable PHonon: numer of Q-points defining the PATH", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 464, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_nqshift", + "description": "ABINIT variable PHonons: Number of q-SHIFTs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 465, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_qpath", + "description": "ABINIT variable Phonon: Q-PATH", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ph_nqpath", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 466, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_qshift", + "description": "ABINIT variable PHONONS: Q-SHIFTs for mesh.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ph_nqshift", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 467, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_smear", + "description": "ABINIT variable PHonon: SMEARing factor", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 468, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ph_wstep", + "description": "ABINIT variable PHonons: frequency STEP.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 469, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pimass", + "description": "ABINIT variable Path Integral fictitious MASSes", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 470, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pitransform", + "description": "ABINIT variable Path Integral coordinate TRANSFORMation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 471, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_bandf", + "description": "ABINIT variable Projected Local Orbital WANnier functions Initial BAND", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 472, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_bandi", + "description": "ABINIT variable Projected Local Orbital WANnier functions Initial BAND", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 473, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_compute", + "description": "ABINIT variable Projected Local Orbital WANnier functions COMPUTATION", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 474, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_iatom", + "description": "ABINIT variable Projected Local Orbital WANnier functions, ATOM Index", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 475, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_it", + "description": "ABINIT variable Projected Local Orbital WANnier functions, Index of Translation.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_plowan_nt", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 476, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_lcalc", + "description": "ABINIT variable Projected Local Orbital WANnier functions, L values to use for\nCALCulation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "sum(x_abinit_var_plowan_nbl)" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 477, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_natom", + "description": "ABINIT variable Projected Local Orbital WANnier functions, Number of ATOMs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 478, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_nbl", + "description": "ABINIT variable Projected Local Orbital WANnier functions, NumBer of L values", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_plowan_natom" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 479, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_nt", + "description": "ABINIT variable Projected Local Orbital WANnier functions, Number of Translation\non which the real space values ofenergy are computed", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 480, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_projcalc", + "description": "ABINIT variable Projected Local Orbital WANnier functions, PROJectors values to\nuse for CALCulation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "sum(x_abinit_var_plowan_nbl)" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 481, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_plowan_realspace", + "description": "ABINIT variable Projected Local Orbital WANnier functions, activate REAL SPACE\ncalculation.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 482, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_polcen", + "description": "ABINIT variable POLarization for Centrosymmetric geometry", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 483, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_posdoppler", + "description": "ABINIT variable POSitron computation of DOPPLER broadening", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 484, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_positron", + "description": "ABINIT variable POSITRON calculation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 485, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_posnstep", + "description": "ABINIT variable POSitron calculation: max. Number of STEPs for the two-component\nDFT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 486, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_posocc", + "description": "ABINIT variable POSitron calculation: OCCupation number for the positron", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 487, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_postoldfe", + "description": "ABINIT variable POSITRON calculation: TOLerance on the DiFference of total Energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 488, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_postoldff", + "description": "ABINIT variable POSitron calculation: TOLerance on the DiFference of Forces", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 489, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ppmfrq", + "description": "ABINIT variable Plasmon Pole Model FReQuency", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 490, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ppmodel", + "description": "ABINIT variable Plasmon Pole MODEL", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 491, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prepanl", + "description": "ABINIT variable PREPAre Non-Linear response calculation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 492, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prepgkk", + "description": "ABINIT variable PREPAre GKK calculation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 493, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prepscphon", + "description": "ABINIT variable PREPare Self-Consistent PHONon calculation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 494, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prt1dm", + "description": "ABINIT variable PRinT 1-DiMensional potential and density", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 495, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtatlist", + "description": "ABINIT variable PRinT by ATom LIST of ATom", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 496, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtbbb", + "description": "ABINIT variable PRinT Band-By-Band decomposition", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 497, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtbltztrp", + "description": "ABINIT variable PRinT output for BoLTZTRaP code", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 498, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtcif", + "description": "ABINIT variable PRinT Crystallographic Information File", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 499, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtden", + "description": "ABINIT variable PRinT the DENsity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 500, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtdensph", + "description": "ABINIT variable PRinT integral of DENsity inside atomic SPHeres", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 501, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtdipole", + "description": "ABINIT variable PRinT DIPOLE", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 502, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtdos", + "description": "ABINIT variable PRinT the Density Of States", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 503, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtdosm", + "description": "ABINIT variable PRinT the Density Of States with M decomposition", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 504, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtefg", + "description": "ABINIT variable PRint Electric Field Gradient", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 505, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prteig", + "description": "ABINIT variable PRinT EIGenenergies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 506, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtelf", + "description": "ABINIT variable PRinT Electron Localization Function (ELF)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 507, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtfc", + "description": "ABINIT variable PRinT Fermi Contact term", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 508, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtfsurf", + "description": "ABINIT variable PRinT Fermi SURFace file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 509, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtgden", + "description": "ABINIT variable PRinT the Gradient of electron DENsity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 510, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtgeo", + "description": "ABINIT variable PRinT the GEOmetry analysis", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 511, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtgkk", + "description": "ABINIT variable PRinT the GKK matrix elements file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 512, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtgsr", + "description": "ABINIT variable PRinT the GSR file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 513, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtkden", + "description": "ABINIT variable PRinT the Kinetic energy DENsity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 514, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtkpt", + "description": "ABINIT variable PRinT the K-PoinTs sets", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 515, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtlden", + "description": "ABINIT variable PRinT the Laplacian of electron DENsity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 516, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtnabla", + "description": "ABINIT variable PRint NABLA", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 517, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtnest", + "description": "ABINIT variable PRinT NESTing function", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 518, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtposcar", + "description": "ABINIT variable PRinT POSCAR file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 519, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtpot", + "description": "ABINIT variable PRinT V_XC", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 520, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtpsps", + "description": "ABINIT variable PRint the PSPS file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 521, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtspcur", + "description": "ABINIT variable PRinT the SPin CURrent density", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 522, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtstm", + "description": "ABINIT variable PRinT the STM density", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 523, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtsuscep", + "description": "ABINIT variable PRinT the SUSCEPtibility file (the irreducible polarizability)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 524, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtvclmb", + "description": "ABINIT variable PRinT V CouLoMB", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 525, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtvdw", + "description": "ABINIT variable PRinT Van Der Waals file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 526, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtvha", + "description": "ABINIT variable PRinT V_HArtree", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 527, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtvhxc", + "description": "ABINIT variable PRinT V_HXC", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 528, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtvol", + "description": "ABINIT variable PRinT VOLume", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 529, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtvolimg", + "description": "ABINIT variable PRinT VOLume for IMaGes", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 530, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtvpsp", + "description": "ABINIT variable PRinT V_PSeudoPotential", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 531, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtvxc", + "description": "ABINIT variable PRinT V_XC", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 532, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtwant", + "description": "ABINIT variable PRinT WANT file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 533, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtwf", + "description": "ABINIT variable PRinT the WaveFunction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 534, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtwf_full", + "description": "ABINIT variable PRinT Wavefunction file on the FULL mesh", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 535, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_prtxml", + "description": "ABINIT variable PRinT an XML output", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 536, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ptcharge", + "description": "ABINIT variable PoinT CHARGEs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 537, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ptgroupma", + "description": "ABINIT variable PoinT GROUP number for the MAgnetic space group", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 538, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_pvelmax", + "description": "ABINIT variable Particle VELocity MAXimum", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 539, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_qmass", + "description": "ABINIT variable Q thermostat mass", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nnos" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 540, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_qprtrb", + "description": "ABINIT variable Q-wavevector of the PERTurbation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 541, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_qpt", + "description": "ABINIT variable Q PoinT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 542, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_qptdm", + "description": "ABINIT variable Q-PoinTs for the Dielectric Matrix", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nqptdm", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 543, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_qptn", + "description": "ABINIT variable Q-PoinT re-Normalized", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 544, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_qptnrm", + "description": "ABINIT variable Q PoinTs NoRMalization", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 545, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_qptopt", + "description": "ABINIT variable QPoinTs OPTion", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 546, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_qptrlatt", + "description": "ABINIT variable Q - PoinTs grid : Real space LATTice", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 547, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_quadmom", + "description": "ABINIT variable QUADrupole MOMents", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 548, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_random_atpos", + "description": "ABINIT variable RANDOM ATomic POSitions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 549, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ratsph", + "description": "ABINIT variable Radii of the ATomic SPHere(s)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 550, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ratsph_extra", + "description": "ABINIT variable Radii of the ATomic SPHere(s) in the EXTRA set", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 551, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rcut", + "description": "ABINIT variable Radius of the CUT-off for coulomb interaction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 552, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_recefermi", + "description": "ABINIT variable RECursion - initial guess of the FERMI Energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 553, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_recgratio", + "description": "ABINIT variable RECursion - Grid Ratio", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 554, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_recnpath", + "description": "ABINIT variable RECursion - Number of point for PATH integral calculations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 555, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_recnrec", + "description": "ABINIT variable RECursion - Number of RECursions", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 556, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_recptrott", + "description": "ABINIT variable RECursion - TROTTer P parameter", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 557, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_recrcut", + "description": "ABINIT variable RECursion - CUTing Radius", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 558, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rectesteg", + "description": "ABINIT variable RECursion - TEST on Electron Gas", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 559, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rectolden", + "description": "ABINIT variable RECursion - TOLerance on the difference of electronic DENsity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 560, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_red_dfield", + "description": "ABINIT variable REDuced Displacement FIELD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 561, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_red_efield", + "description": "ABINIT variable REDuced Electric FIELD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 562, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_red_efieldbar", + "description": "ABINIT variable REDuced Electric FIELD BAR", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 563, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_restartxf", + "description": "ABINIT variable RESTART from (X,F) history", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 564, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rf2_dkdk", + "description": "ABINIT variable Response Function : 2nd Derivative of wavefunctions with respect\nto K", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 565, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfasr", + "description": "ABINIT variable Response Function : Acoustic Sum Rule", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 566, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfatpol", + "description": "ABINIT variable Response Function : Acoustic Sum Rule", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 567, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfddk", + "description": "ABINIT variable Response Function with respect to Derivative with respect to K", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 568, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfdir", + "description": "ABINIT variable Response Function : DIRections", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 569, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfelfd", + "description": "ABINIT variable Response Function with respect to the ELectric FielD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 570, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfmeth", + "description": "ABINIT variable Response Function METHod", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 571, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfphon", + "description": "ABINIT variable Response Function with respect to PHONons", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 572, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfstrs", + "description": "ABINIT variable Response Function with respect to STRainS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 573, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rfuser", + "description": "ABINIT variable Response Function, USER-defined", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 574, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rhoqpmix", + "description": "ABINIT variable RHO QuasiParticle MIXing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 575, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rprim", + "description": "ABINIT variable Real space PRIMitive translations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 576, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_rprimd", + "description": "ABINIT variable Real space PRIMitive translations, Dimensional", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 577, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_scalecart", + "description": "ABINIT variable SCALE CARTesian coordinates", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 578, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_scphon_supercell", + "description": "ABINIT variable Self Consistent PHONon SUPERCELL", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 579, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_scphon_temp", + "description": "ABINIT variable Self Consistent PHONon TEMPerature", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 580, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_shiftk", + "description": "ABINIT variable SHIFT for K points", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nshiftk", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 581, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_shiftq", + "description": "ABINIT variable SHIFT for Q points", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nshiftq", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 582, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_signperm", + "description": "ABINIT variable SIGN of PERMutation potential", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 583, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_slabwsrad", + "description": "ABINIT variable jellium SLAB Wigner-Seitz RADius", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 584, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_slabzbeg", + "description": "ABINIT variable jellium SLAB BEGinning edge along the Z direction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 585, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_slabzend", + "description": "ABINIT variable jellium SLAB ENDing edge along the Z direction", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 586, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_smdelta", + "description": "ABINIT variable SMeared DELTA function", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 587, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_so_psp", + "description": "ABINIT variable Spin-Orbit treatment for each PSeudoPotential", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_npsp" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 588, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spbroad", + "description": "ABINIT variable SPectral BROADening", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 589, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spgaxor", + "description": "ABINIT variable SPace Group : AXes ORientation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 590, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spgorig", + "description": "ABINIT variable SPace Group : ORIGin", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 591, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spgroup", + "description": "ABINIT variable SPace GROUP number", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 592, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spgroupma", + "description": "ABINIT variable SPace GROUP number defining a MAgnetic space group", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 593, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spinat", + "description": "ABINIT variable SPIN for AToms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "min(x_abinit_var_natom,x_abinit_var_natrd)", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 594, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spinmagntarget", + "description": "ABINIT variable SPIN-MAGNetization TARGET", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 595, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spmeth", + "description": "ABINIT variable SPectral METHod", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 596, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_spnorbscl", + "description": "ABINIT variable SPin-ORBit SCaLing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 597, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_stmbias", + "description": "ABINIT variable Scanning Tunneling Microscopy BIAS voltage", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 598, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_strfact", + "description": "ABINIT variable STRess FACTor", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 599, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_string_algo", + "description": "ABINIT variable STRING method ALGOrithm", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 600, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_strprecon", + "description": "ABINIT variable STRess PRECONditioner", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 601, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_strtarget", + "description": "ABINIT variable STRess TARGET", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 6 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 602, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_symafm", + "description": "ABINIT variable SYMmetries, Anti-FerroMagnetic characteristics", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nsym" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 603, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_symchi", + "description": "ABINIT variable SYMmetryze \\chi_o", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 604, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_symdynmat", + "description": "ABINIT variable SYMmetrize the DYNamical MATrix", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 605, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_symmorphi", + "description": "ABINIT variable SYMMORPHIc symmetry operations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 606, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_symrel", + "description": "ABINIT variable SYMmetry in REaL space", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_nsym", + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 607, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_symsigma", + "description": "ABINIT variable SYMmetrization of SIGMA matrix elements", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 608, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_td_maxene", + "description": "ABINIT variable Time-Dependent dft : MAXimal kohn-sham ENErgy difference", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 609, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_td_mexcit", + "description": "ABINIT variable Time-Dependent dft : Maximal number of EXCITations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 610, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tfkinfunc", + "description": "ABINIT variable Thomas-Fermi KINetic energy FUNCtional", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 611, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tfw_toldfe", + "description": "ABINIT variable Thomas-Fermi-Weizsacker: TOLerance on the DiFference of total\nEnergy, for initialization steps", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 612, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_timopt", + "description": "ABINIT variable TIMing OPTion", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 613, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tl_nprccg", + "description": "ABINIT variable TaiL maximum Number of PReConditionner Conjugate Gradient\niterations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 614, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tl_radius", + "description": "ABINIT variable TaiL expansion RADIUS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 615, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tnons", + "description": "ABINIT variable Translation NON-Symmorphic vectors", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nsym", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 616, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_toldfe", + "description": "ABINIT variable TOLerance on the DiFference of total Energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 617, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_toldff", + "description": "ABINIT variable TOLerance on the DiFference of Forces", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 618, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tolimg", + "description": "ABINIT variable TOLerance on the mean total energy for IMaGes", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 619, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tolmxde", + "description": "ABINIT variable TOLerance on the MaXimal Difference in Energy", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 620, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tolmxf", + "description": "ABINIT variable TOLerance on the MaXimal Force", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 621, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tolrde", + "description": "ABINIT variable TOLerance on the Relative Difference of Eigenenergies", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 622, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tolrff", + "description": "ABINIT variable TOLerance on the Relative diFference of Forces", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 623, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tolsym", + "description": "ABINIT variable TOLERANCE for SYMmetries", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 624, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tolvrs", + "description": "ABINIT variable TOLerance on the potential V(r) ReSidual", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 625, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tolwfr", + "description": "ABINIT variable TOLerance on WaveFunction squared Residual", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 626, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tphysel", + "description": "ABINIT variable Temperature (PHYSical) of the ELectrons", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 627, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_tsmear", + "description": "ABINIT variable Temperature of SMEARing", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 628, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_typat", + "description": "ABINIT variable TYPE of atoms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "min(x_abinit_var_natom,x_abinit_var_natrd)" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 629, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ucrpa", + "description": "ABINIT variable calculation of the screened interaction U with the Constrained RPA\nmethod", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 630, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ucrpa_bands", + "description": "ABINIT variable For the calculation of U with the Constrained RPA method, gives\ncorrelated BANDS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 631, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ucrpa_window", + "description": "ABINIT variable For the calculation of U with the Constrained RPA method, gives\nenergy WINDOW", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 632, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_udtset", + "description": "ABINIT variable Upper limit on DaTa SETs", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 633, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_upawu", + "description": "ABINIT variable value of U for PAW+U", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 634, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_use_gemm_nonlop", + "description": "ABINIT variable USE the GEMM routine for the application of the NON-Local OPerator", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 635, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_use_gpu_cuda", + "description": "ABINIT variable activate USE of GPU accelerators with CUDA (nvidia)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 636, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_use_nonscf_gkk", + "description": "ABINIT variable USE NON-SCF calculation of GKK matrix elements (electron phonon)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 637, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_use_slk", + "description": "ABINIT variable USE ScaLapacK", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 638, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usedmatpu", + "description": "ABINIT variable USE of an initial Density MATrix in Paw+U", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 639, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usedmft", + "description": "ABINIT variable USE Dynamical Mean Field Theory", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 640, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_useexexch", + "description": "ABINIT variable USE of EXact EXCHange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 641, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usefock", + "description": "ABINIT variable USE FOCK exact exchange", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 642, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usekden", + "description": "ABINIT variable USE Kinetic energy DENsity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 643, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usepaw", + "description": "ABINIT variable USE Projector Augmented Waves method", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 644, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usepawu", + "description": "ABINIT variable USE PAW+U (spherical part)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 645, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usepotzero", + "description": "ABINIT variable USE POTential ZERO", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 646, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userec", + "description": "ABINIT variable USE RECursion", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 647, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_useria", + "description": "ABINIT variable USER Integer variable A", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 648, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userib", + "description": "ABINIT variable USER Integer variable B", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 649, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_useric", + "description": "ABINIT variable USER Integer variable C", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 650, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userid", + "description": "ABINIT variable USER Integer variable D", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 651, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userie", + "description": "ABINIT variable USER Integer variable E", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 652, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userra", + "description": "ABINIT variable USER Real variable A", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 653, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userrb", + "description": "ABINIT variable USER Real variable B", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 654, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userrc", + "description": "ABINIT variable USER Real variable C", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 655, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userrd", + "description": "ABINIT variable USER Real variable D", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 656, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_userre", + "description": "ABINIT variable USER Real variable E", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 657, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usewvl", + "description": "ABINIT variable Use WaVeLet basis set", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 658, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_usexcnhat", + "description": "ABINIT variable USE eXchange-Correlation with NHAT (compensation charge density)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 659, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_useylm", + "description": "ABINIT variable USE YLM (the spherical harmonics)", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 660, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vaclst", + "description": "ABINIT variable VACancies LiST", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_vacnum" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 661, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vacnum", + "description": "ABINIT variable VACancies NUMber", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 662, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vacuum", + "description": "ABINIT variable VACUUM identification", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 663, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vacwidth", + "description": "ABINIT variable VACuum WIDTH", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 664, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vcutgeo", + "description": "ABINIT variable V (potential) CUT-off GEOmetry", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 665, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_acutmin", + "description": "ABINIT variable vdW-DF MINimum Angular CUT-off", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 666, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_aratio", + "description": "ABINIT variable vdW-DF RATIO between the highest andlowest Angle.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 667, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_damax", + "description": "ABINIT variable vdW-DF MAXimum Angular Delta", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 668, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_damin", + "description": "ABINIT variable vdW-DF MINimum Angular Delta", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 669, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_dcut", + "description": "ABINIT variable vdW-DF D-mesh CUT-off", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 670, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_dratio", + "description": "ABINIT variable vdW-DF RATIO between the highest andlowest D.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 671, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_dsoft", + "description": "ABINIT variable vdW-DF SOFTening distance.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 672, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_gcut", + "description": "ABINIT variable vdW-DF K-space CUT-off", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 673, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_ndpts", + "description": "ABINIT variable vdW-DF Number of D-mesh PoinTS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 674, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_ngpts", + "description": "ABINIT variable vdW-DF Number of G-mesh PoinTS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 675, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_nqpts", + "description": "ABINIT variable vdW-DF Number of Q-mesh PoinTS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 676, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_nrpts", + "description": "ABINIT variable vdW-DF Number of R-PoinTS", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 677, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_nsmooth", + "description": "ABINIT variable vdW-DF Number of SMOOTHening iterations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 678, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_phisoft", + "description": "ABINIT variable vdW-DF SOFTening PHI value.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 679, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_qcut", + "description": "ABINIT variable vdW-DF Q-mesh CUT-off", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 680, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_qratio", + "description": "ABINIT variable vdW-DF RATIO between highest andlowest Q", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 681, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_rcut", + "description": "ABINIT variable vdW-DF Real-space CUT-off", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 682, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_rsoft", + "description": "ABINIT variable vdW-DF SOFTening radius.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 683, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_threshold", + "description": "ABINIT variable vdW-DF energy calculation threshold", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 684, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_tolerance", + "description": "ABINIT variable vdW-DF global TOLERANCE.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 685, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_tweaks", + "description": "ABINIT variable vdW-DF tweaks.", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 686, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_df_zab", + "description": "ABINIT variable vdW-DF Zab parameter", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 687, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_nfrag", + "description": "ABINIT variable van der Waals Number of interacting FRAGments", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 688, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_supercell", + "description": "ABINIT variable Van Der Waals correction from Wannier functions in SUPERCELL", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 689, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_tol", + "description": "ABINIT variable van der Waals TOLerance", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 690, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_tol_3bt", + "description": "ABINIT variable van der Waals TOLerance for 3-Body Term", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 691, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_typfrag", + "description": "ABINIT variable van der Waals TYPe of FRAGment", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + "x_abinit_var_natom" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 692, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vdw_xc", + "description": "ABINIT variable van der Waals eXchange-Correlation functional", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 693, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vel", + "description": "ABINIT variable VELocity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_natom", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 694, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vel_cell", + "description": "ABINIT variable VELocity of the CELL parameters", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 695, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vis", + "description": "ABINIT variable VIScosity", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 696, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_vprtrb", + "description": "ABINIT variable potential -V- for the PeRTuRBation", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 2 + ], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 697, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_w90iniprj", + "description": "ABINIT variable Wannier90- INItial PROJections", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 698, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_w90prtunk", + "description": "ABINIT variable Wannier90- PRINT UNKp.s file", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 699, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wfoptalg", + "description": "ABINIT variable WaveFunction OPTimisation ALGorithm", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 700, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wtatcon", + "description": "ABINIT variable WeighTs for AToms in CONstraint equations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nconeq", + "x_abinit_var_natcon", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 701, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wtk", + "description": "ABINIT variable WeighTs for K points", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_nkpt" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 702, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wtq", + "description": "ABINIT variable WeighTs for the current Q-points", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 703, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wvl_bigdft_comp", + "description": "ABINIT variable WaVeLet BigDFT Comparison", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 704, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wvl_crmult", + "description": "ABINIT variable WaVeLet Coarse grid Radius MULTiplier", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 705, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wvl_frmult", + "description": "ABINIT variable WaVeLet Fine grid Radius MULTiplier", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 706, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wvl_hgrid", + "description": "ABINIT variable WaVeLet H step GRID", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 707, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wvl_ngauss", + "description": "ABINIT variable WaVeLet Number of GAUSSians", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [ + 2 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 708, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_wvl_nprccg", + "description": "ABINIT variable WaVeLet maximum Number of PReConditionner Conjugate Gradient\niterations", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 709, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_xangst", + "description": "ABINIT variable vectors (X) of atom positions in cartesian coordinates -length in\nANGSTrom-", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "min(x_abinit_var_natom,x_abinit_var_natrd)", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 710, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_xc_denpos", + "description": "ABINIT variable eXchange-Correlation - DENsity POSitivity value", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 711, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_xc_tb09_c", + "description": "ABINIT variable Value of the c parameter in the eXchange-Correlation TB09\nfunctional", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 712, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_xcart", + "description": "ABINIT variable vectors (X) of atom positions in CARTesian coordinates", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "min(x_abinit_var_natom,x_abinit_var_natrd)", + 3 + ], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 713, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_xclevel", + "description": "ABINIT variable eXchange Correlation functional level", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 714, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_xred", + "description": "ABINIT variable vectors (X) of atom positions in REDuced coordinates", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "min(x_abinit_var_natom,x_abinit_var_natrd)", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 715, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_xredsph_extra", + "description": "ABINIT variable X(position) in REDuced coordinates of the SPHeres for dos\nprojection in the EXTRA set", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_natsph_extra", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 716, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_xyzfile", + "description": "ABINIT variable XYZ FILE input for geometry", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 717, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_zcut", + "description": "ABINIT variable Z-CUT", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "hartree" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 718, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_zeemanfield", + "description": "ABINIT variable ZEEMAN FIELD", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 719, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_ziontypat", + "description": "ABINIT variable Z (charge) of the IONs for the different TYPes of AToms", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_ntypat" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 720, + "m_parent_sub_section": "quantities", + "name": "x_abinit_var_znucl", + "description": "ABINIT variable charge -Z- of the NUCLeus", + "categories": [ + "/packages/25/category_definitions/0" + ], + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_abinit_var_npsp" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "x_abinit_section_dataset", + "description": "-", + "extending_sections": [ + "/packages/24/section_definitions/7" + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_abinit_section_input", + "sub_section": "/packages/25/section_definitions/0", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Run", + "base_sections": [ + "/packages/3/section_definitions/3" + ], + "extends_base_section": true, + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_abinit_section_dataset", + "sub_section": "/packages/25/section_definitions/1", + "repeats": true + } + ] + } + ], + "category_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Category", + "m_parent_index": 0, + "m_parent_sub_section": "category_definitions", + "name": "x_abinit_var", + "description": "section describing the ABINIT variables" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 26, + "m_parent_sub_section": "packages", + "name": "electronicparsers.ams.metainfo.ams", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "BandEnergies", + "base_sections": [ + "/packages/2/section_definitions/13" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_ams_energy_min", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_ams_energy_max", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_bands" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_ams_occupancies", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_spin_channels", + "n_bands" + ], + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "Energy", + "base_sections": [ + "/packages/2/section_definitions/5" + ], + "extends_base_section": true, + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_dispersion", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_fit_error_correction", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_v_atomic_def", + "sub_section": "/packages/2/section_definitions/4" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_v_def_def", + "sub_section": "/packages/2/section_definitions/4" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "Forces", + "base_sections": [ + "/packages/2/section_definitions/7" + ], + "extends_base_section": true, + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_p_matrix", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_electronic_kinetic", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_xc", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_electrostatic", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_pair_interactions", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_dispersion", + "sub_section": "/packages/2/section_definitions/6" + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_ams_nuclear_repulsion", + "sub_section": "/packages/2/section_definitions/6" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "GeometryOptimization", + "base_sections": [ + "/packages/22/section_definitions/9" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_ams_optimization_coordinates", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_ams_optimize_lattice", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_ams_maximum_rms_gradient", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_ams_maximum_rms_step_allowed", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_ams_maximum_stress_energy_allowed", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_ams_initial_model_hessian", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_ams_hessian_update_method", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_ams_first_gdiis_cycle", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_ams_maximum_gdiis_vectors", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_ams_trust_radius", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "atomic_unit_of_length" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_ams_trust_radius_varies", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_ams_constraints_converged_at_all_steps", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_ams_symmetrize_steps", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_ams_use_projector", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "Method", + "base_sections": [ + "/packages/0/section_definitions/23" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_ams_dftb_resources_dir", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_ams_scc_convergence_enabled", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_ams_max_scc_cycles", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_ams_scc_charge_convergence", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_ams_scc_charge_mixing", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_ams_diis_max_dimension", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_ams_diis_max_coeff", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_ams_adaptive_scc_charge_mixing", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_ams_adaptive_scc_mixing_strategy", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_ams_spin_polarization", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_ams_orbital_dependent_scc", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_ams_orbital_fill_strategy", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_ams_fermi_temperature", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_ams_use_symmetry", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_ams_radial_function_extrapolation_method", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_ams_grimme_d3_dispersion_correction", + "description": "", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_ams_other_parameters", + "description": "", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_ams_assume_insulator", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_ams_ewald_tolerance", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_ams_ewald_range_factor", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_ams_nuclear_charge_density_model", + "description": "", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_ams_bzstruct_config", + "description": "", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_ams_run_config", + "description": "", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "BasisSet", + "base_sections": [ + "/packages/0/section_definitions/8" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_ams_basis_functions_confinement_radius", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_ams_basis_functions_confinement_width", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "AtomParameters", + "base_sections": [ + "/packages/0/section_definitions/3" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_ams_radial_points", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_ams_nuclear_charge", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_ams_n_radial_core_functions", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_ams_orbital_energies", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_orbitals" + ], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_ams_orbital_radii", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "n_orbitals" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_ams_energy_sum_eigenvalues", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_ams_energy_total_lda", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_ams_energy_kinetic", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_ams_energy_classical_electron_electron_repulsion", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_ams_energy_electron_nucleus_repulsion", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_ams_n_radial_valence_orbitals", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_ams_n_radial_core_orbitals", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_ams_n_radial_fit_functions", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_ams_cutoff_valence", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_ams_cutoff_core", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_ams_cutoff_valence_kinetic", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_ams_cutoff_core_kinetic", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "Scf", + "base_sections": [ + "/packages/0/section_definitions/1" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_ams_diis_settings_dirac", + "description": "", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_ams_diis_settings_scf", + "description": "", + "type": { + "type_kind": "custom", + "type_data": "nomad.metainfo.metainfo._JSON" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_ams_growth_factor", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_ams_shrink_factor", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_ams_mix", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_ams_degenerate", + "description": "", + "type": { + "type_kind": "python", + "type_data": "bool" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_ams_edegen", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_ams_scfrtx", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_ams_convrg", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_ams_ncyclx", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_ams_vsplit", + "description": "", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 27, + "m_parent_sub_section": "packages", + "name": "electronicparsers.castep.metainfo.castep", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_vibrational_frequencies", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_number_vibrational_frequencies", + "description": "Number of vibration frequenices", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_vibrational_frequencies", + "description": "Vibration Frequenices (cm-1)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_castep_number_vibrational_frequencies" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_vibrationl_frequencies_store", + "description": "Vibration Frequenices (cm-1)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_ir_store", + "description": "Irreducible representation in the Point Group", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_ir", + "description": "Irreducible representation in the Point Group", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "x_castep_number_vibrational_frequencies" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_raman_activity", + "description": "Raman activity (A**4/amu)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_castep_number_vibrational_frequencies" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_raman_active", + "description": "Raman activity (A**4/amu)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "x_castep_number_vibrational_frequencies" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_n_iterations_phonons", + "description": "Number of iterations in phonons", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_raman_activity_store", + "description": "Raman activity (A**4/amu)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_ir_intensity", + "description": "IR intensities (D/A)**2/amu", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "x_castep_number_vibrational_frequencies" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_castep_ir_intensity_store", + "description": "IR intensities (D/A)**2/amu", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_band_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_band_n_bands", + "description": "x_castep_band_n_bands", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_band_conv_tolerance", + "description": "x_castep_band_conv_tolerance", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_band_n_iterations", + "description": "x_castep_band_n_iterations", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_band_max_cg", + "description": "x_castep_band_max_cg", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_core_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_core_spectra_n_bands", + "description": "x_castep_core_spectra_n_bands", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_core_spectra_conv_tolerance", + "description": "x_castep_core_spectra_conv_tolerance", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts_scf_iteration", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_scf_ts_iteration_energy", + "description": "SCF_ts_energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_scf_ts_iteration_energy_change", + "description": "SCF_ts_energy change", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_scf_ts_time", + "description": "SCF_ts_energy time", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_tddft", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_iteration", + "description": "Iteration number", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_wall_time", + "description": "Iteration wall time (s)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_state_number", + "description": "state number", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_state_energy", + "description": "state energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_state_energy_error", + "description": "state energy error", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_calculation_time", + "description": "calculation time", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_atom_ionic_velocities", + "description": "-" + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_atom_positions_optim", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_angle_alpha_optim", + "description": "Simulation cell angle alpha", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_angle_beta_optim", + "description": "Simulation cell angle beta", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_angle_gamma_optim", + "description": "Simulation cell angle gamma", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_length_a_optim", + "description": "a unit cell edge length", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_length_b_optim", + "description": "b unit cell edge length", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_length_c_optim", + "description": "c unit cell edge length", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_atom_positions", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_angle_alpha", + "description": "Simulation cell angle alpha", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_angle_beta", + "description": "Simulation cell angle beta", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_angle_gamma", + "description": "Simulation cell angle gamma", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_length_a", + "description": "a unit cell edge length", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_length_b", + "description": "b unit cell edge length", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_length_c", + "description": "c unit cell edge length", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_cell_optim", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_vector_optim", + "description": "Temporay storage for cell vectors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_cell", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_vector", + "description": "Temporay storage for cell vectors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_collect_scf_eigenvalues", + "description": "-" + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_eigenvalues_1", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_eigenvalues_1", + "description": "Temporary storing eigenvalues", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_eigenvalues", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_eigenvalues", + "description": "Temporary storing eigenvalues", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_functional_definition", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_functional_type", + "description": "XC functional definition in CASTEP convention", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_functional_weight", + "description": "XC functional weight in CASTEP convention", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_functionals", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_functional_name", + "description": "XC functional in CASTEP convention", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_population_analysis", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_mulliken_atom_index", + "description": "Mulliken_atom_index", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_mulliken_atom", + "description": "Mulliken_atom kind", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_orbital_contributions", + "description": "Mulliken_contributions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_orbital_s", + "description": "Mulliken_contribution_orbital s", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_orbital_p", + "description": "Mulliken_contribution_orbital p", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_orbital_d", + "description": "Mulliken_contribution_orbital d", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_orbital_f", + "description": "Mulliken_contribution_orbital f", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_total_orbital", + "description": "Mulliken_total_contribution", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_mulliken_charge_store", + "description": "Mulliken_charges", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_mulliken_charge", + "description": "Mulliken_charges", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms" + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_geom_optimisation_method", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_geometry_optim_method", + "description": "Determines optimisation method used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_optics_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_optics_n_bands", + "description": "optics_number_of_bands", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_optics_tolerance", + "description": "optics_band_convergence_tolerance", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_tddft_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_n_excited_states", + "description": "number of excited states", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_n_states_forces", + "description": "number of states for forces", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_state_tolerance", + "description": "tolerance (eV)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_state_tolerance_window", + "description": "tolerance window iterations", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_max_iter", + "description": "max number iterations", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_extra_states", + "description": "number of extra states", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_functional", + "description": "tddft functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_method", + "description": "tddft method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_eigenmethod", + "description": "tddft eigenmethod", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_approximation", + "description": "tddft approximation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_castep_tddft_position_op", + "description": "tddft position operator", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_phonons", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_phonon_method", + "description": "Phonon calculation method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_DFPT_solver_method", + "description": "Phonon DFPT solver method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_phonon_tolerance", + "description": "Phonon calculation tolerance (eV/A**2)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_phonon_cycles", + "description": "Phonon calculation cycles", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_band_tolerance", + "description": "Phonon band convergence tolerance window", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_density_mixing_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_density_mixing_scheme", + "description": "density_mixing_scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_density_mixing_length", + "description": "density_mixing_scheme_length", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_charge_density_mixing_amplitude", + "description": "charge_density_mixing_amplitude", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_cut_off_energy_for_mixing", + "description": "charge_density_mixing_cut_off_energy_for_mixing (A)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_population_analysis_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_population_analysis_cutoff", + "description": "Population_analysis_cutoff_(A)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts_scf", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_scf_ts_total", + "description": "SCF_ts_energy Total", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_scf_ts_total_energy_free", + "description": "SCF_ts_energy Total free", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_scf_ts_T0", + "description": "SCF_ts_energy T0 free", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts_scf_iteration", + "sub_section": "/packages/27/section_definitions/3", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_k_band", + "description": "-" + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 24, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_k_points_1", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_k_points_1", + "description": "Temporary storing k points coordinates (fractional)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 25, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_k_points", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_k_points", + "description": "Temporary storing k points coordinates (fractional)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 26, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_relativity_treatment", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_relativity_treatment_scf", + "description": "Relativity treatment in CASTEP convention", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 27, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_scf_eigenvalues", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_scf_eigenvalues", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 28, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_SCF_iteration_frame", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_frame_time", + "description": "CASTEP_store_t_md_frame", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_SCF_frame_energy", + "description": "energy_frame_iterations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_SCF_frame_energy_gain", + "description": "energy_frame_iterations_gain", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_frame_time_scf_iteration_wall_end", + "description": "energy_frame_wall_end_time", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_frame_energy_free", + "description": "energy_free", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_frame_energy_total_T0", + "description": "energy_free_corrected_for_finite_basis", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 29, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_scf_k_points", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_scf_k_points", + "description": "-", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_scf_eigenvalues", + "sub_section": "/packages/27/section_definitions/27", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 30, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_spin_number", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_spin_number", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 31, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_stress_tensor", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_stress_tensor", + "description": "Temporary storing stress tensor components", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 32, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_time", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_calculation_time", + "description": "castep_calculation_time", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_finalisation_time", + "description": "castep_finalisation_time", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_initialisation_time", + "description": "x_castep_Initialisation_time", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 33, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_raman_tensor", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_raman_tensor", + "description": "Temporary storing converged Raman susceptibility tensor", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_raman_tensor", + "description": "Ramen tensor", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ], + "unit": "angstrom / unified_atomic_mass_unit" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 34, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_scf_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_energy_threshold", + "description": "Energy Threshold", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_max_iter", + "description": "Number of maximum iterations steps", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_smearing_kind", + "description": "Smearing kind", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_smearing_width", + "description": "Smearing width", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 35, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_electronic_spectroscpy_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_theory_level", + "description": "Electronic spectroscopy parameters theory level", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_spectroscopy_calculation", + "description": "Electronic spectroscopy parameters calculation type", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_spec_max_iter", + "description": "Max number of iterations", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_spec_max_steps", + "description": "Max number of steps", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_spec_max_bands", + "description": "Max number of bands", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_spec_tolerance", + "description": "Tolerance (eV)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 36, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_md", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_energies", + "description": "md_energy_components", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_temperature", + "description": "md_temp(K)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_pressure", + "description": "md_pressure", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_cell_vectors", + "description": "md_cell_vectors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_cell_vectors_vel", + "description": "md_cell_vectors_velocities", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_stress_tensor", + "description": "md_stress_tensor", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_positions", + "description": "md_positions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_forces", + "description": "md_forces", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_lab", + "description": "md_lables", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_md_veloc", + "description": "md_veloc", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 37, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_energy_total", + "description": "ts_energy_components_total", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_cell_vectors", + "description": "ts_cell_vectors", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_positions", + "description": "ts_positions", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_forces", + "description": "ts_forces", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_lab", + "description": "ts_lables", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 38, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts_store", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_energy", + "description": "ts_energy_components_ts_store", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_cell_vectors_store", + "description": "ts_cell_vectors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_positions_store", + "description": "ts_positions_store", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_forces_store", + "description": "ts_forces_store", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 39, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts_final_store", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_energy_final_store", + "description": "ts_energy_components_ts", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_forces_final_store", + "description": "ts_forces_final", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_positions_final_store", + "description": "ts_energy_positions_final", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_cell_vectors_final_store", + "description": "ts_cell_vectors_final", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 40, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts_final", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_energy_final", + "description": "ts_energy_final", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_cell_vectors_final", + "description": "ts_cell_vectors", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_positions_final", + "description": "ts_positions_final", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_forces_final", + "description": "ts_force_finals", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 41, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts_product", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_energy_product", + "description": "ts_energy_prod", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_forces_product", + "description": "ts_energy_forces_pro", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_positions_product", + "description": "ts_energy_positions_pro", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_cell_vectors_product", + "description": "ts_product_cell_vectors", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 42, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts_product_store", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_energy_product_store", + "description": "ts_energy_components_pro", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_forces_pro_store", + "description": "ts_energy_forces_pro_store", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_positions_pro_store", + "description": "ts_energy_positions_pro_store", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_cell_vectors_pro_store", + "description": "ts_cell_vectors_pro", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 43, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_ts_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_method", + "description": "ts_method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_protocol", + "description": "ts_protocol", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_number_qst", + "description": "ts_qst_iterations", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_number_cg", + "description": "ts_number_of_cg_iterations", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_force_tolerance", + "description": "ts_force_tolerance (eV/A)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_displacement_tolerance", + "description": "ts_displacement_tolerance (A)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 44, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_DFT_SEDC", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_correction_energy", + "description": "correlation energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_de_atom", + "description": "dE/atom", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_dfmax_atom", + "description": "dfmax/atom", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_structure_energy_corr", + "description": "structure energy correction", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_PBC_image_inter_corr", + "description": "PBC image interaction corr.", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_total_energy_correction", + "description": "total energy correction", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_total_fmax_correction", + "description": "correction F max ev/A", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_shell", + "description": "shell", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_total_dispersion_corrected_free_energy", + "description": "total_dispersion_corrected_free_energy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_disp_corrected_energy_total_T0", + "description": "dispersion corrected zero point", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 45, + "m_parent_sub_section": "section_definitions", + "name": "x_castep_section_van_der_Waals_parameters", + "description": "-", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_disp_method_name", + "description": "Name type", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_Parameter_d", + "description": "Parameter for dispersion method G06", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_Parameter_LAMBDA", + "description": "Parameter for dispersion method OBS", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_Parameter_n", + "description": "Parameter for dispersion method OBS", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_Parameter_s6", + "description": "Parameter for dispersion method G06", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_Parameter_sR", + "description": "Parameter for dispersion method TS", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 46, + "m_parent_sub_section": "section_definitions", + "name": "Run", + "base_sections": [ + "/packages/3/section_definitions/3" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_atom_forces", + "description": "Forces on the atoms as minus gradient of energy_total, including forces' unitary-\ntransformation (rigid body) filtering and including constraints, if present. The\nderivatives with respect to displacements of the nuclei in the gradient are\nevaluated according to the coordinate system defined in coordinate_system. In\naddition, these forces are obtained by filtering out the unitary transformations\n(translations of the center of mass and rigid rotations of the whole system, when\nnon periodic), atom_forces_raw for the unfiltered counterpart. Furthermore, forces\ndue to constraints like fixed atoms, distances, angles, dihedrals, and so on, are\nhere included (see atom_forces_raw for the unfiltered counterpart).", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_basis_set_planewave_cutoff_iteration_0", + "description": "cutoff at iteration 0 of geometry optimisation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_compiler", + "description": "Compiler name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_constants_reference", + "description": "Fundamental constant data source", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_fft_library", + "description": "fft library name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_geom_converged", + "description": "CASTEP_geom_converged", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_maths_library", + "description": "Maths library name", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_program_compilation_date", + "description": "Compilation date (string)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_program_compilation_time", + "description": "Compilation time (string)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_program_execution_date", + "description": "Run execution date (string)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_castep_program_execution_time", + "description": "Run execution start time (string)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_castep_crystal_point_group", + "description": "Point group of the crystal (Schoenflies notation)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_castep_space_group", + "description": "Point space of the crystal", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_path", + "description": "ts_path_number", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_path_ts_final", + "description": "ts_path_final", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_castep_ts_path_product", + "description": "ts_path_pro", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_atom_forces_band", + "description": "Temporary storing converged atom forces (ev/A)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_castep_elec_methd", + "description": "Temporary storing electronic structure method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_vibrational_frequencies", + "sub_section": "/packages/27/section_definitions/0", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_band_parameters", + "sub_section": "/packages/27/section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_core_parameters", + "sub_section": "/packages/27/section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_collect_scf_eigenvalues", + "sub_section": "/packages/27/section_definitions/10", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_population_analysis", + "sub_section": "/packages/27/section_definitions/15", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_geom_optimisation_method", + "sub_section": "/packages/27/section_definitions/16", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_optics_parameters", + "sub_section": "/packages/27/section_definitions/17", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_tddft_parameters", + "sub_section": "/packages/27/section_definitions/18", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_phonons", + "sub_section": "/packages/27/section_definitions/19", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_density_mixing_parameters", + "sub_section": "/packages/27/section_definitions/20", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_population_analysis_parameters", + "sub_section": "/packages/27/section_definitions/21", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_SCF_iteration_frame", + "sub_section": "/packages/27/section_definitions/28", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_time", + "sub_section": "/packages/27/section_definitions/32", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_raman_tensor", + "sub_section": "/packages/27/section_definitions/33", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_scf_parameters", + "sub_section": "/packages/27/section_definitions/34", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_electronic_spectroscpy_parameters", + "sub_section": "/packages/27/section_definitions/35", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_md", + "sub_section": "/packages/27/section_definitions/36", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts", + "sub_section": "/packages/27/section_definitions/37", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts_store", + "sub_section": "/packages/27/section_definitions/38", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts_final_store", + "sub_section": "/packages/27/section_definitions/39", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 20, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts_final", + "sub_section": "/packages/27/section_definitions/40", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 21, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts_product", + "sub_section": "/packages/27/section_definitions/41", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 22, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts_product_store", + "sub_section": "/packages/27/section_definitions/42", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 23, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts_parameters", + "sub_section": "/packages/27/section_definitions/43", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 24, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_van_der_Waals_parameters", + "sub_section": "/packages/27/section_definitions/45", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 47, + "m_parent_sub_section": "section_definitions", + "name": "System", + "base_sections": [ + "/packages/1/section_definitions/6" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_net_charge", + "description": "Net charge of system", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_number_of_bands", + "description": "Number of bands", + "type": { + "type_kind": "numpy", + "type_data": "int32" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_number_of_electrons", + "description": "Number of electrons", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_atom_positions", + "description": "Storing atomic positions in fractional coordinates", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_cell_volume", + "description": "CASTEP_cell_volume", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_optimised_atom_labels", + "description": "Temporary storing atomic positions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [ + "number_of_atoms" + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_optimised_atom_positions", + "description": "Storing atomic optimised positions in fractional coordinates", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_velocities_cell_vector", + "description": "cell vector velocities", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + 3, + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_atom_labels", + "description": "Temporary storing atom labels", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_atom_number", + "description": "Temporary storing atom labels", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_atom_positions", + "description": "Temporary storing atomic positions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_atom_ionic_velocities", + "description": "Temporary storing atomic positions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_castep_atom_ionic_velocities", + "description": "Temporary storing atomic positions", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + "number_of_atoms", + 3 + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_optimised_atom_labels", + "description": "Temporary storing atomic positions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_optimised_atom_positions", + "description": "Temporary storing atomic positions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_tddft", + "sub_section": "/packages/27/section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_atom_ionic_velocities", + "sub_section": "/packages/27/section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_atom_positions_optim", + "sub_section": "/packages/27/section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_atom_positions", + "sub_section": "/packages/27/section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_cell_optim", + "sub_section": "/packages/27/section_definitions/8", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_cell", + "sub_section": "/packages/27/section_definitions/9", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 48, + "m_parent_sub_section": "section_definitions", + "name": "BasisSetCellDependent", + "base_sections": [ + "/packages/0/section_definitions/7" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_basis_set_planewave_cutoff", + "description": "Temporary storing plane wave cutoff as string", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_size_std_grid", + "description": "size of standard grid (eV)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_size_fine_grid", + "description": "sise of fine grid (1/A)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 49, + "m_parent_sub_section": "section_definitions", + "name": "Calculation", + "base_sections": [ + "/packages/2/section_definitions/34" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_enthalpy", + "description": "CASTEP_Enthalpy", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_frequency", + "description": "CASTEP_frequency (cm-1)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_improved_energy_total", + "description": "md_forces", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_frame_time_0", + "description": "CASTEP_store_t_md_frame", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_geom_iteration_index", + "description": "Index for number of iterations in geometry optimisation", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_atom_forces", + "description": "Temporary storing converged atom forces (ev/A)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_initial_scf_iteration_wall_time", + "description": "Initial SCF iteration wall time", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_total_dispersion_corrected_energy", + "description": "Total electronic energy that includes dispersion energy computed with\nDisp_method_name not corrected for finite basis-set", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_total_energy_corrected_for_finite_basis", + "description": "CASTEP_total_energy_corrected_for_finite_basis", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_total_energy_corrected_for_finite_basis_store", + "description": "CASTEP_total_energy_corrected_for_finite_basis_store", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "energy_total_scf_iteration_list", + "description": "Total electronic energy calculated with XC_method_scf during the scf iterations is\nstored in a list", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [ + -1 + ] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_ts_scf", + "sub_section": "/packages/27/section_definitions/22", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_scf_k_points", + "sub_section": "/packages/27/section_definitions/29", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_spin_number", + "sub_section": "/packages/27/section_definitions/30", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_stress_tensor", + "sub_section": "/packages/27/section_definitions/31", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_DFT_SEDC", + "sub_section": "/packages/27/section_definitions/44", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 50, + "m_parent_sub_section": "section_definitions", + "name": "Method", + "base_sections": [ + "/packages/0/section_definitions/23" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_functional_and_weight", + "description": "XC functional+weight in CASTEP convention", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_functional_definition", + "sub_section": "/packages/27/section_definitions/13", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_functionals", + "sub_section": "/packages/27/section_definitions/14", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_relativity_treatment", + "sub_section": "/packages/27/section_definitions/26", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 51, + "m_parent_sub_section": "section_definitions", + "name": "MolecularDynamics", + "base_sections": [ + "/packages/22/section_definitions/20" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_thermostat_target_temperature", + "description": "thermostat_target_temperature(K)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "kelvin" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_barostat_type", + "description": "barostat_type", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_thermostat_type", + "description": "thermostat_type", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_castep_thermostat_tau", + "description": "thermostat_type", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_castep_barostat_tau", + "description": "barostat_tau", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_castep_integrator_dt", + "description": "MD_time_step (ps)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "second" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_castep_number_of_steps_requested", + "description": "MD_time_step_number", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_castep_frame_pressure", + "description": "MD_pressure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_castep_frame_energy_tolerance", + "description": "MD_scf_energy tolerance (eV)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_castep_frame_eigen_tolerance", + "description": "MD_scf_eigen tolerance (eV)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "joule" + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 52, + "m_parent_sub_section": "section_definitions", + "name": "GeometryOptimization", + "base_sections": [ + "/packages/22/section_definitions/9" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_geometry_stress_com_tolerance", + "description": "tolerance for stress components in geometry optimisation (GPa)", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [], + "unit": "pascal" + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_max_number_of_steps", + "description": "Number_of iterations geom_optim", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 53, + "m_parent_sub_section": "section_definitions", + "name": "BandStructure", + "base_sections": [ + "/packages/2/section_definitions/14" + ], + "extends_base_section": true, + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_castep_k_path", + "description": "-", + "type": { + "type_kind": "numpy", + "type_data": "float64" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_k_path", + "description": "-", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_castep_store_k_label", + "description": "-", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_eigenvalues_1", + "sub_section": "/packages/27/section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_eigenvalues", + "sub_section": "/packages/27/section_definitions/12", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_k_band", + "sub_section": "/packages/27/section_definitions/23", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_k_points_1", + "sub_section": "/packages/27/section_definitions/24", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_castep_section_k_points", + "sub_section": "/packages/27/section_definitions/25", + "repeats": true + } + ] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Package", + "m_parent_index": 28, + "m_parent_sub_section": "packages", + "name": "electronicparsers.cp2k.metainfo.cp2k", + "section_definitions": [ + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 0, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_AE_BASIS_BASIS", + "description": "Section used to specify a general basis set for QM calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_BASIS_DEFAULT_KEYWORD", + "description": "CP2K Basis Set Standard Format", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 1, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_AE_BASIS", + "description": "Section of basis set information for all-electron calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_BASIS_SET_FILE_NAME", + "description": "Name of the basis set file, may include a path", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_BASIS_SET", + "description": "The contracted Gaussian basis set", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_BASIS_TYPE", + "description": "Basis set type", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_D_EXPONENTS", + "description": "Exponents for d functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_D_QUANTUM_NUMBERS", + "description": "Main quantum numbers for d functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_EPS_EIGENVALUE", + "description": "Cutoff of overlap matrix eigenvalues included into basis", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_F_EXPONENTS", + "description": "Exponents for f functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_F_QUANTUM_NUMBERS", + "description": "Main quantum numbers for f functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_GEO_START_VALUE", + "description": "Geometrical basis: starting value a in a*C^k", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_GEOMETRICAL_FACTOR", + "description": "Geometrical basis: factor C in a*C^k", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_GRID_POINTS", + "description": "Number of radial grid points", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_NUM_GTO", + "description": "Number of Gaussian type functions for s, p, d, ...", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_NUM_SLATER", + "description": "Number of Slater type functions for s, p, d, ...", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_P_EXPONENTS", + "description": "Exponents for p functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_P_QUANTUM_NUMBERS", + "description": "Main quantum numbers for p functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_QUADRATURE", + "description": "Algorithm to construct the atomic radial grids", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_S_EXPONENTS", + "description": "Exponents for s functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_S_QUANTUM_NUMBERS", + "description": "Main quantum numbers for s functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_AE_BASIS_START_INDEX", + "description": "Starting index for Geometrical Basis sets", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_AE_BASIS_BASIS", + "sub_section": "/packages/28/section_definitions/0", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 2, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_EXTERNAL_VXC", + "description": "Section used to specify exernal VXC Potentials.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_EXTERNAL_VXC_FILE_VXC", + "description": "Specifies the filename containing the external vxc", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_EXTERNAL_VXC_GRID_TOL", + "description": "Tolerance in the equivalence of read-grid in ZMP method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 3, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_ADIABATIC_RESCALING", + "description": "Parameters for self interation corrected hybrid functionals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_ADIABATIC_RESCALING_FUNCTIONAL_MODEL", + "description": "Which model for the coupling constant integration should be used.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_ADIABATIC_RESCALING_FUNCTIONAL_TYPE", + "description": "Which Hybrid functional should be used. (Has to be consistent with the definitions\nin XC and HF).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_ADIABATIC_RESCALING_LAMBDA", + "description": "The point to be used along the adiabatic curve (0 < \u03bb < 1)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_ADIABATIC_RESCALING_OMEGA", + "description": "Long-range parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 4, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_HF_INFO", + "description": "Controls the printing basic info about hf method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_HF_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_HF_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_HF_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_HF_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_HF_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 5, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_HFX_RI", + "description": "All parameters needed in a HFX RI calculation", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_HFX_RI_EPS_OPTIMIZATION", + "description": "Accuracy of iterative RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_HFX_RI_EPS_SCREENING", + "description": "Accuracy of geminal integral evaluation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_HFX_RI_MAX_ITER", + "description": "Maximum number of iteration in RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 6, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL", + "description": "Sets up interaction potential if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL_CUTOFF_RADIUS", + "description": "Determines cutoff radius for the truncated 1/r potential. Only valid when doing\ntruncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL_OMEGA", + "description": "Parameter for short/longrange interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, longrange or shortrange).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL_SCALE_COULOMB", + "description": "Scales Hartree-Fock contribution arising from a coulomb potential. Only valid when\ndoing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL_SCALE_GAUSSIAN", + "description": "Scales Hartree-Fock contribution arising from a gaussian potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL_SCALE_LONGRANGE", + "description": "Scales Hartree-Fock contribution arising from a longrange potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL_T_C_G_DATA", + "description": "Location of the file t_c_g.dat that contains the data for the evaluation of the\ntruncated gamma function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 7, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_LOAD_BALANCE", + "description": "Parameters influencing the load balancing of the HF", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_LOAD_BALANCE_BLOCK_SIZE", + "description": "Determines the blocking used for the atomic quartet loops. A proper choice can\nspeedup the calculation. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_LOAD_BALANCE_NBINS", + "description": "Number of bins per process used to group atom quartets.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_LOAD_BALANCE_RANDOMIZE", + "description": "This flag controls the randomization of the bin assignment to processes. For\nhighly ordered input structures with a bad load balance, setting this flag to TRUE\nmight improve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 8, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_MEMORY", + "description": "Sets up memory parameters for the storage of the ERI's if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_MEMORY_EPS_STORAGE_SCALING", + "description": "Scaling factor to scale eps_schwarz. Storage threshold for compression will be\nEPS_SCHWARZ*EPS_STORAGE_SCALING.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_MEMORY_MAX_DISK_SPACE", + "description": "Defines the maximum amount of disk space [MB] used to store precomputed compressed\nfour-center integrals. If 0, nothing is stored to disk", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_MEMORY_MAX_MEMORY", + "description": "Defines the maximum amount of memory [MB] to be consumed by the full HFX module.\nAll temporary buffers and helper arrays are subtracted from this number. What\nremains will be used for storage of integrals. NOTE: This number is assumed to\nrepresent the memory available to one MPI process. When running a threaded\nversion, cp2k automatically takes care of distributing the memory among all the\nthreads within a process.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_MEMORY_STORAGE_LOCATION", + "description": "Loaction where ERI's are stored if MAX_DISK_SPACE /=0 Expects a path to a\ndirectory.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_MEMORY_TREAT_FORCES_IN_CORE", + "description": "Determines whether the derivative ERI's should be stored to RAM or not. Only\nmeaningful when performing Ehrenfest MD. Memory usage is defined via MAX_MEMORY,\ni.e. the memory is shared wit the energy ERI's.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 9, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_PERIODIC", + "description": "Sets up periodic boundary condition parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_PERIODIC_NUMBER_OF_SHELLS", + "description": "Number of shells taken into account for periodicity. By default, cp2k tries to\nautomatically evaluate this number. This algorithm might be to conservative,\nresulting in some overhead. You can try to adjust this number in order to make a\ncalculation cheaper.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 10, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_SCREENING", + "description": "Sets up screening parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_SCREENING_EPS_SCHWARZ_FORCES", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold. This will be approximately the\naccuracy of the forces, and should normally be similar to EPS_SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_SCREENING_EPS_SCHWARZ", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_SCREENING_P_SCREEN_CORRECTION_FACTOR", + "description": "Recalculates integrals on the fly if the actual density matrix is larger by a\ngiven factor than the initial one. If the factor is set to 0.0_dp, this feature is\ndisabled.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_SCREENING_SCREEN_ON_INITIAL_P", + "description": "Screen on an initial density matrix. For the first MD step this matrix must be\nprovided by a Restart File.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_SCREENING_SCREEN_P_FORCES", + "description": "Screens the electronic repulsion integrals for the forces using the density\nmatrix. This results in a significant speedup for large systems, but might require\na somewhat tigher EPS_SCHWARZ_FORCES.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 11, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF", + "description": "Sets up the Hartree-Fock parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_FRACTION", + "description": "The fraction of Hartree-Fock to add to the total energy. 1.0 implies standard\nHartree-Fock if used with XC_FUNCTIONAL NONE. NOTE: In a mixed potential\ncalculation this should be set to 1.0, otherwise all parts are multiplied with\nthis factor.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_PW_HFX_BLOCKSIZE", + "description": "Improve the performance of pw_hfx at the cost of some additional memory by storing\nthe realspace representation of PW_HFX_BLOCKSIZE states.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_PW_HFX", + "description": "Compute the Hartree-Fock energy also in the plane wave basis.The value is ignored,\nand intended for debugging only.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_HF_TREAT_LSD_IN_CORE", + "description": "Determines how spin denisities are taken into account. If true, the beta spin\ndensity is included via a second in core call. If false, alpha and beta spins are\ndone in one shot", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_HF_INFO", + "sub_section": "/packages/28/section_definitions/4", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_HFX_RI", + "sub_section": "/packages/28/section_definitions/5", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/6", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_LOAD_BALANCE", + "sub_section": "/packages/28/section_definitions/7", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_MEMORY", + "sub_section": "/packages/28/section_definitions/8", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_PERIODIC", + "sub_section": "/packages/28/section_definitions/9", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF_SCREENING", + "sub_section": "/packages/28/section_definitions/10", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 12, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_VDW_POTENTIAL_NON_LOCAL", + "description": "Information on the non local dispersion functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_NON_LOCAL_CUTOFF", + "description": "The cutoff of the FFT grid used in the calculation of the nonlocal vdW functional\n[Ry].", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_NON_LOCAL_KERNEL_FILE_NAME", + "description": "Name of the kernel data file, may include a path.vdW_kernel_table.dat is for DRSLL\nand LMKLL andrVV10_kernel_table.dat is for rVV10.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_NON_LOCAL_PARAMETERS", + "description": "Parameters b and C of the rVV10 functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_NON_LOCAL_TYPE", + "description": "Type of functional (the corresponding kernel data file should be selected).Allows\nfor common forms such as vdW-DF, vdW-DF2, optB88-vdW, rVV10.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_NON_LOCAL_VERBOSE_OUTPUT", + "description": "Extensive output for non local functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 13, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD", + "description": "Controls the printing of some info about DFTD contributions", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 14, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL", + "description": "Information on the pair potential to calculate dispersion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_ATOM_COORDINATION_NUMBERS", + "description": "Specifies the coordination number of a set of atoms for the C9 term in DFT-D3.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_ATOMPARM", + "description": "Specifies parameters for atom types (in atomic units). If not provided default\nparameters are used (DFT-D2).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_CALCULATE_C9_TERM", + "description": "Calculate C9 terms in DFT-D3 model", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_D3_SCALING", + "description": "XC Functional dependent scaling parameters (s6,sr6,s8) for the DFT-D3 method, if\nset to zero CP2K attempts to guess the xc functional from REFERENCE_FUNCTIONAL and\nsets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_D3BJ_SCALING", + "description": "XC Functional dependent scaling parameters (s6,a1,s8,a2) for the DFT-D3(BJ)\nmethod, if set to zero CP2K attempts to guess the xc functional from\nREFERENCE_FUNCTIONAL and sets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_EPS_CN", + "description": "Cutoff value for coordination number function (DFT-D3 method)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_EXP_PRE", + "description": "Prefactor in exponential damping factor (DFT-D2 potential)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_KIND_COORDINATION_NUMBERS", + "description": "Specifies the coordination number for a kind for the C9 term in DFT-D3.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_LONG_RANGE_CORRECTION", + "description": "Calculate a long range correction to the DFT-D3 model", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PARAMETER_FILE_NAME", + "description": "Name of the parameter file, may include a path", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_R_CUTOFF", + "description": "Range of potential. The cutoff will be 2 times this value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_REFERENCE_C9_TERM", + "description": "Calculate C9 terms in DFT-D3 model using reference coordination numbers", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_REFERENCE_FUNCTIONAL", + "description": "Use parameters for this specific density functional. For available D3 and D3(BJ)\nparameters see: http://www.thch.uni-bonn.de/tc/downloads/DFT-D3/functionals.html,\nhttp://www.thch.uni-bonn.de/tc/downloads/DFT-D3/functionalsbj.html", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_SCALING", + "description": "XC Functional dependent scaling parameter, if set to zero CP2K attempts to guess\nthe xc functional that is in use and sets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_TYPE", + "description": "Type of potential", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_VERBOSE_OUTPUT", + "description": "Extensive output for the DFT-D2 and DFT-D3 models", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD", + "sub_section": "/packages/28/section_definitions/13", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 15, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_VDW_POTENTIAL", + "description": "This section combines all possible additional dispersion corrections to the normal XC functionals. This can be more functionals or simple empirical pair potentials.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_VDW_POTENTIAL_POTENTIAL_TYPE", + "description": "Type of dispersion/vdW functional or potential to use", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_VDW_POTENTIAL_NON_LOCAL", + "sub_section": "/packages/28/section_definitions/12", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_VDW_POTENTIAL_PAIR_POTENTIAL", + "sub_section": "/packages/28/section_definitions/14", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 16, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_CPHF", + "description": "Parameters influencing the solution of the Z-vector equations in MP2 gradients calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_CPHF_EPS_CONV", + "description": "Convergence threshold for the solution of the Z-vector equations. The Z-vector\nequations have the form of a linear system of equations Ax=b, convergence is\nachieved when |Ax-b|<=EPS_CONV.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_CPHF_MAX_ITER", + "description": "Maximum number of iterations allowed for the solution of the Z-vector equations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 17, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_DIRECT_CANONICAL", + "description": "Parameters influencing the direct canonical method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_DIRECT_CANONICAL_BIG_SEND", + "description": "Send big messages between processes (useful for >48 processors).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 18, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_INTERACTION_POTENTIAL", + "description": "Parameters the interaction potential in computing the biel integrals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, TShPSC operator).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_INTERACTION_POTENTIAL_TRUNCATION_RADIUS", + "description": "Determines truncation radius for the truncated TShPSC potential. Only valid when\ndoing truncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_INTERACTION_POTENTIAL_TSHPSC_DATA", + "description": "Location of the file TShPSC.dat that contains the data for the evaluation of the\nTShPSC G0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 19, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_MP2_INFO", + "description": "Controls the printing basic info about MP2 method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_MP2_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_MP2_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_MP2_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_MP2_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_MP2_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 20, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_OPT_RI_BASIS", + "description": "Parameters influencing the optimization of the RI MP2 basis. Only exponents of non- contracted auxiliary basis can be optimized. An initial RI auxiliary basis has to be\nspecified.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_OPT_RI_BASIS_BASIS_SIZE", + "description": "Specifies the size of the auxiliary basis set automatically generated as initial\nguess. This will be effective only if RI_AUX_BASIS_SET in the KIND section and\nNUM_FUNC are not specified.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_OPT_RI_BASIS_DELTA_I_REL", + "description": "Target accuracy in the relative deviation of the amplitudes calculated with and\nwithout RI approximation, (more details in Chem.Phys.Lett.294(1998)143).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_OPT_RI_BASIS_DELTA_RI", + "description": "Target accuracy in the absolute difference between the RI-MP2 and the exact MP2\nenergy, DRI=ABS(E_MP2-E_RI-MP2).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_OPT_RI_BASIS_EPS_DERIV", + "description": "The derivatives of the MP2 energy with respect to the exponents of the basis are\ncalculated numerically. The change in the exponent a_i employed for the numerical\nevaluation is defined as h_i=EPS_DERIV*a_i.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_OPT_RI_BASIS_MAX_ITER", + "description": "Specifies the maximum number of steps in the RI basis optimization.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_OPT_RI_BASIS_NUM_FUNC", + "description": "Specifies the number of function, for each angular momentum (s, p, d ...),\nemployed in the automatically generated initial guess. This will be effective only\nif RI_AUX_BASIS_SET in the KIND section is not specified.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 21, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_LAPLACE", + "description": "Parameters influencing the RI-SOS-MP2-Laplace method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_LAPLACE_QUADRATURE_POINTS", + "description": "Number of quadrature points for the numerical integration in the RI-SOS-\nMP2-Laplace method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_LAPLACE_SIZE_INTEG_GROUP", + "description": "Group size for the integration in the Laplace method, that is the number of\nprocesses involved in the computation of each integration point. SIZE_INTEG_GROUP\nhas to be a multiple of GROUP_SIZE in the WF_CORRELATION section. The default (-1)\nis automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 22, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_MP2", + "description": "Parameters influencing the RI MP2 method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_MP2_BLOCK_SIZE", + "description": "Determines the blocking used for communication in RI-MP2. Larger BLOCK_SIZE\nreduces communication but requires more memory. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_MP2_EPS_CANONICAL", + "description": "Threshold for discriminate if a given ij pairs of the unrelaxed MP2 density matrix\nhas to be calculated with a canonical reformulation based on the occupied\neigenvalues differences.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_MP2_FREE_HFX_BUFFER", + "description": "Free the buffer containing the 4 center integrals used in the Hartree-Fock\nexchange calculation. This will be effective only for gradients calculations,\nsince for the energy only case, the buffers are released by default. (Right now\ndebugging only).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 23, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO", + "description": "Controls the printing basic info about hf method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 24, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI", + "description": "All parameters needed in a HFX RI calculation", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_EPS_OPTIMIZATION", + "description": "Accuracy of iterative RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_EPS_SCREENING", + "description": "Accuracy of geminal integral evaluation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_MAX_ITER", + "description": "Maximum number of iteration in RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 25, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL", + "description": "Sets up interaction potential if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_CUTOFF_RADIUS", + "description": "Determines cutoff radius for the truncated 1/r potential. Only valid when doing\ntruncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_OMEGA", + "description": "Parameter for short/longrange interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, longrange or shortrange).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_COULOMB", + "description": "Scales Hartree-Fock contribution arising from a coulomb potential. Only valid when\ndoing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_GAUSSIAN", + "description": "Scales Hartree-Fock contribution arising from a gaussian potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_LONGRANGE", + "description": "Scales Hartree-Fock contribution arising from a longrange potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_T_C_G_DATA", + "description": "Location of the file t_c_g.dat that contains the data for the evaluation of the\ntruncated gamma function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 26, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE", + "description": "Parameters influencing the load balancing of the HF", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_BLOCK_SIZE", + "description": "Determines the blocking used for the atomic quartet loops. A proper choice can\nspeedup the calculation. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_NBINS", + "description": "Number of bins per process used to group atom quartets.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_RANDOMIZE", + "description": "This flag controls the randomization of the bin assignment to processes. For\nhighly ordered input structures with a bad load balance, setting this flag to TRUE\nmight improve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 27, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_MEMORY", + "description": "Sets up memory parameters for the storage of the ERI's if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_EPS_STORAGE_SCALING", + "description": "Scaling factor to scale eps_schwarz. Storage threshold for compression will be\nEPS_SCHWARZ*EPS_STORAGE_SCALING.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_MAX_DISK_SPACE", + "description": "Defines the maximum amount of disk space [MB] used to store precomputed compressed\nfour-center integrals. If 0, nothing is stored to disk", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_MAX_MEMORY", + "description": "Defines the maximum amount of memory [MB] to be consumed by the full HFX module.\nAll temporary buffers and helper arrays are subtracted from this number. What\nremains will be used for storage of integrals. NOTE: This number is assumed to\nrepresent the memory available to one MPI process. When running a threaded\nversion, cp2k automatically takes care of distributing the memory among all the\nthreads within a process.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_STORAGE_LOCATION", + "description": "Loaction where ERI's are stored if MAX_DISK_SPACE /=0 Expects a path to a\ndirectory.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_TREAT_FORCES_IN_CORE", + "description": "Determines whether the derivative ERI's should be stored to RAM or not. Only\nmeaningful when performing Ehrenfest MD. Memory usage is defined via MAX_MEMORY,\ni.e. the memory is shared wit the energy ERI's.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 28, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC", + "description": "Sets up periodic boundary condition parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC_NUMBER_OF_SHELLS", + "description": "Number of shells taken into account for periodicity. By default, cp2k tries to\nautomatically evaluate this number. This algorithm might be to conservative,\nresulting in some overhead. You can try to adjust this number in order to make a\ncalculation cheaper.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 29, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_SCREENING", + "description": "Sets up screening parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_EPS_SCHWARZ_FORCES", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold. This will be approximately the\naccuracy of the forces, and should normally be similar to EPS_SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_EPS_SCHWARZ", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_P_SCREEN_CORRECTION_FACTOR", + "description": "Recalculates integrals on the fly if the actual density matrix is larger by a\ngiven factor than the initial one. If the factor is set to 0.0_dp, this feature is\ndisabled.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_SCREEN_ON_INITIAL_P", + "description": "Screen on an initial density matrix. For the first MD step this matrix must be\nprovided by a Restart File.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_SCREEN_P_FORCES", + "description": "Screens the electronic repulsion integrals for the forces using the density\nmatrix. This results in a significant speedup for large systems, but might require\na somewhat tigher EPS_SCHWARZ_FORCES.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 30, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF", + "description": "Sets up the Hartree-Fock parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_FRACTION", + "description": "The fraction of Hartree-Fock to add to the total energy. 1.0 implies standard\nHartree-Fock if used with XC_FUNCTIONAL NONE. NOTE: In a mixed potential\ncalculation this should be set to 1.0, otherwise all parts are multiplied with\nthis factor.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_PW_HFX_BLOCKSIZE", + "description": "Improve the performance of pw_hfx at the cost of some additional memory by storing\nthe realspace representation of PW_HFX_BLOCKSIZE states.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_PW_HFX", + "description": "Compute the Hartree-Fock energy also in the plane wave basis.The value is ignored,\nand intended for debugging only.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_TREAT_LSD_IN_CORE", + "description": "Determines how spin denisities are taken into account. If true, the beta spin\ndensity is included via a second in core call. If false, alpha and beta spins are\ndone in one shot", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO", + "sub_section": "/packages/28/section_definitions/23", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI", + "sub_section": "/packages/28/section_definitions/24", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/25", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE", + "sub_section": "/packages/28/section_definitions/26", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_MEMORY", + "sub_section": "/packages/28/section_definitions/27", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC", + "sub_section": "/packages/28/section_definitions/28", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF_SCREENING", + "sub_section": "/packages/28/section_definitions/29", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 31, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA", + "description": "Parameters influencing the RI RPA method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_MINIMAX_QUADRATURE", + "description": "Use the Minimax quadrature scheme for performing the numerical integration.\nMaximum number of quadrature point limited to 20.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_MM_STYLE", + "description": "Matrix multiplication style for the Q matrix.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_QUADRATURE_POINTS", + "description": "Number of quadrature points for the numerical integration in the RI-RPA method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_SIZE_FREQ_INTEG_GROUP", + "description": "Group size for frequency integration, that is the number of processes involved in\nthe computation of each integration point. SIZE_FREQ_INTEG_GROUP has to be a\nmultiple of GROUP_SIZE in the WF_CORRELATION section. The default (-1) is\nautomatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA_HF", + "sub_section": "/packages/28/section_definitions/30", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 32, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_WFC_GPW", + "description": "Parameters for the GPW approach in Wavefunction-based Correlation methods", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_WFC_GPW_CUTOFF", + "description": "The cutoff of the finest grid level in the MP2 gpw integration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_WFC_GPW_EPS_FILTER", + "description": "Determines a threshold for the DBCSR based multiply (usually 10 times smaller than\nEPS_GRID).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_WFC_GPW_EPS_GRID", + "description": "Determines a threshold for the GPW based integration", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_WFC_GPW_PRINT_LEVEL", + "description": "How much output is written by the individual groups.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_WFC_GPW_REL_CUTOFF", + "description": "Determines the grid at which a Gaussian is mapped.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 33, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION", + "description": "Sets up the Wavefunction-based Correlation parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_CALC_COND_NUM", + "description": "Calculate the condition number of the (P|Q) matrix for the RI methods.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_COL_BLOCK", + "description": "Size of the column block used in the SCALAPACK block cyclic data\ndistribution.Default is (COL_BLOCK=-1) is automatic. A proper choice can speedup\nthe parallel matrix multiplication in the case of RI-RPA and RI-SOS-MP2-Laplace.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_GROUP_SIZE", + "description": "Group size used in the computation of the integrals. Default is to use all\nprocessors (GROUP_SIZE=-1).A smaller group size (for example the node size), might\na better choice if the actual MP2 time is large compared to integral computation\ntime. This is usually the case if the total number of processors is not too large.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_MEMORY", + "description": "Maximum allowed total memory usage during MP2 methods [Mb].", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_METHOD", + "description": "Which method should be used to compute the MP2 energy", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_ROW_BLOCK", + "description": "Size of the row block used in the SCALAPACK block cyclic data distribution.Default\nis (ROW_BLOCK=-1) is automatic. A proper choice can speedup the parallel matrix\nmultiplication in the case of RI-RPA and RI-SOS-MP2-Laplace.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_SCALE_S", + "description": "Scaling factor of the singlet energy component (opposite spin, OS).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_WF_CORRELATION_SCALE_T", + "description": "Scaling factor of the triplet energy component (same spin, SS).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_CPHF", + "sub_section": "/packages/28/section_definitions/16", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_DIRECT_CANONICAL", + "sub_section": "/packages/28/section_definitions/17", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/18", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_MP2_INFO", + "sub_section": "/packages/28/section_definitions/19", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_OPT_RI_BASIS", + "sub_section": "/packages/28/section_definitions/20", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_LAPLACE", + "sub_section": "/packages/28/section_definitions/21", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_MP2", + "sub_section": "/packages/28/section_definitions/22", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_RI_RPA", + "sub_section": "/packages/28/section_definitions/31", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION_WFC_GPW", + "sub_section": "/packages/28/section_definitions/32", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 34, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC", + "description": "Uses the Becke 88 longrange exchange functional in an adiabatic fashion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_LAMBDA", + "description": "Defines the parameter of the adiabatic curve", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_OMEGA", + "description": "Potential parameter in erf(omega*r)/r", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 35, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR", + "description": "Uses the Becke 88 longrange exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_OMEGA", + "description": "Potential parameter in erf(omega*r)/r", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 36, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88", + "description": "Uses the Becke 88 exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 37, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE97", + "description": "Uses the Becke 97 exchange correlation functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE97_PARAMETRIZATION", + "description": "switches between the B97 and Grimme parametrization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE97_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE97_SCALE_X", + "description": "scales the exchange part of the functional, if -1 the default for the given\nparametrization is used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE97_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 38, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE_ROUSSEL", + "description": "Becke Roussel exchange hole model. Can be usedas long range correction with a truncated coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_CUTOFF_RADIUS", + "description": "Defines the cutoff radius for the truncation. If put to zero, the standard full\nrange potential will be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_GAMMA", + "description": "Parameter in the exchange hole. Usually this is put to 1.0 or 0.8", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 39, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BEEF", + "description": "Uses the BEEFvdW exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BEEF_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BEEF_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 40, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_CS1", + "description": "Uses the CS1 functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_CS1_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 41, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_GV09", + "description": "Combination of three different exchange hole models", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_GV09_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_GV09_GAMMA", + "description": "Parameter for Becke Roussel hole", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_GV09_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_GV09_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 42, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_HCTH", + "description": "Uses the HCTH class of functionals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_HCTH_PARAMETER_SET", + "description": "Which version of the parameters should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_HCTH_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 43, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_GGA", + "description": "Uses one of the KE_GGA functionals (optimized versions of some of these functionals might be available outside this section). These functionals are needed for the\ncomputation of the kinetic energy in the Kim-Gordon method.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_GGA_FUNCTIONAL", + "description": "Which one of the KE_GGA functionals should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_GGA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 44, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_LIBXC", + "description": "To be used for KG runs. Uses kinetic energy functionals from LIBXC, see also http://www.tddft.org/programs/octopus/wiki/index.php/Libxc", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_LIBXC_FUNCTIONAL", + "description": "names of the functionals, see also\nhttp://www.tddft.org/programs/octopus/wiki/index.php/Libxc:manual .The precise\nlist of available functionals depends on the version of libxc interfaced\n(currently 2.0.1).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_LIBXC_PARAMETERS", + "description": "parameters of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_LIBXC_SCALE", + "description": "scaling factors of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_LIBXC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 45, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR", + "description": "LDA exchange hole model in truncated coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 46, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LIBXC", + "description": "Uses functionals from LIBXC, see also http://www.tddft.org/programs/octopus/wiki/index.php/Libxc", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LIBXC_FUNCTIONAL", + "description": "names of the functionals, see also\nhttp://www.tddft.org/programs/octopus/wiki/index.php/Libxc:manual .The precise\nlist of available functionals depends on the version of libxc interfaced\n(currently 2.0.1).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LIBXC_PARAMETERS", + "description": "parameters of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LIBXC_SCALE", + "description": "scaling factors of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LIBXC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 47, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LYP_ADIABATIC", + "description": "Uses the LYP correlation functional in an adiabatic fashion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LYP_ADIABATIC_LAMBDA", + "description": "Defines the parameter of the adiabatic curve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LYP_ADIABATIC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 48, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LYP", + "description": "Uses the LYP functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LYP_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LYP_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 49, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_OPTX", + "description": "Uses the OPTX functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_OPTX_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_OPTX_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 50, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_P86C", + "description": "Uses the P86C functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_P86C_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_P86C_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 51, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PADE", + "description": "Uses the PADE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PADE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 52, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR", + "description": "PBE exchange hole model in trucanted coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 53, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE", + "description": "Uses the PBE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_PARAMETRIZATION", + "description": "switches between the different parametrizations of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 54, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PW92", + "description": "Uses the PerdewWang correlation functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PW92_PARAMETRIZATION", + "description": "Which one of parametrizations should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PW92_SCALE", + "description": "Scaling of the energy functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PW92_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 55, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PZ81", + "description": "Uses the PZ functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PZ81_PARAMETRIZATION", + "description": "Which one of parametrizations should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PZ81_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PZ81_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 56, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TFW", + "description": "Uses the TFW functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TFW_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 57, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TF", + "description": "Uses the TF functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TF_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 58, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TPSS", + "description": "Uses the TPSS functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TPSS_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TPSS_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TPSS_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 59, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_VWN", + "description": "Uses the VWN functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_VWN_FUNCTIONAL_TYPE", + "description": "Which version of the VWN functional should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_VWN_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_VWN_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 60, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XALPHA", + "description": "Uses the XALPHA (SLATER) functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XALPHA_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XALPHA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XALPHA_XA", + "description": "Value of the xa parameter (this does not change the exponent, just the mixing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 61, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XGGA", + "description": "Uses one of the XGGA functionals (optimized versions of some of these functionals might be available outside this section).", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XGGA_FUNCTIONAL", + "description": "Which one of the XGGA functionals should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XGGA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 62, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XWPBE", + "description": "Uses the short range PBE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XWPBE_OMEGA", + "description": "screening parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XWPBE_SCALE_X0", + "description": "scales the exchange part of the original hole PBE-functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XWPBE_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XWPBE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 63, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL", + "description": "The xc functional to use", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_FUNCTIONAL_SECTION_PARAMETERS", + "description": "Shortcut for the most common functional combinations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC", + "sub_section": "/packages/28/section_definitions/34", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88_LR", + "sub_section": "/packages/28/section_definitions/35", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE88", + "sub_section": "/packages/28/section_definitions/36", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE97", + "sub_section": "/packages/28/section_definitions/37", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BECKE_ROUSSEL", + "sub_section": "/packages/28/section_definitions/38", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_BEEF", + "sub_section": "/packages/28/section_definitions/39", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_CS1", + "sub_section": "/packages/28/section_definitions/40", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_GV09", + "sub_section": "/packages/28/section_definitions/41", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_HCTH", + "sub_section": "/packages/28/section_definitions/42", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_GGA", + "sub_section": "/packages/28/section_definitions/43", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_KE_LIBXC", + "sub_section": "/packages/28/section_definitions/44", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR", + "sub_section": "/packages/28/section_definitions/45", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LIBXC", + "sub_section": "/packages/28/section_definitions/46", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LYP_ADIABATIC", + "sub_section": "/packages/28/section_definitions/47", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_LYP", + "sub_section": "/packages/28/section_definitions/48", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_OPTX", + "sub_section": "/packages/28/section_definitions/49", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_P86C", + "sub_section": "/packages/28/section_definitions/50", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PADE", + "sub_section": "/packages/28/section_definitions/51", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR", + "sub_section": "/packages/28/section_definitions/52", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PBE", + "sub_section": "/packages/28/section_definitions/53", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 20, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PW92", + "sub_section": "/packages/28/section_definitions/54", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 21, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_PZ81", + "sub_section": "/packages/28/section_definitions/55", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 22, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TFW", + "sub_section": "/packages/28/section_definitions/56", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 23, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TF", + "sub_section": "/packages/28/section_definitions/57", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 24, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_TPSS", + "sub_section": "/packages/28/section_definitions/58", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 25, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_VWN", + "sub_section": "/packages/28/section_definitions/59", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 26, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XALPHA", + "sub_section": "/packages/28/section_definitions/60", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 27, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XGGA", + "sub_section": "/packages/28/section_definitions/61", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 28, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL_XWPBE", + "sub_section": "/packages/28/section_definitions/62", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 64, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_GRID", + "description": "The xc parameters used when calculating the xc on the grid", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_GRID_USE_FINER_GRID", + "description": "Uses a finer grid only to calculate the xc", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_GRID_XC_DERIV", + "description": "The method used to compute the derivatives", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_GRID_XC_SMOOTH_RHO", + "description": "The density smoothing used for the xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 65, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_POTENTIAL_SAOP", + "description": "Uses the SAOP potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_POTENTIAL_SAOP_ALPHA", + "description": "Value of the alpha parameter (default = 1.19).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_POTENTIAL_SAOP_BETA", + "description": "Value of the beta parameter (default = 0.01).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_POTENTIAL_SAOP_K_RHO", + "description": "Value of the K_rho parameter (default = 0.42).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 66, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_POTENTIAL", + "description": "The xc potential to use (CAREFUL: xc potential here refers to potentials that are not derived from an xc functional, but rather are modelled directly. Therefore there is no\nconsistent xc energy available. To still get an energy expression, see ENERGY below", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_XC_POTENTIAL_ENERGY", + "description": "How to determine the total energy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_POTENTIAL_SAOP", + "sub_section": "/packages/28/section_definitions/65", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 67, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_XC", + "description": "parameters needed calculate the xc potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_DENSITY_CUTOFF", + "description": "The cutoff on the density used by the xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_DENSITY_SMOOTH_CUTOFF_RANGE", + "description": "Parameter for the smoothing procedure inxc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_FUNCTIONAL_ROUTINE", + "description": "Select the code for xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_GRADIENT_CUTOFF", + "description": "The cutoff on the gradient of the density used by the xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_XC_TAU_CUTOFF", + "description": "The cutoff on tau used by the xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_ADIABATIC_RESCALING", + "sub_section": "/packages/28/section_definitions/3", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_HF", + "sub_section": "/packages/28/section_definitions/11", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_VDW_POTENTIAL", + "sub_section": "/packages/28/section_definitions/15", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_WF_CORRELATION", + "sub_section": "/packages/28/section_definitions/33", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_FUNCTIONAL", + "sub_section": "/packages/28/section_definitions/63", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_GRID", + "sub_section": "/packages/28/section_definitions/64", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC_XC_POTENTIAL", + "sub_section": "/packages/28/section_definitions/66", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 68, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_ZMP_RESTART", + "description": "Section used to specify the restart option in the ZMPprocedure, and the file that must be read.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_ZMP_RESTART_FILE_RESTART", + "description": "Specifies the filename containing the restart file density", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 69, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD_ZMP", + "description": "Section used to specify ZMP Potentials.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_ZMP_DM", + "description": "read external density from density matrix", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_ZMP_FILE_DENSITY", + "description": "Specifies the filename containing the target density", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_ZMP_GRID_TOL", + "description": "Tolerance in the equivalence of read-grid in ZMP method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_ZMP_LAMBDA", + "description": "Parameter used for the constraint in ZMP method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_ZMP_RESTART", + "sub_section": "/packages/28/section_definitions/68", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 70, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_METHOD", + "description": "Section of information on method to use.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_METHOD_TYPE", + "description": "Type of electronic structure method to be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_METHOD_RELATIVISTIC", + "description": "Type of scalar relativistic method to be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_EXTERNAL_VXC", + "sub_section": "/packages/28/section_definitions/2", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_XC", + "sub_section": "/packages/28/section_definitions/67", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD_ZMP", + "sub_section": "/packages/28/section_definitions/69", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 71, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_OPTIMIZATION", + "description": "Section of information on optimization thresholds and algorithms.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_OPTIMIZATION_DAMPING", + "description": "Damping parameter for extrapolation method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_OPTIMIZATION_EPS_DIIS", + "description": "Starting DIIS method at convergence to EPS_DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_OPTIMIZATION_EPS_SCF", + "description": "Convergence criterion for SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_OPTIMIZATION_MAX_ITER", + "description": "Maximum number of iterations for optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_OPTIMIZATION_N_DIIS", + "description": "Maximum number of DIIS vectors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 72, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_POTENTIAL_GTH_POTENTIAL", + "description": "Section used to specify Potentials.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POTENTIAL_GTH_POTENTIAL_DEFAULT_KEYWORD", + "description": "CP2K Pseudo Potential Standard Format (GTH, ALL or KG)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 73, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_POTENTIAL", + "description": "Section of information on potential.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POTENTIAL_CONFINEMENT", + "description": "Definition of confinement potential", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POTENTIAL_POTENTIAL_FILE_NAME", + "description": "Name of the pseudo potential file, may include a path", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POTENTIAL_POTENTIAL_NAME", + "description": "The name of the pseudopotential for the defined kind.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POTENTIAL_PSEUDO_TYPE", + "description": "Pseudopotential type", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_POTENTIAL_GTH_POTENTIAL", + "sub_section": "/packages/28/section_definitions/72", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 74, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_POWELL", + "description": "Section defines basic parameters for Powell optimization", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_ACCURACY", + "description": "Final accuracy requested in optimization (RHOEND)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_MAX_FUN", + "description": "Maximum number of function evaluations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_RCOV_MULTIPLICATION", + "description": "Multiply Rcov integration limit for charge conservation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_STEP_SIZE", + "description": "Initial step size for search algorithm (RHOBEG)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_TARGET_POT_SEMICORE", + "description": "Target accuracy for semicore state eigenvalues in pseudopotential optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_TARGET_POT_VALENCE", + "description": "Target accuracy for valence state eigenvalues in pseudopotential optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_TARGET_POT_VIRTUAL", + "description": "Target accuracy for virtual state eigenvalues in pseudopotential optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_WEIGHT_ELECTRON_CONFIGURATION", + "description": "Weight for different electronic states in optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_WEIGHT_METHOD", + "description": "Weight for different methods in optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_WEIGHT_POT_NODE", + "description": "Weight for node mismatch in pseudopotential optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_WEIGHT_POT_SEMICORE", + "description": "Weight for semi core states in pseudopotential optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_WEIGHT_POT_VALENCE", + "description": "Weight for valence states in pseudopotential optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_WEIGHT_POT_VIRTUAL", + "description": "Weight for virtual states in pseudopotential optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_POWELL_WEIGHT_PSIR0", + "description": "Weight for the wavefunctions at r=0 (only occupied states)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 75, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_PP_BASIS_BASIS", + "description": "Section used to specify a general basis set for QM calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_BASIS_DEFAULT_KEYWORD", + "description": "CP2K Basis Set Standard Format", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 76, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM_PP_BASIS", + "description": "Section of basis set information for pseudopotential calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_BASIS_SET_FILE_NAME", + "description": "Name of the basis set file, may include a path", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_BASIS_SET", + "description": "The contracted Gaussian basis set", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_BASIS_TYPE", + "description": "Basis set type", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_D_EXPONENTS", + "description": "Exponents for d functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_D_QUANTUM_NUMBERS", + "description": "Main quantum numbers for d functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_EPS_EIGENVALUE", + "description": "Cutoff of overlap matrix eigenvalues included into basis", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_F_EXPONENTS", + "description": "Exponents for f functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_F_QUANTUM_NUMBERS", + "description": "Main quantum numbers for f functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_GEO_START_VALUE", + "description": "Geometrical basis: starting value a in a*C^k", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_GEOMETRICAL_FACTOR", + "description": "Geometrical basis: factor C in a*C^k", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_GRID_POINTS", + "description": "Number of radial grid points", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_NUM_GTO", + "description": "Number of Gaussian type functions for s, p, d, ...", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_NUM_SLATER", + "description": "Number of Slater type functions for s, p, d, ...", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_P_EXPONENTS", + "description": "Exponents for p functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_P_QUANTUM_NUMBERS", + "description": "Main quantum numbers for p functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_QUADRATURE", + "description": "Algorithm to construct the atomic radial grids", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_S_EXPONENTS", + "description": "Exponents for s functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_S_QUANTUM_NUMBERS", + "description": "Main quantum numbers for s functions", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_PP_BASIS_START_INDEX", + "description": "Starting index for Geometrical Basis sets", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_PP_BASIS_BASIS", + "sub_section": "/packages/28/section_definitions/75", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 77, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_ATOM", + "description": "Section handling input for atomic calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_ATOMIC_NUMBER", + "description": "Specify the atomic number", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_CALCULATE_STATES", + "description": "Specifies the number of states calculated per l value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_CORE", + "description": "Specifies the core electrons for a pseudopotential", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_COULOMB_INTEGRALS", + "description": "Method to calculate Coulomb integrals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_ELECTRON_CONFIGURATION", + "description": "Specifies the electron configuration. Optional the multiplicity (m) and a core\nstate [XX] can be declared", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_ELEMENT", + "description": "Specify the element to be calculated", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_EXCHANGE_INTEGRALS", + "description": "Method to calculate Exchange integrals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_MAX_ANGULAR_MOMENTUM", + "description": "Specifies the largest angular momentum calculated [0-3]", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_ATOM_RUN_TYPE", + "description": "Type of run that you want to perform\n[ENERGY,BASIS_OPTIMIZATION,PSEUDOPOTENTIAL_OPTIMIZATION,,...]", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_AE_BASIS", + "sub_section": "/packages/28/section_definitions/1", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_METHOD", + "sub_section": "/packages/28/section_definitions/70", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_OPTIMIZATION", + "sub_section": "/packages/28/section_definitions/71", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_POTENTIAL", + "sub_section": "/packages/28/section_definitions/73", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_POWELL", + "sub_section": "/packages/28/section_definitions/74", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_ATOM_PP_BASIS", + "sub_section": "/packages/28/section_definitions/76", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 78, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_DEBUG_PROGRAM_RUN_INFO", + "description": "Controls the printing of the DEBUG specific output", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_PROGRAM_RUN_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_PROGRAM_RUN_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_PROGRAM_RUN_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_PROGRAM_RUN_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_PROGRAM_RUN_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 79, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_DEBUG", + "description": "Section to setup parameters for debug runs.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_DEBUG_FORCES", + "description": "Activates the debugging of the atomic forces", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_DEBUG_STRESS_TENSOR", + "description": "Activates the debugging of the stress tensor", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_DX", + "description": "Increment for the calculation of the numerical derivatives", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_EPS_NO_ERROR_CHECK", + "description": "The mismatch between the numerical and the analytical value is not checked for\nanalytical values smaller than this threshold value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_DEBUG_STOP_ON_MISMATCH", + "description": "Stop the debug run when a mismatch between the numerical and the analytical value\nis detected", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_DEBUG_PROGRAM_RUN_INFO", + "sub_section": "/packages/28/section_definitions/78", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 80, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_EXT_RESTART", + "description": "Section for external restart, specifies an external input file where to take positions,...", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_BINARY_RESTART_FILE_NAME", + "description": "Specifies the name of an additional restart file from which selected input\nsections are read in binary format (see SPLIT_RESTART_FILE).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_CUSTOM_PATH", + "description": "Restarts the given path from the EXTERNAL file. Allows a major flexibility for\nrestarts.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_AVERAGES", + "description": "Restarts information for AVERAGES.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_BAND", + "description": "Restarts positions and velocities of the Band.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_BAROSTAT_THERMOSTAT", + "description": "Restarts the barostat thermostat from the external file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_BAROSTAT", + "description": "Restarts the barostat from the external file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_BSSE", + "description": "Restarts information for BSSE calculations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_CELL", + "description": "Restarts the cell (and cell_ref) from the EXTERNAL file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_CONSTRAINT", + "description": "Restarts constraint section. It's necessary when doing restraint calculation to\nhave a perfect energy conservation. For constraints only it's use is optional.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_CORE_POS", + "description": "Takes the positions of the cores from the external file (only if shell-model)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_CORE_VELOCITY", + "description": "Takes the velocities of the shells from the external file (only if shell-model)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_COUNTERS", + "description": "Restarts the counters in MD schemes", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_DEFAULT", + "description": "This keyword controls the default value for all possible restartable keywords,\nunless explicitly defined. For example setting this keyword to .FALSE. does not\nrestart any quantity. If, at the same time, one keyword is set to .TRUE. only\nthat quantity will be restarted.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_DIMER", + "description": "Restarts information for DIMER geometry optimizations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_FILE_NAME", + "description": "Specifies the name of restart file (or any other input file) to be read. Only\nfields relevant to a restart will be used (unless switched off with the keywords\nin this section)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_HELIUM_DENSITIES", + "description": "Restarts helium density distributions from PINT%HELIUM%RHO.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_HELIUM_FORCE", + "description": "Restart helium forces exerted on the solute from PINT%HELIUM%FORCE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_HELIUM_PERMUTATION", + "description": "Restart helium permutation state from PINT%HELIUM%PERM.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_HELIUM_POS", + "description": "Restart helium positions from PINT%HELIUM%COORD.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_HELIUM_RNG", + "description": "Restarts helium random number generators from PINT%HELIUM%RNG_STATE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_METADYNAMICS", + "description": "Restarts hills from a previous metadynamics run from the EXTERNAL file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_OPTIMIZE_INPUT_VARIABLES", + "description": "Restart with the optimize input variables", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_PINT_GLE", + "description": "Restart GLE thermostat for beads from PINT%GLE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_PINT_NOSE", + "description": "Restart Nose thermostat for beads from PINT%NOSE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_PINT_POS", + "description": "Restart bead positions from PINT%BEADS%COORD.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_PINT_VEL", + "description": "Restart bead velocities from PINT%BEADS%VELOCITY.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_POS", + "description": "Takes the positions from the external file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_QMMM", + "description": "Restarts the following specific QMMM info: translation vectors.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_RANDOMG", + "description": "Restarts the random number generator from the external file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_RTP", + "description": "Restarts information for REAL TIME PROPAGATION and EHRENFEST DYNAMICS.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_SHELL_POS", + "description": "Takes the positions of the shells from the external file (only if shell-model)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_SHELL_THERMOSTAT", + "description": "Restarts the shell thermostat from the external file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_SHELL_VELOCITY", + "description": "Takes the velocities of the shells from the external file (only if shell-model)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_THERMOSTAT", + "description": "Restarts the nose thermostats of the particles from the EXTERNAL file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_VEL", + "description": "Takes the velocities from the external file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_EXT_RESTART_RESTART_WALKERS", + "description": "Restarts walkers informations from a previous metadynamics run from the EXTERNAL\nfile", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 81, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FARMING_JOB", + "description": "description of the jobs to be executed", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_JOB_DEPENDENCIES", + "description": "specifies a list of JOB_IDs on which the current job depends. The current job will\nnot be executed before all the dependencies have finished. The keyword requires a\nMASTER_SLAVE farming run. Beyond the default case, some special cases might arise:\n1) circular dependencies will lead to a deadlock. 2) This keyword is not\ncompatible with CYCLE. 3) MAX_JOBS_PER_GROUP is ignored (though only a total of\nMAX_JOBS_PER_GROUP*NGROUPS jobs will be executed) 4) dependencies on jobs that\nwill not be executed (due to RESTART or MAX_JOBS_PER_GROUP) are ignored.\nAdditionally, note that, on some file systems, output (restart) files might not\nbe immediately available on all compute nodes,potentially resulting in unexpected\nfailures.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_JOB_DIRECTORY", + "description": "the directory in which the job should be executed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_JOB_INPUT_FILE_NAME", + "description": "the filename of the input file", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_JOB_JOB_ID", + "description": "An ID used to indentify a job in DEPENDENCIES. JOB_IDs do not need to be unique,\ndependencies will be on all jobs with a given ID. If no JOB_ID is given, the index\nof the &JOB section in the input file will be used.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_JOB_OUTPUT_FILE_NAME", + "description": "the filename of the output file, if not specified will use the project name in the\n&GLOBAL section.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 82, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FARMING_PROGRAM_RUN_INFO", + "description": "controls the printing of FARMING specific output", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_PROGRAM_RUN_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_PROGRAM_RUN_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_PROGRAM_RUN_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_PROGRAM_RUN_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_PROGRAM_RUN_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 83, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FARMING_RESTART", + "description": "controls the printing of the restart for FARMING.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_RESTART_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_RESTART_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_RESTART_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_RESTART_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_RESTART_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 84, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FARMING", + "description": "Describes a farming job, in which multiple inputs are executed. The RUN_TYPE in the global section has to be set to NONE for FARMING.\n\nThe different groups are executed in parallel. The jobs inside the same groups in\nseries.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_CYCLE", + "description": "If farming should process all jobs in a cyclic way, stopping only if\nMAX_JOBS_PER_GROUP is exceeded.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_DO_RESTART", + "description": "Restart a farming job (and should pick up where the previous left off)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_GROUP_PARTITION", + "description": "gives the exact number of processors for each group.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_GROUP_SIZE", + "description": "Gives the preferred size of a working group, groups will always be equal or larger\nthan this size.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_MASTER_SLAVE", + "description": "If a master-slave setup should be employed, in which one process is used to\ndistribute the tasks. This is most useful to load-balance if not all jobs have the\nsame length, and a lot of CPUs/groups are availabe.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_MAX_JOBS_PER_GROUP", + "description": "maximum number of jobs executed per group", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_NGROUPS", + "description": "Gives the preferred number of working groups.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_RESTART_FILE_NAME", + "description": "Name of the restart file to use for restarting a FARMING run. If not specified the\nname is determined from PROJECT name.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FARMING_WAIT_TIME", + "description": "Time to wait [s] for a new task if no task is currently available, make this zero\nif no clock is available", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FARMING_JOB", + "sub_section": "/packages/28/section_definitions/81", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FARMING_PROGRAM_RUN_INFO", + "sub_section": "/packages/28/section_definitions/82", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FARMING_RESTART", + "sub_section": "/packages/28/section_definitions/83", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 85, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_BSSE_CONFIGURATION", + "description": "Specify additional parameters for the combinatorial configurations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_BSSE_CONFIGURATION_CHARGE", + "description": "The total charge for each fragment.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_BSSE_CONFIGURATION_GLB_CONF", + "description": "Specifies the global configuration using 1 or 0.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_BSSE_CONFIGURATION_MULTIPLICITY", + "description": "Specify for each fragment the multiplicity. Two times the total spin plus one.\nSpecify 3 for a triplet, 4 for a quartet,and so on. Default is 1 (singlet) for an\neven number and 2 (doublet) for an odd number of electrons.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_BSSE_CONFIGURATION_SUB_CONF", + "description": "Specifies the subconfiguration using 1 or 0 belonging to the global configuration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 86, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_BSSE_FRAGMENT_ENERGIES", + "description": "This section contains the energies of the fragments already computed. It is useful as a summary and specifically for restarting BSSE runs.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_BSSE_FRAGMENT_ENERGIES_DEFAULT_KEYWORD", + "description": "The energy computed for each fragment", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 87, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_BSSE_FRAGMENT", + "description": "Specify the atom number belonging to this fragment.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_BSSE_FRAGMENT_LIST", + "description": "Specifies a list of atoms.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 88, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_BSSE", + "description": "This section is used to set up the BSSE calculation. It also requires that for each atomic kind X a kind X_ghost is present, with the GHOST keyword specified, in addition\nto the other required fields.", + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_BSSE_CONFIGURATION", + "sub_section": "/packages/28/section_definitions/85", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_BSSE_FRAGMENT_ENERGIES", + "sub_section": "/packages/28/section_definitions/86", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_BSSE_FRAGMENT", + "sub_section": "/packages/28/section_definitions/87", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 89, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_DIIS", + "description": "Controls the iterative DIIS-accelerated optimization of block-diagonal ALMOs.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_DIIS_EPS_ERROR", + "description": "Target value of the MAX norm of the error", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_DIIS_MAX_ITER", + "description": "Maximum number of iterations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_DIIS_N_DIIS", + "description": "Number of error vectors to be used in the DIIS optimization procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 90, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG", + "description": "Controls the PCG optimization of block-diagonal ALMOs.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG_CONJUGATOR", + "description": "Various methods to compute step directions in the PCG optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG_EPS_ERROR", + "description": "Target value of the MAX norm of the error", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG_LIN_SEARCH_EPS_ERROR", + "description": "Target value of the gradient norm during the linear search", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG_LIN_SEARCH_STEP_SIZE_GUESS", + "description": "The size of the first step in the linear search", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG_MAX_ITER_OUTER_LOOP", + "description": "Maximum number of iterations in the outer loop. Use the outer loop to update the\npreconditioner and reset the conjugator. This can speed up convergence\nsignificantly.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG_MAX_ITER", + "description": "Maximum number of iterations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG_PRECONDITIONER", + "description": "Select a preconditioner for the conjugate gradient optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 91, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG", + "description": "Controls the PCG optimization of extended ALMOs.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG_CONJUGATOR", + "description": "Various methods to compute step directions in the PCG optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG_EPS_ERROR", + "description": "Target value of the MAX norm of the error", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG_LIN_SEARCH_EPS_ERROR", + "description": "Target value of the gradient norm during the linear search", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG_LIN_SEARCH_STEP_SIZE_GUESS", + "description": "The size of the first step in the linear search", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG_MAX_ITER_OUTER_LOOP", + "description": "Maximum number of iterations in the outer loop. Use the outer loop to update the\npreconditioner and reset the conjugator. This can speed up convergence\nsignificantly.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG_MAX_ITER", + "description": "Maximum number of iterations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG_PRECONDITIONER", + "description": "Select a preconditioner for the conjugate gradient optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 92, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_ALMO_SCF", + "description": "Settings for a class of efficient linear scaling methods based on absolutely localized orbitals (ALMOs). ALMO methods are currently restricted to closed-shell molecular\nsystems.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_ALGORITHM", + "description": "Specifies the algorithm to update block-diagonal ALMOs during the SCF procedure.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_SCF_GUESS", + "description": "The method to generate initial ALMOs.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_DELOCALIZE_METHOD", + "description": "Methods to reintroduce electron delocalization, which is excluded with the block-\ndiagonal ALMO reference. Electron delocalization can be computed using either\nfully delocalized MOs or spatially restricted ALMOs (called extended ALMOs or\nXALMOs). All methods below use a PCG optimizer controlled by XALMO_OPTIMIZER_PCG.\nThe only exception is the non-iterative XALMO_1DIAG.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_EPS_FILTER", + "description": "Threshold for the matrix sparsity filter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_R_CUTOFF_FACTOR", + "description": "Controls the localization radius of XALMOs: R_cutoff =\nXALMO_R_CUTOFF_FACTOR*(radius(at1)+radius(at2))", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_DIIS", + "sub_section": "/packages/28/section_definitions/89", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_ALMO_SCF_ALMO_OPTIMIZER_PCG", + "sub_section": "/packages/28/section_definitions/90", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_ALMO_SCF_XALMO_OPTIMIZER_PCG", + "sub_section": "/packages/28/section_definitions/91", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 93, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_AUXILIARY_DENSITY_MATRIX_METHOD", + "description": "Parameters needed for the ADMM method.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_AUXILIARY_DENSITY_MATRIX_METHOD_ADMM_PURIFICATION_METHOD", + "description": "Method that shall be used for wavefunction fitting. Use MO_DIAG for MD.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_AUXILIARY_DENSITY_MATRIX_METHOD_BLOCK_LIST", + "description": "Specifies a list of atoms.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_AUXILIARY_DENSITY_MATRIX_METHOD_EPS_FILTER", + "description": "Define accuracy of DBCSR operations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_AUXILIARY_DENSITY_MATRIX_METHOD_EXCH_CORRECTION_FUNC", + "description": "Exchange functional which is used for the ADMM correction.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_AUXILIARY_DENSITY_MATRIX_METHOD_EXCH_SCALING_MODEL", + "description": "Scaling of the exchange correction calculated by the auxiliary density matrix.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_AUXILIARY_DENSITY_MATRIX_METHOD_METHOD", + "description": "Method that shall be used for wavefunction fitting. Use BASIS_PROJECTION for MD.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 94, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_DENSITY_FITTING_PROGRAM_RUN_INFO", + "description": "Controls the printing of basic information during the run", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_PROGRAM_RUN_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_PROGRAM_RUN_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_PROGRAM_RUN_INFO_CONDITION_NUMBER", + "description": "Prints information regarding the condition numbers of the A matrix (to be\ninverted)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_PROGRAM_RUN_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_PROGRAM_RUN_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_PROGRAM_RUN_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 95, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_DENSITY_FITTING", + "description": "Setup parameters for density fitting (Bloechl charges or density derived atomic point charges (DDAPC) charges)", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_GCUT", + "description": "Cutoff for charge fit in G-space.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_MIN_RADIUS", + "description": "Specifies the smallest radius of the gaussian used in the fit. All other radius\nare obtained with the progression factor.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_NUM_GAUSS", + "description": "Specifies the numbers of gaussian used to fit the QM density for each atomic site.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_PFACTOR", + "description": "Specifies the progression factor for the gaussian exponent for each atomic site.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_DENSITY_FITTING_RADII", + "description": "Specifies all the radius of the gaussian used in the fit for each atomic site. The\nuse of this keyword disables all other keywords of this section.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_DENSITY_FITTING_PROGRAM_RUN_INFO", + "sub_section": "/packages/28/section_definitions/94", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 96, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EFIELD_CONSTANT_ENV", + "description": "parameters for a constant envelop", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_CONSTANT_ENV_END_STEP", + "description": "Last step the field is applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_CONSTANT_ENV_START_STEP", + "description": "First step the field is applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 97, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EFIELD_GAUSSIAN_ENV", + "description": "parameters for a gaussian envelop", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_GAUSSIAN_ENV_SIGMA", + "description": "Width of the gaussian", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_GAUSSIAN_ENV_T0", + "description": "Center of the gaussian envelop (maximum of the gaussian)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 98, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EFIELD_RAMP_ENV", + "description": "Parameters for an trapeziodal envelop", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_RAMP_ENV_END_STEP_IN", + "description": "Step when the field reaches the full strength", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_RAMP_ENV_END_STEP_OUT", + "description": "Step when the field disappears", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_RAMP_ENV_START_STEP_IN", + "description": "Step when the electric field starts to be applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_RAMP_ENV_START_STEP_OUT", + "description": "Step when the field starts to vanish", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 99, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EFIELD", + "description": "parameters for finite, time dependent, nonperiodic electric fields", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_ENVELOP", + "description": "Shape of the efield pulse", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_INTENSITY", + "description": "Intensity of the electric field in W*cm-2 which corresponds to a maximal amplitude\nin a.u. of sqrt(I/(3.50944*10^16))", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_PHASE", + "description": "phase offset of the cosine given in multiples of pi", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_POLARISATION", + "description": "Polarisation vector of electric field", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EFIELD_WAVELENGTH", + "description": "Wavelength of efield field", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EFIELD_CONSTANT_ENV", + "sub_section": "/packages/28/section_definitions/96", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EFIELD_GAUSSIAN_ENV", + "sub_section": "/packages/28/section_definitions/97", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EFIELD_RAMP_ENV", + "sub_section": "/packages/28/section_definitions/98", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 100, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EXTERNAL_DENSITY", + "description": "Section for the use of the ZMP technique on external densities.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_DENSITY_FERMI_AMALDI", + "description": "Add the Fermi-Amaldi contribution to the Hartree potential.It leads to a more\nstable convergence.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_DENSITY_FILE_DENSITY", + "description": "Specifies the filename containing the target density in *.cube format.In the MGRID\nsection it must be imposed NGRID 1, as it works with onlyone grid. The number of\npoints in each direction, and the spacing mustbe previously defined choosing the\nplane waves cut-off in section MGRIDkeyword CUTOFF, and the cube dimention in\nsection SUBSYS / CELL / keyword ABC", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_DENSITY_LAMBDA", + "description": "Lagrange multiplier defined in the constraint ZMP method. When starting, usesmall\nvalues when starting from scratch (around 5,10). Then gradually increasethe values\ndepending, restarting from the previous calculation with the smallervalue. To\nchoose the progressive values of LAMBDA look at the convergence of the\neigenvalues.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_DENSITY_ZMP_CONSTRAINT", + "description": "Specify which kind of constraint to solve the ZMP equation. The COULOMB\ndefaultoption is more stable.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 101, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL", + "description": "Section controlling the presence of an electrostatic external potential dependent on the atomic positions (X,Y,Z)", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_DX", + "description": "Parameter used for computing the derivative with the Ridders method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_ERROR_LIMIT", + "description": "Checks that the error in computing the derivative is not larger than the value\nset. In case prints a warning message.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_FUNCTION", + "description": "Specifies the functional form in mathematical notation. Variables must be the\natomic coordinates (X,Y,Z) of the grid.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_PARAMETERS", + "description": "Defines the parameters of the functional form", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_READ_FROM_CUBE", + "description": "Switch for reading the external potential from file pot.cube. The values of the\npotential must be on the grid points of the realspace grid.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_SCALING_FACTOR", + "description": "A factor for scaling the the external potential that is read from file.The value\nof the potential at each grid point is multiplied by this factor.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_STATIC", + "description": "Specifies the external potential as STATIC or time dependent. At the moment only\nstatic potentials are implemented.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_UNITS", + "description": "Optionally, allows to define valid CP2K unit strings for each parameter value. It\nis assumed that the corresponding parameter value is specified in this unit.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_POTENTIAL_VALUES", + "description": "Defines the values of parameter of the functional form", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 102, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_EXTERNAL_VXC", + "description": "SCF convergence with external v_xc calculated through previous ZMPcalculation", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_EXTERNAL_VXC_FILE_VXC", + "description": "The *.cube filename containing the v_xc potential. This works onlywith NGRID 1\nimposed in the MGRID section. The number of points in eachdirection, and the\nspacing must equal to those previously used in the ZMPcalculation and defined\nthrough the plane wave cut-off and the cube dimensionrespectively set in section\nMGRID / keyword CUTOFF, and in section SUBSYS /CELL / keyword ABC", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 103, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_KG_METHOD", + "description": "Specifies the parameters for a Kim-Gordon-like partitioning into molecular subunits", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KG_METHOD_COLORING_METHOD", + "description": "Which algorithm to use for coloring.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KG_METHOD_TNADD_METHOD", + "description": "Algorithm to use for the calculation of the nonadditive kinetic energy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 104, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_KPOINTS", + "description": "Sets up the kpoints.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KPOINTS_EPS_GEO", + "description": "Accuracy in symmetry determination.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KPOINTS_FULL_GRID", + "description": "Use full non-reduced kpoint grid.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KPOINTS_KPOINT", + "description": "Specify kpoint coordinates and weight.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KPOINTS_PARALLEL_GROUP_SIZE", + "description": "Number of processors to be used for a single kpoint. Value=-1 (minimum number of\nprocesses). Value=0 (maximum number of processes). Value=n (exactly n processes).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KPOINTS_SCHEME", + "description": "Kpoint scheme to be used.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KPOINTS_SYMMETRY", + "description": "Use symmetry to reduce the number of kpoints.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KPOINTS_VERBOSE", + "description": "Verbose output information.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_KPOINTS_WAVEFUNCTIONS", + "description": "Use real/complex wavefunctions if possible.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 105, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LOCALIZE", + "description": "Use one of the available methods to define the localization and possibly to optimize it to a minimum or a maximum.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_CRAZY_SCALE", + "description": "scale angles", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_CRAZY_USE_DIAG", + "description": "Use diagonalization (slow) or pade based calculation of matrix exponentials.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_ENERGY_RANGE", + "description": "Select the orbitals to be localized within the given energy range.This type of\nselection cannot be added on top of the selection through a LIST. It reads to\nreals that are lower and higher boundaries of the energy range.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_EPS_LOCALIZATION", + "description": "Tolerance used in the convergence criterium of the localization methods.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_EPS_OCCUPATION", + "description": "Tolerance in the occupation number to select only fully occupied orbitals for the\nrotation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_JACOBI_FALLBACK", + "description": "Use Jacobi method in case no convergence was achieved by using the crazy rotations\nmethod.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_LIST_UNOCCUPIED", + "description": "Indexes of the unoccupied states to be localized, up to now only valid in\ncombination with GPW. This keyword has to be present if unoccupied states should\nbe localized. This keyword can be repeated several times(useful if you have to\nspecify many indexes).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_LIST", + "description": "Indexes of the occupied wfn to be localizedThis keyword can be repeated several\ntimes(useful if you have to specify many indexes).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_LOCHOMO_RESTART_FILE_NAME", + "description": "File name where to read the MOS fromwhich to restart the localization procedure\nfor occupied states", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_LOCLUMO_RESTART_FILE_NAME", + "description": "File name where to read the MOS fromwhich to restart the localization procedure\nfor unoccupied states", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_MAX_CRAZY_ANGLE", + "description": "Largest allowed angle for the crazy rotations algorithm (smaller is slower but\nmore stable).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_MAX_ITER", + "description": "Maximum number of iterations used for localization methods", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_METHOD", + "description": "Method of optimization if any", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_MIN_OR_MAX", + "description": "Requires the maximization of the spread of the wfn", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_OPERATOR", + "description": "Type of opertator which defines the spread functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_OUT_ITER_EACH", + "description": "Every how many iterations of the localization algorithm(Jacobi) the tolerance\nvalue is printed out", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_RESTART", + "description": "Restart the localization from a set of orbitals read from a localization restart\nfile.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_SECTION_PARAMETERS", + "description": "controls the activation of the MOS localization procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_STATES", + "description": "Which states to localize, LUMO up to now only available in GPW", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOCALIZE_USE_HISTORY", + "description": "Generate an improved initial guess based on a history of results, which is useful\nduring MD.Will only work if the number of states to be localized remains constant.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 106, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LOW_SPIN_ROKS", + "description": "Specify the details of the low spin ROKS method.In particular, one can specify various terms added to the energy of the high spin roks configuration with a energy scaling\nfactor, and a prescription of the spin state.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOW_SPIN_ROKS_ENERGY_SCALING", + "description": "The scaling factors for each term added to the total energy.This list should\ncontain one number for each term added to the total energy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LOW_SPIN_ROKS_SPIN_CONFIGURATION", + "description": "for each singly occupied orbital, specify if this should be an alpha (=1) or a\nbeta (=2) orbitalThis keyword should be repeated, each repetition corresponding to\nan additional term.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 107, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_DOS", + "description": "Controls the printing of the Density of States (DOS).", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_DOS_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_DOS_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_DOS_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_DOS_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_DOS_N_GRIDPOINTS", + "description": "Number of points in the computed DOS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_DOS_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 108, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE", + "description": "Controls the printing of cube files with the electronic density (states) contributing to the density of states within the specific energy range (MIN_ENERGY \u2264 E \u2264\nMAX_ENERGY). MIN_ENERGY and MAX_ENERGY need to be specified explicitly.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE_MAX_ENERGY", + "description": "Upper bounds of the energy ranges of interest.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE_MIN_ENERGY", + "description": "Lower bounds of the energy ranges of interest.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE_STRIDE", + "description": "The stride (X,Y,Z) used to write the cube file (larger values result in smaller\ncube files). You can provide 3 numbers (for X,Y,Z) or 1 number valid for all\ncomponents.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 109, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV", + "description": "Specifies the parameters needed for the chebyshev expansion based properties.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_N_CHEBYSHEV", + "description": "Order of the polynomial expansion.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_DOS", + "sub_section": "/packages/28/section_definitions/107", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV_PRINT_SPECIFIC_E_DENSITY_CUBE", + "sub_section": "/packages/28/section_definitions/108", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 110, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF_CURVY_STEPS", + "description": "Specifies the parameters of the linear scaling SCF routines", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CURVY_STEPS_FILTER_FACTOR_SCALE", + "description": "Allows for dynamic EPS_FILTER. Updates the filter factor every scf-newton step by\nFILTER_FACTOR=FILTER_FACTOR*FILTER_FACTOR_SCALE", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CURVY_STEPS_FILTER_FACTOR", + "description": "Allows to set a seperate EPS_FILTER in the newton iterations. The new EPS is\nEPS_FILTER*FILTER_FACTOR.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CURVY_STEPS_LINE_SEARCH", + "description": "Line serch type used in the curvy_setp optimization.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CURVY_STEPS_MIN_FILTER", + "description": "Lowest EPS_FILTER in dynamic filtering. Given as multiple of EPS_FILTER:\nEPS_FILTER_MIN=EPS_FILTER*MIN_FILTER", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CURVY_STEPS_MIN_HESSIAN_SHIFT", + "description": "Minimal eigenvalue shift for the Hessian in the Newton iteration. Useful for small\nband gap systems (0.5-1.0 recommended).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_CURVY_STEPS_N_BCH_HISTORY", + "description": "Number of stored matrices in the Baker-Campbell-Hausdorff series. Reduces the BCH\nevaluation during line search but can be memory intense.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 111, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF", + "description": "Specifies the parameters of the linear scaling SCF routines", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_DYNAMIC_THRESHOLD", + "description": "Should the threshold for the purification be chosen dynamically", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_EPS_DIIS", + "description": "Threshold on the convergence to start using DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_EPS_FILTER", + "description": "Threshold used for filtering matrix operations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_EPS_LANCZOS", + "description": "Threshold used for lanczos estimates.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_EPS_SCF", + "description": "target accuracy for the scf convergence. Change of the total energy per electron", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_EXTRAPOLATION_ORDER", + "description": "Number of previous matrices used for the ASPC extrapolation of the initial guess.\n0 implies that an atomic guess is used at each step. low (1-2) will result in a\ndrift of the constant of motion during MD. high (>5) might be somewhat unstable,\nleading to more SCF iterations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_FIXED_MU", + "description": "Should the calculation be performed at fixed chemical potential, or should it be\nfound fixing the number of electrons", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_INI_DIIS", + "description": "Iteration cycle to start DIIS Kohn-Sham matrix update", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_LS_DIIS", + "description": "Perform DIIS within linear scaling SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_MATRIX_CLUSTER_TYPE", + "description": "Specify how atomic blocks should be clustered in the used matrices, in order to\nimprove flop rate, and possibly speedup the matrix multiply. Note that the atomic\ns_preconditioner can not be used.Furthermore, since screening is on matrix blocks,\nslightly more accurate results can be expected with molecular.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_MAX_DIIS", + "description": "Size of LS_DIIS buffer", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_MAX_ITER_LANCZOS", + "description": "Maximum number of lanczos iterations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_MAX_SCF", + "description": "Maximum number of SCF iteration to be performed for one optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_MIXING_FRACTION", + "description": "Mixing density matrices uses the specified fraction in the SCF procedure.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_MU", + "description": "Value (or initial guess) for the chemical potential, i.e. some suitable energy\nbetween HOMO and LUMO energy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_NMIXING", + "description": "Minimal number of density mixing before start DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_NON_MONOTONIC", + "description": "Should the purification be performed non-monotonically. Relevant for TC2 only.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_PERFORM_MU_SCAN", + "description": "Do a scan of the chemical potential after the SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_PURIFICATION_METHOD", + "description": "Scheme used to purify the Kohn-Sham matrix into the density matrix.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_REPORT_ALL_SPARSITIES", + "description": "Run the sparsity report at the end of the SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_RESTART_READ", + "description": "Read the density matrix before the (first) SCF.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_RESTART_WRITE", + "description": "Write the density matrix at the end of the SCF (currently requires\nEXTRAPOLATION_ORDER>0). Files might be rather large.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_S_INVERSION", + "description": "Method used to compute the inverse of S.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_S_PRECONDITIONER", + "description": "Preconditions S with some appropriate form.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_SIGN_SQRT_ORDER", + "description": "Order of the sqrt iteration, should be 2..5, 3 or 5 recommended", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_LS_SCF_SINGLE_PRECISION_MATRICES", + "description": "Matrices used within the LS code can be either double or single precision.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF_CHEBYSHEV", + "sub_section": "/packages/28/section_definitions/109", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_LS_SCF_CURVY_STEPS", + "sub_section": "/packages/28/section_definitions/110", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 112, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_CONV_INFO", + "description": "if convergence information about the linear solver of the spline methods should be printed", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_CONV_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_CONV_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_CONV_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_CONV_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_CONV_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 113, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR", + "description": "kind of interpolation used between the multigrids", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_AINT_PRECOND", + "description": "the approximate inverse to use to get the starting point for the linear solver of\nthe spline3 methods", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_EPS_R", + "description": "accuracy on the residual for spline3 the interpolators", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_EPS_X", + "description": "accuracy on the solution for spline3 the interpolators", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_KIND", + "description": "the interpolator to use", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_MAX_ITER", + "description": "the maximum number of iterations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_PRECOND", + "description": "The preconditioner used for the linear solver of the spline3 methods", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_SAFE_COMPUTATION", + "description": "if a non unrolled calculation is to be performed in parallel", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR_CONV_INFO", + "sub_section": "/packages/28/section_definitions/112", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 114, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_MGRID_RS_GRID", + "description": "Set options that influence how the realspace grids are being distributed in parallel runs.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_RS_GRID_DISTRIBUTION_LAYOUT", + "description": "Specifies the number of slices in the x, y and z directions.-1 specifies that any\nnumber of slices is OK.If a given distribution can not be satisfied, a replicated\ngrid will result.Also see LOCK_DISTRIBUTION.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_RS_GRID_DISTRIBUTION_TYPE", + "description": "Parallelization strategy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_RS_GRID_HALO_REDUCTION_FACTOR", + "description": "Can be used to reduce the halo of the distributed grid (experimental features).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_RS_GRID_LOCK_DISTRIBUTION", + "description": "Expert use only, only basic QS deals correctly with a non-default value.If the\ndistribution is locked, a grid will have the same distribution asthe next finer\nmultigrid (provided it is distributed).If unlocked, all grids can be distributed\nfreely.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_RS_GRID_MAX_DISTRIBUTED_LEVEL", + "description": "If the multigrid-level of a grid is larger than the parameter, it will not be\ndistributed in the automatic scheme.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_RS_GRID_MEMORY_FACTOR", + "description": "A grid will only be distributed if the memory usage for that grid (including halo)\nis smaller than a replicated grid by this parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 115, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_MGRID", + "description": "multigrid information", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_COMMENSURATE", + "description": "If the grids should be commensurate. If true overrides the progression factor and\nthe cutoffs of the sub grids", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_CUTOFF", + "description": "The cutoff of the finest grid level. Default value for SE or DFTB calculation is\n1.0 [Ry].", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_MULTIGRID_CUTOFF", + "description": "List of cutoff values to set up multigrids manually", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_MULTIGRID_SET", + "description": "Activate a manual setting of the multigrids", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_NGRIDS", + "description": "The number of multigrids to use", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_PROGRESSION_FACTOR", + "description": "Factor used to find the cutoff of the multigrids that where not given explicitly", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_REALSPACE", + "description": "If both rho and rho_gspace are needed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_REL_CUTOFF", + "description": "Determines the grid at which a Gaussian is mapped, giving the cutoff used for a\ngaussian with alpha=1. A value 50+-10Ry might be required for highly accurate\nresults, Or for simulations with a variable cell. Versions prior to 2.3 used a\ndefault of 30Ry.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_MGRID_SKIP_LOAD_BALANCE_DISTRIBUTED", + "description": "Skip load balancing on distributed multigrids, which might be memory intensive.If\nnot explicitly specified, runs using more than 1024 MPI tasks will default to\n.TRUE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_MGRID_INTERPOLATOR", + "sub_section": "/packages/28/section_definitions/113", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_MGRID_RS_GRID", + "sub_section": "/packages/28/section_definitions/114", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 116, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_PERIODIC_EFIELD", + "description": "parameters for finite periodic electric field computed using the Berry phase approach. IMPORTANT: Can only be used in combination with OT. Can not be used in combination\nwith RTP or EMD.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_PERIODIC_EFIELD_INTENSITY", + "description": "Intensity of the electric field in a.u", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_PERIODIC_EFIELD_POLARISATION", + "description": "Polarisation vector of electric field", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 117, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_EWALD_MULTIPOLES", + "description": "Enables the use of multipoles in the treatment of the electrostatics.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_MULTIPOLES_EPS_POL", + "description": "Specify the rmsd threshold for the derivatives of the energy towards the Cartesian\ndipoles components", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_MULTIPOLES_MAX_IPOL_ITER", + "description": "Specify the maximum number of iterations for induced dipoles", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_MULTIPOLES_MAX_MULTIPOLE_EXPANSION", + "description": "Specify the maximum level of multipoles expansion used for the electrostatics.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_MULTIPOLES_POL_SCF", + "description": "Specify the method to obtain self consistent induced multipole moments.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_MULTIPOLES_SECTION_PARAMETERS", + "description": "Controls the activation of the Multipoles", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 118, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_EWALD_RS_GRID", + "description": "Set options that influence how the realspace grids are being distributed in parallel runs.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_RS_GRID_DISTRIBUTION_LAYOUT", + "description": "Specifies the number of slices in the x, y and z directions.-1 specifies that any\nnumber of slices is OK.If a given distribution can not be satisfied, a replicated\ngrid will result.Also see LOCK_DISTRIBUTION.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_RS_GRID_DISTRIBUTION_TYPE", + "description": "Parallelization strategy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_RS_GRID_HALO_REDUCTION_FACTOR", + "description": "Can be used to reduce the halo of the distributed grid (experimental features).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_RS_GRID_LOCK_DISTRIBUTION", + "description": "Expert use only, only basic QS deals correctly with a non-default value.If the\ndistribution is locked, a grid will have the same distribution asthe next finer\nmultigrid (provided it is distributed).If unlocked, all grids can be distributed\nfreely.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_RS_GRID_MAX_DISTRIBUTED_LEVEL", + "description": "If the multigrid-level of a grid is larger than the parameter, it will not be\ndistributed in the automatic scheme.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_RS_GRID_MEMORY_FACTOR", + "description": "A grid will only be distributed if the memory usage for that grid (including halo)\nis smaller than a replicated grid by this parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 119, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_EWALD", + "description": "Ewald parameters controlling electrostatic only for CLASSICAL MM.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_ALPHA", + "description": "alpha parameter associated with Ewald (EWALD|PME|SPME). Recommended for small\nsystems is is alpha = 3.5 / r_cut. Tuning alpha, r_cut and gmax is needed to\nobtain O(N**1.5) scaling for ewald.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_EPSILON", + "description": "tolerance of gaussians for fft interpolation (PME only)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_EWALD_ACCURACY", + "description": "Expected accuracy in the Ewald sum. This number affects only the calculation of\nthe cutoff for the real-space term of the ewald summation (EWALD|PME|SPME) as well\nas the construction of the neighbor lists (if the cutoff for non-bonded terms is\nsmaller than the value employed to compute the EWALD real-space term). This\nkeyword has no effect on the reciprocal space term (which can be tuned\nindependently).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_EWALD_TYPE", + "description": "The type of ewald you want to perform.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_GMAX", + "description": "number of grid points (SPME and EWALD). If a single number is specified,the same\nnumber of points is used for all three directions on the grid.If three numbers are\ngiven, each direction can have a different number of points.The number of points\nneeds to be FFTable (which depends on the library used) and odd for EWALD.The\noptimal number depends e.g. on alpha and the size of the cell. 1 point per\nAngstrom is common.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_NS_MAX", + "description": "number of grid points on small mesh (PME only), should be odd.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_O_SPLINE", + "description": "order of the beta-Euler spline (SPME only)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_EWALD_RCUT", + "description": "Explicitly provide the real-space cutoff of the ewald summation (EWALD|PME|SPME).\nIf present, overwrites the estimate of EWALD_ACCURACY and may affect the\nconstruction of the neighbor lists for non-bonded terms (in FIST), if the value\nspecified is larger than the cutoff for non-bonded interactions.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_EWALD_MULTIPOLES", + "sub_section": "/packages/28/section_definitions/117", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_EWALD_RS_GRID", + "sub_section": "/packages/28/section_definitions/118", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 120, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MT", + "description": "Sets up parameters of Martyna-Tuckerman poisson solver. Note that exact results are only guaranteed if the unit cell is twice as large as charge density (and serious\nartefacts can result if the cell is much smaller).", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MT_ALPHA", + "description": "Convergence parameter ALPHA*RMIN. Default value 7.0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MT_REL_CUTOFF", + "description": "Specify the multiplicative factor for the CUTOFF keyword in MULTI_GRID section.\nThe result gives the cutoff at which the 1/r non-periodic FFT3D is\nevaluated.Default is 2.0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 121, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_CHECK_SPLINE", + "description": "Controls the checking of the G-space term Spline Interpolation.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_CHECK_SPLINE_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_CHECK_SPLINE_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_CHECK_SPLINE_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_CHECK_SPLINE_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_CHECK_SPLINE_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 122, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_CONV_INFO", + "description": "if convergence information about the linear solver of the spline methods should be printed", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_CONV_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_CONV_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_CONV_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_CONV_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_CONV_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 123, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR", + "description": "controls the interpolation for the G-space term", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_AINT_PRECOND", + "description": "the approximate inverse to use to get the starting point for the linear solver of\nthe spline3 methods", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_EPS_R", + "description": "accuracy on the residual for spline3 the interpolators", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_EPS_X", + "description": "accuracy on the solution for spline3 the interpolators", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_MAX_ITER", + "description": "the maximum number of iterations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_PRECOND", + "description": "The preconditioner used for the linear solver of the spline3 methods", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR_CONV_INFO", + "sub_section": "/packages/28/section_definitions/122", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 124, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_PROGRAM_RUN_INFO", + "description": "Controls the printing of basic information during the run", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_PROGRAM_RUN_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_PROGRAM_RUN_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_PROGRAM_RUN_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_PROGRAM_RUN_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_PROGRAM_RUN_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 125, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE", + "description": "This section is used to set up the decoupling of QM periodic images with the use of density derived atomic point charges.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_ANALYTICAL_GTERM", + "description": "Evaluates the Gterm in the Ewald Scheme analytically instead of using Splines.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_EWALD_PRECISION", + "description": "Precision achieved in the Ewald sum.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_NGRIDS", + "description": "Specifies the number of grid points used for the Interpolation of the G-space term", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_RCUT", + "description": "Real space cutoff for the Ewald sum.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_CHECK_SPLINE", + "sub_section": "/packages/28/section_definitions/121", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_INTERPOLATOR", + "sub_section": "/packages/28/section_definitions/123", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE_PROGRAM_RUN_INFO", + "sub_section": "/packages/28/section_definitions/124", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 126, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_WAVELET", + "description": "Sets up parameters of wavelet based poisson solver.This solver allows for non- periodic (PERIODIC NONE) boundary conditions and slab-boundary conditions (but only\nPERIODIC XZ).It does not require very large unit cells, only that the density goes to\nzero on the faces of the cell.The use of PREFERRED_FFT_LIBRARY FFTSG is required", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_WAVELET_SCF_TYPE", + "description": "Type of scaling function used in the wavelet approach, the total energy depends on\nthis choice,and the convergence with respect to cutoff depends on the selected\nscaling functions.Possible values are 8,14,16,20,24,30,40,50,60,100", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 127, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON", + "description": "Sets up the poisson resolutor.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_PERIODIC", + "description": "Specify the directions on wich apply PBC. Important notice, this only applies to\nthe electrostatics. See the CELL section to specify the periodicity used for e.g.\nthe pair lists. Typically the settings should be the same.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_POISSON_POISSON_SOLVER", + "description": "Specify which kind of solver to use to solve the Poisson equation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_EWALD", + "sub_section": "/packages/28/section_definitions/119", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MT", + "sub_section": "/packages/28/section_definitions/120", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_MULTIPOLE", + "sub_section": "/packages/28/section_definitions/125", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_POISSON_WAVELET", + "sub_section": "/packages/28/section_definitions/126", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 128, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_PROGRAM_RUN_INFO", + "description": "Controls the printing basic info about the method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_PROGRAM_RUN_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_PROGRAM_RUN_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_PROGRAM_RUN_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_PROGRAM_RUN_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_PROGRAM_RUN_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 129, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT", + "description": "Use Becke weight population in a restraint/constraint", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_ATOMS", + "description": "Specifies the list of atoms that is summed in the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_COEFF", + "description": "Defines the the coefficient of the atom in the atom list (default is one)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_FUNCTIONAL_FORM", + "description": "Specifies the functional form of the term added", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_STRENGTH", + "description": "force constant of the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_TARGET", + "description": "target value of the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_TYPE_OF_DENSITY", + "description": "Specifies the type of density used for the fitting", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT_PROGRAM_RUN_INFO", + "sub_section": "/packages/28/section_definitions/128", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 130, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_PROGRAM_RUN_INFO", + "description": "Controls the printing basic info about the method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_PROGRAM_RUN_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_PROGRAM_RUN_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_PROGRAM_RUN_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_PROGRAM_RUN_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_PROGRAM_RUN_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 131, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT", + "description": "Use DDAPC charges in a restraint (check code for details)", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_ATOMS", + "description": "Specifies the list of atoms that is summed in the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_COEFF", + "description": "Defines the the coefficient of the atom in the atom list (default is one)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_FUNCTIONAL_FORM", + "description": "Specifies the functional form of the term added", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_STRENGTH", + "description": "force constant of the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_TARGET", + "description": "target value of the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_TYPE_OF_DENSITY", + "description": "Specifies the type of density used for the fitting", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT_PROGRAM_RUN_INFO", + "sub_section": "/packages/28/section_definitions/130", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 132, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER", + "description": "Information on where to find DFTB parameters", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_COORDINATION_CUTOFF", + "description": "Define cutoff for coordination number calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_D3_SCALING", + "description": "Scaling parameters (s6,sr6,s8) for the D3 dispersion method,", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_DISPERSION_PARAMETER_FILE", + "description": "Specify file that contains the atomic dispersion parameters for the D3 method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_DISPERSION_RADIUS", + "description": "Define radius of dispersion interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_DISPERSION_TYPE", + "description": "Use dispersion correction of the specified type. Dispersion correction has to be\nswitched on in the DFTB section.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_HB_SR_PARAM", + "description": "Uses a modified version for the GAMMA within the SCC-DFTB scheme, specifically\ntuned for hydrogen bonds. Specify the exponent used in the exponential.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_PARAM_FILE_NAME", + "description": "Specify file that contains the names of Slater-Koster tables: A plain text file,\neach line has the format \"ATOM1 ATOM2 filename.spl\".", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_PARAM_FILE_PATH", + "description": "Specify the directory with the DFTB parameter files. Used in combination with the\nfilenames specified in the file given in PARAM_FILE_NAME.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_SK_FILE", + "description": "Define parameter file for atom pair", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER_UFF_FORCE_FIELD", + "description": "Name of file with UFF parameters that will be used for the dispersion correction.\nNeeds to be specified when DISPERSION==.TRUE., otherwise cp2k crashes with a\nSegmentation Fault.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 133, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DFTB", + "description": "Parameters needed to set up the DFTB methods", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_DIAGONAL_DFTB3", + "description": "Use a diagonal version of the 3rd order energy correction (DFTB3)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_DISPERSION", + "description": "Use dispersion correction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_DO_EWALD", + "description": "Use Ewald type method instead of direct sum for Coulomb interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_EPS_DISP", + "description": "Define accuracy of dispersion interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_HB_SR_GAMMA", + "description": "Uses a modified version for the GAMMA within the SCC-DFTB scheme, specifically\ntuned for hydrogen bonds.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_ORTHOGONAL_BASIS", + "description": "Assume orthogonal basis set", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DFTB_SELF_CONSISTENT", + "description": "Use self-consistent method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DFTB_PARAMETER", + "sub_section": "/packages/28/section_definitions/132", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 134, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DISTRIBUTION", + "description": "can be used used to tune the parallel distribution of the data", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DISTRIBUTION_2D_MOLECULAR_DISTRIBUTION", + "description": "Distribute the atoms so that atoms belonging to a given molecule are on the same\nCPU for the 2D distribution. This might give rise to a worse distribution but\nreduces memory needs of finding the optimal distribution.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DISTRIBUTION_BASIC_OPTIMIZATION", + "description": "Creates a distribution based on a few heuristics using only minimal memory and CPU\ntime.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DISTRIBUTION_BASIC_SPATIAL_OPTIMIZATION", + "description": "Creates a distribution with spatial info, using only minimal memory and CPU time.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DISTRIBUTION_COST_MODEL", + "description": "The cost model that needs to be minimized", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DISTRIBUTION_SKIP_OPTIMIZATION", + "description": "Do not optimize the distribution, go for something very simple. Might be useful if\nthe optimization, which scales quadratically in system size, is too expensive.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DISTRIBUTION_SYMMETRIC", + "description": "Take the symmetry of the distribution_2d into account.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 135, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_HARRIS", + "description": "This section specifies the flags for the calculation of the harris functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_HARRIS_ACTIVATE", + "description": "Activates the harris functional.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_HARRIS_HARRIS_ENERGY", + "description": "Overrides the QS Energy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 136, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_MULLIKEN_RESTRAINT", + "description": "Use mulliken charges in a restraint (check code for details)", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_MULLIKEN_RESTRAINT_ATOMS", + "description": "Specifies the list of atoms that is summed in the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_MULLIKEN_RESTRAINT_STRENGTH", + "description": "force constant of the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_MULLIKEN_RESTRAINT_TARGET", + "description": "target value of the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 137, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_CONSTRAIN_EXPONENTS", + "description": "specifies constraints for the exponents of the lri auxiliary basis sets in the optimization.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_CONSTRAIN_EXPONENTS_FERMI_EXP", + "description": "Exponent in the fermi-like constraint function.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_CONSTRAIN_EXPONENTS_SCALE", + "description": "Defines the upper and lower boundaries as (1+scale)*exp and (1-scale)*exp. Fermi-\nlike constraint function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 138, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS", + "description": "This section specifies the parameters for optimizing the lri auxiliary basis sets for LRIGPW. The Powell optimizer is used.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_ACCURACY", + "description": "Target accuracy for the objective function (RHOEND)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_CONDITION_WEIGHT", + "description": "This keyword allows to give different weight factors to the condition number\n(LOG(cond) is used).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_DEGREES_OF_FREEDOM", + "description": "Specifies the degrees of freedom in the basis optimization.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_GEOMETRIC_SEQUENCE", + "description": "Exponents are assumed to be a geometric squence. Only the minimal and maximal\nexponents of one set are optimized and the other exponents are obtained by\ngeometric progression.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_MAX_FUN", + "description": "Maximum number of function evaluations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_STEP_SIZE", + "description": "Initial step size for search algorithm (RHOBEG)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_USE_CONDITION_NUMBER", + "description": "Determines whether condition number should be part of optimization or not", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS_CONSTRAIN_EXPONENTS", + "sub_section": "/packages/28/section_definitions/137", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 139, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_S2_RESTRAINT", + "description": "Use S2 in a re/constraint (OT only)", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_S2_RESTRAINT_FUNCTIONAL_FORM", + "description": "Specifies the functional form of the term added", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_S2_RESTRAINT_STRENGTH", + "description": "force constant of the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_S2_RESTRAINT_TARGET", + "description": "target value of the restraint", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 140, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SCPTB", + "description": "Parameters needed to set up the SCPTB methods", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_COORDINATION_CUTOFF", + "description": "Define cutoff for coordination number calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_D3_SCALING", + "description": "Scaling parameters (s6,sr6,s8) for the D3 dispersion method,", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_DISPERSION_PARAMETER_FILE", + "description": "Specify file that contains the atomic dispersion parameters", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_DISPERSION_RADIUS", + "description": "Define radius of dispersion interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_DISPERSION", + "description": "Use dispersion correction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_DO_EWALD", + "description": "Use Ewald type method instead of direct sum for Coulomb interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_DO_SCC", + "description": "Use self consistent charge method. Can be used together with DO_SCP to get TB\nmethod", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_DO_SCP", + "description": "Use SCP method. Can be used to switch off SCP to get a SCC-DFTB method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_PAIR_CUTOFF", + "description": "Define cutoff for pair potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_PARAMETER_FILE_NAME", + "description": "Specify file that contains the atomic parameters", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCPTB_STO_NG", + "description": "Provides the order of the Slater orbital expansion of Gaussian-Type Orbitals.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 141, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_COULOMB", + "description": "Setup parameters for the evaluation of the COULOMB term in SE calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_COULOMB_CUTOFF", + "description": "Atomic Cutoff Radius Cutoff for the evaluation of the Coulomb integrals. For non-\nperiodic calculation the default value is exactly the full cell dimension, in\norder to evaluate all pair interactions. Instead, for periodic calculations the\ndefault numerical value is used.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_COULOMB_RC_RANGE", + "description": "Range of cutoff switch function (tapering): 0.5*(1-TANH((r-r0)/RC_RANGE)), where\nr0=2.0*RC_TAPER-20.0*RC_RANGE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_COULOMB_RC_TAPER", + "description": "Atomic Cutoff Radius Cutoff for Tapering Coulomb integrals. If not specified it\nassumes the same value specified for the CUTOFF.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 142, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_EXCHANGE", + "description": "Setup parameters for the evaluation of the EXCHANGE and core Hamiltonian terms in SE calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_EXCHANGE_CUTOFF", + "description": "Atomic Cutoff Radius Cutoff for the evaluation of the Exchange integrals. For non-\nperiodic calculation the default value is exactly the full cell dimension, in\norder to evaluate all pair interactions. Instead, for periodic calculations the\ndefault is the minimum value between 1/4 of the cell dimension and the value\nspecified in input (either explicitly defined or the default numerical value).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_EXCHANGE_RC_RANGE", + "description": "Range of cutoff switch function (tapering): 0.5*(1-TANH((r-r0)/RC_RANGE)), where\nr0=2.0*RC_TAPER-20.0*RC_RANGE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_EXCHANGE_RC_TAPER", + "description": "Atomic Cutoff Radius Cutoff for Tapering Exchange integrals. If not specified it\nassumes the same value specified for the CUTOFF.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 143, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_GA", + "description": "Sets up memory parameters for the storage of the integrals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_GA_NCELLS", + "description": "Defines the number of linked cells for the neighbor list. Default value is number\nof processors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 144, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_LR_CORRECTION", + "description": "Setup parameters for the evaluation of the long-range correction term in SE calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_LR_CORRECTION_CUTOFF", + "description": "Atomic Cutoff Radius Cutoff for the evaluation of the long-ranbe correction\nintegrals.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_LR_CORRECTION_RC_RANGE", + "description": "Range of cutoff switch function (tapering): 0.5*(1-TANH((r-r0)/RC_RANGE)), where\nr0=2.0*RC_TAPER-20.0*RC_RANGE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_LR_CORRECTION_RC_TAPER", + "description": "Atomic Cutoff Radius Cutoff for Tapering the long-range correction integrals. If\nnot specified it assumes the same value specified for the CUTOFF.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 145, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_MEMORY", + "description": "Sets up memory parameters for the storage of the integrals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_MEMORY_COMPRESS", + "description": "Enables the compression of the integrals in memory.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_MEMORY_EPS_STORAGE", + "description": "Storage threshold for compression is EPS_STORAGE", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_MEMORY_MAX_MEMORY", + "description": "Defines the maximum amount of memory [MB] used to store precomputed (possibly\ncompressed) two-electron two-center integrals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 146, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_NEIGHBOR_LISTS", + "description": "This section specifies the input parameters for the construction of neighbor lists.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_NEIGHBOR_LISTS_GEO_CHECK", + "description": "This keyword enables the check that two atoms are never below the minimum value\nused to construct the splines during the construction of the neighbouring list.\nDisabling this keyword avoids CP2K to abort in case two atoms are below the\nminimum value of the radius used to generate the splines.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_NEIGHBOR_LISTS_NEIGHBOR_LISTS_FROM_SCRATCH", + "description": "This keyword enables the building of the neighbouring list from scratch.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_NEIGHBOR_LISTS_VERLET_SKIN", + "description": "Defines the Verlet Skin for the generation of the neighbor lists", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 147, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_SCREENING", + "description": "Setup parameters for the tapering of the Coulomb/Exchange Screening in KDSO-D integral scheme,", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_SCREENING_RC_RANGE", + "description": "Range of cutoff switch function (tapering): 0.5*(1-TANH((r-r0)/RC_RANGE)), where\nr0=2*RC_TAPER-20*RC_RANGE.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_SCREENING_RC_TAPER", + "description": "Atomic Cutoff Radius Cutoff for Tapering the screening term.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 148, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE", + "description": "Parameters needed to set up the Semi-empirical methods", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_ANALYTICAL_GRADIENTS", + "description": "Nuclear Gradients are computed analytically or numerically", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_COORDINATION_CUTOFF", + "description": "Define cutoff for coordination number calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_D3_SCALING", + "description": "Scaling parameters (s6,sr6,s8) for the D3 dispersion method,", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_DELTA", + "description": "Step size in finite difference force calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_DISPERSION_PARAMETER_FILE", + "description": "Specify file that contains the atomic dispersion parameters", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_DISPERSION_RADIUS", + "description": "Define radius of dispersion interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_DISPERSION", + "description": "Use dispersion correction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_FORCE_KDSO_D_EXCHANGE", + "description": "This keywords forces the usage of the KDSO-D integral screening for the Exchange\nintegrals (default is to apply the screening only to the Coulomb integrals.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_INTEGRAL_SCREENING", + "description": "Specifies the functional form for the", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_ORTHOGONAL_BASIS", + "description": "Assume orthogonal basis set. This flag is overwritten by methods with fixed\northogonal/non-orthogonal basis set.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_PERIODIC", + "description": "Specifies the type of treatment for the electrostatic long-range part in semi-\nempirical calculations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_SCP", + "description": "Perform a SCP-NDDO calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SE_STO_NG", + "description": "Provides the order of the Slater orbital expansion of Gaussian-Type Orbitals.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_COULOMB", + "sub_section": "/packages/28/section_definitions/141", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_EXCHANGE", + "sub_section": "/packages/28/section_definitions/142", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_GA", + "sub_section": "/packages/28/section_definitions/143", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_LR_CORRECTION", + "sub_section": "/packages/28/section_definitions/144", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_MEMORY", + "sub_section": "/packages/28/section_definitions/145", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_NEIGHBOR_LISTS", + "sub_section": "/packages/28/section_definitions/146", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE_SCREENING", + "sub_section": "/packages/28/section_definitions/147", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 149, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS", + "description": "parameters needed to set up the Quickstep framework", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_ALMO_SCF", + "description": "Perform ALMO SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_ALPHA0_HARD", + "description": "GAPW: Exponent for hard compensation charge", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_BCSR_CODE", + "description": "Selects BCSR pathway.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_CHECK_BCSR_CODE", + "description": "Check the BCSR code on actual data, once per QS run.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_CORE_PPL", + "description": "Specifies the method used to calculate the local pseudopotential contribution.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_DEBUG_LRI_INTEGRALS", + "description": "Debug the integrals needed for LRIGPW.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_CORE_CHARGE", + "description": "Precision for mapping the core charges.Overrides EPS_DEFAULT/100.0 value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_CPC", + "description": "Sets precision of the GAPW projection. Overrides EPS_DEFAULT value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_DEFAULT", + "description": "Try setting all EPS_xxx to values leading to an energy correct up to EPS_DEFAULT", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_FILTER_MATRIX", + "description": "Sets the threshold for filtering matrix elements.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_GVG_RSPACE", + "description": "Sets precision of the realspace KS matrix element integration. Overrides\nSQRT(EPS_DEFAULT) value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_KG_ORB", + "description": "Sets precision used in coloring the subsets for the Kim-Gordon method. Overrides\nSQRT(EPS_DEFAULT) value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_PGF_ORB", + "description": "Sets precision of the overlap matrix elements. Overrides SQRT(EPS_DEFAULT) value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_PPL", + "description": "Adjusts the precision for the local part of the pseudo potential.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_PPNL", + "description": "Sets precision of the non-local part of the pseudo potential. Overrides\nsqrt(EPS_DEFAULT) value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_RHO_GSPACE", + "description": "Sets precision of the density mapping in gspace.Overrides EPS_DEFAULT\nvalue..Overrides EPS_RHO value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_RHO_RSPACE", + "description": "Sets precision of the density mapping in rspace.Overrides EPS_DEFAULT\nvalue..Overrides EPS_RHO value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPS_RHO", + "description": "Sets precision of the density mapping on the grids.Overrides EPS_DEFAULT value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPSFIT", + "description": "GAPW: precision to give the extention of a hard gaussian", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPSISO", + "description": "GAPW: precision to determine an isolated projector", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPSRHO0", + "description": "GAPW : precision to determine the range of V(rho0-rho0soft)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EPSSVD", + "description": "GAPW: tolerance used in the singular value decomposition of the projector matrix", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EXTRAPOLATION_ORDER", + "description": "Order for the PS or ASPC extrapolation (typically 2-4). Higher order might bring\nmore accuracy, but comes, for large systems, also at some cost. In some cases, a\nhigh order extrapolation is not stable, and the order needs to be reduced.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_EXTRAPOLATION", + "description": "Extrapolation strategy for the wavefunction during e.g. MD.PS and ASPC are\nrecommended, see also EXTRAPOLATION_ORDER.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_FORCE_PAW", + "description": "Use the GAPW scheme also for atoms with soft basis sets, i.e. the local densities\nare computed even if hard and soft should be equal. If this keyword is not set to\ntrue, those atoms with soft basis sets are treated by a GPW scheme, i.e. the\ncorresponding density contribution goes on the global grid and is expanded in PW.\nThis option nullifies the effect of the GPW_TYPE in the atomic KIND", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_KG_METHOD", + "description": "Use a Kim-Gordon-like scheme.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_LADDN0", + "description": "GAPW : integer added to the max L of the basis set, used to determine the maximum\nvalue of L for the compensation charge density.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_LMAXN0", + "description": "GAPW : max L number for the expansion compensation densities in spherical\ngaussians", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_LMAXN1", + "description": "GAPW : max L number for expansion of the atomic densities in spherical gaussians", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_LS_SCF", + "description": "Perform a linear scaling SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_MAP_CONSISTENT", + "description": "Compute the exact derivative (Hks) of the energy with respect to the density\nmatrix. This is slightly more expensive than using an approximate computation, but\nconsistent mapping can improve the stability of the SCF procedure, especially for\na tight EPS_SCF and a less tight EPS_DEFAULT.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_MAX_RAD_LOCAL", + "description": "GAPW : maximum radius of gaussian functions included in the generation of\nprojectors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_METHOD", + "description": "Specifies the electronic structure method that should be employed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_PW_GRID_BLOCKED", + "description": "Can be used to set the distribution in g-space for the pw grids and their FFT.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_PW_GRID_LAYOUT", + "description": "Force a particular real-space layout for the plane waves grids. Numbers \u2264 0 mean\nthat this dimension is free, incorrect layouts will be ignored. The default\n(/-1,-1/) causes CP2K to select a good value, i.e. plane distributed for large\ngrids, more general distribution for small grids.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_PW_GRID", + "description": "What kind of PW_GRID should be employed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_QUADRATURE", + "description": "GAPW: algorithm to construct the atomic radial grids", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_SCP", + "description": "Introduce additional self-consistent polarization through additional response\nbasis functions (read in through AUX_BASIS.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 38, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_QS_TRANSPORT", + "description": "Perform transport calculations (coupling CP2K and OMEN)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_BECKE_RESTRAINT", + "sub_section": "/packages/28/section_definitions/129", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DDAPC_RESTRAINT", + "sub_section": "/packages/28/section_definitions/131", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DFTB", + "sub_section": "/packages/28/section_definitions/133", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_DISTRIBUTION", + "sub_section": "/packages/28/section_definitions/134", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_HARRIS", + "sub_section": "/packages/28/section_definitions/135", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_MULLIKEN_RESTRAINT", + "sub_section": "/packages/28/section_definitions/136", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_OPTIMIZE_LRI_BASIS", + "sub_section": "/packages/28/section_definitions/138", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_S2_RESTRAINT", + "sub_section": "/packages/28/section_definitions/139", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SCPTB", + "sub_section": "/packages/28/section_definitions/140", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_QS_SE", + "sub_section": "/packages/28/section_definitions/148", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 150, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION", + "description": "Parameters needed to set up the real time propagation for the electron dynamics", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_ACCURACY_REFINEMENT", + "description": "If using density propagation some parts should be calculated with a higher\naccuracy than the rest to reduce numerical noise. This factor determines by how\nmuch the filtering threshold is reduced for these calculations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_APPLY_DELTA_PULSE", + "description": "Applies a delta kick to the initial wfn (only RTP for now - the EMD case is not\nyet implemented).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_ASPC_ORDER", + "description": "Speciefies how many steps will be used for extrapolation. One will be always used\nwhich is means X(t+dt)=X(t)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_CALCULATE_IDEMPOTENCY", + "description": "Calculates the idempotency. Costs some performance. Is for free if McWeeny is used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_DELTA_PULSE_DIRECTION", + "description": "Direction of the applied electric field. The k vector is given as\n2*Pi*[i,j,k]*inv(h_mat), which for PERIODIC .FALSE. yields exp(ikr) periodic with\nthe unit cell, only if DELTA_PULSE_SCALE is set to unity. For an orthorhombic cell\n[1,0,0] yields [2*Pi/L_x,0,0]. For small cells, this results in a very large kick.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_DELTA_PULSE_SCALE", + "description": "Scale the k vector, which for PERIODIC .FALSE. results in exp(ikr) no longer being\nperiodic with the unit cell. The norm of k is the strength of the applied electric\nfield in atomic units.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_DENSITY_PROPAGATION", + "description": "The density matrix is propagated instead of the molecular orbitals. This allows\nfor a linear scaling simulation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_EPS_ITER", + "description": "Convergence criterium for the self consistent propagator loop.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_EXP_ACCURACY", + "description": "Accuracy for the taylor and pade approximation. This is only an upper bound bound\nsince the norm used for the guess is an upper bound for the needed one.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_HFX_BALANCE_IN_CORE", + "description": "If HFX is used, this keyword forces a redistribution/recalculation of the\nintegrals, balanced with respect to the in core steps.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_INITIAL_WFN", + "description": "Controls the initial WFN used for propagation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_MAT_EXP", + "description": "Which method should be used to calculate the exponential in the propagator. For\nEhrenfest MD only the Taylor method works, for real time propagation\ndiagonalization works as well.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_MAX_ITER", + "description": "Maximal number of iterations for the self consistent propagator loop.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_MCWEENY_EPS", + "description": "Threshold after which McWeeny is terminated", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_MCWEENY_MAX_ITER", + "description": "Determines the maximum amount of McWeeny steps used after each converged step in\ndensity propagation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_ORTHONORMAL", + "description": "Performs rtp in the orthonormal basis, currently only works with density\npropagation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_PERIODIC", + "description": "Apply a delta-kick that is compatible with periodic boundary conditions for any\nvalue of DELTA_PULSE_SCALE. Uses perturbation theory for the preparation of the\ninitial wfn. Note that the pulse is only applied when INITIAL_WFN is set to\nSCF_WFN, and not for restarts (RT_RESTART).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_PROPAGATOR", + "description": "Which propagator should be used for the orbitals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_SC_CHECK_START", + "description": "Speciefies how many iteration steps will be done without a check for self\nconsistency. Can save some time in big calculations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_REAL_TIME_PROPAGATION_WRITE_RESTART", + "description": "For density propagation. It writes out the density matrix after each step", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 151, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_RELATIVISTIC", + "description": "parameters needed and setup for relativistic calculations", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_RELATIVISTIC_DKH_ORDER", + "description": "The order of the DKH transformation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_RELATIVISTIC_METHOD", + "description": "type of relativistic correction used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_RELATIVISTIC_POTENTIAL", + "description": "External potential used in DKH transformation, full 1/r or erfc(r)/r", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_RELATIVISTIC_TRANSFORMATION", + "description": "Type of DKH transformation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_RELATIVISTIC_Z_CUTOFF", + "description": "The minimal atomic number considered for atom transformation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_RELATIVISTIC_ZORA_TYPE", + "description": "Type of ZORA method to be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 152, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCCS_ANDREUSSI", + "description": "Define the parameters of the dielectric smoothing function proposed by Andreussi et al.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_ANDREUSSI_RHO_MAX", + "description": "Maximum density value used for the smoothing of the dielectric function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_ANDREUSSI_RHO_MIN", + "description": "Minimum density value used for the smoothing of the dielectric function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 153, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCCS_FATTEBERT_GYGI", + "description": "Define the parameters of the dielectric smoothing function proposed by Fattebert and Gygi", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_FATTEBERT_GYGI_BETA", + "description": "Parameter \u03b2 changes the width of the interface solute-solvent", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_FATTEBERT_GYGI_RHO_ZERO", + "description": "Parameter \u03c1<sub>0</sub> defines the critical density in the middle of the\ninterface solute-solvent", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 154, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCCS", + "description": "Define the parameters for self-consistent continuum solvation (SCCS) model", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_ALPHA", + "description": "Solvent specific tunable parameter for the calculation of the repulsion term\n<i>G<sup>rep</sup> = \u03b1 S</i> where <i>S</i> is the (quantum) surface of the cavity", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_BETA", + "description": "Solvent specific tunable parameter for the calculation of the dispersion term\n<i>G<sup>dis</sup> = \u03b2 V</i> where <i>V</i> is the (quantum) volume of the cavity", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_DELTA_RHO", + "description": "Numerical increment for the calculation of the (quantum) surface of the solute\ncavity", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_DERIVATIVE_METHOD", + "description": "Method for the calculation of the numerical derivatives on the real-space grids", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_DIELECTRIC_CONSTANT", + "description": "Dielectric constant of the solvent", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_EPS_SCCS", + "description": "Tolerance for the convergence of the polarisation density, i.e. requested accuracy\nfor the SCCS iteration cycle", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_EPS_SCF", + "description": "The SCCS iteration cycle is activated only if the SCF iteration cycle is converged\nto this threshold value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_GAMMA", + "description": "Surface tension of the solvent used for the calculation of the cavitation term\n<i>G<sup>cav</sup> = \u03b3 S</i> where <i>S</i> is the (quantum) surface of the cavity", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_MAX_ITER", + "description": "Maximum number of SCCS iteration steps performed to converge within the given\ntolerance", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_METHOD", + "description": "Method used for the smoothing of the dielectric function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_MIXING", + "description": "Mixing parameter (Hartree damping) employed during the iteration procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCCS_SECTION_PARAMETERS", + "description": "Controls the activation of the SCCS section", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCCS_ANDREUSSI", + "sub_section": "/packages/28/section_definitions/152", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCCS_FATTEBERT_GYGI", + "sub_section": "/packages/28/section_definitions/153", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 155, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON", + "description": "Settings for DAVIDSON", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON_CONV_MOS_PERCENT", + "description": "Minimal percent of MOS that have to converge within the Davidson loop before the\nSCF iteration is completed and a new Hamiltonian is computed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON_ENERGY_GAP", + "description": "Should be an estimate for the energy gap [a.u.] (HOMO-LUMO) and is used in\npreconditioning, especially effective with the FULL_ALL preconditioner, in which\ncase it should be an underestimate of the gap (0.001 doing normally fine). For the\nother preconditioners, making this value larger (0.2) will tame the preconditioner\nin case of poor initial guesses.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON_FIRST_PREC", + "description": "First SCF iteration at which a Preconditioner is employed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON_NEW_PREC_EACH", + "description": "Number of SCF iterations after which a new Preconditioner is computed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON_PRECOND_SOLVER", + "description": "How the preconditioner is applied to the residual.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON_PRECONDITIONER", + "description": "Type of preconditioner to be used with all minimization schemes.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON_SPARSE_MOS", + "description": "Use MOS as sparse matrix and avoid as much as possible multiplications with full\nmatrices", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 156, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING", + "description": "Define type and parameters for mixingprocedures to be applied to the density matrix. Normally, only one type of mixing method should be accepted. The mixing procedures\nactivated by this section are only active for diagonalization methods, i.e. not with\nminimization methods based on OT.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_ALPHA", + "description": "Fraction of new density to be included", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_BETA", + "description": "Denominator parameter in Kerker damping introduced to suppress charge sloshing:\nrho_mix(g) =rho_in(g) + alpha*g^2/(g^2 + beta^2)*(rho_out(g)-rho_in(g))", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_BROY_W0", + "description": "w0 parameter used in Broyden mixing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_BROY_WMAX", + "description": "Settings for BROY_WMAX", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_BROY_WREF", + "description": "Settings for BROY_WREF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_MAX_GVEC_EXP", + "description": "Restricts the G-space mixing to lower part of G-vector spectrum, up to a G0, by\nassigning the exponent of the Gaussian that can be represented by vectors smaller\nthan G0 within a certain accuracy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_MAX_STEP", + "description": "Upper bound for the magnitude of the unpredicted step size in the update by the\nmultisecant mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_METHOD", + "description": "Mixing method to be applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_N_SIMPLE_MIX", + "description": "Number of kerker damping iterations before starting other mixing procedures", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_NBUFFER", + "description": "Number of previous steps stored for the actual mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_NMIXING", + "description": "Minimal number of density mixing (should be greater than 0),before starting DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_NSKIP", + "description": "Number of initial iteration for which the mixing is skipped", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_PULAY_ALPHA", + "description": "Fraction of new density to be added to the Pulay expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_PULAY_BETA", + "description": "Fraction of residual contribution to be added to Pulay expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_R_FACTOR", + "description": "Control factor for the magnitude of the unpredicted step size in the update by the\nmultisecant mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_REGULARIZATION", + "description": "Regularization parameter to stabilize the inversion of the residual matrix {Yn^t\nYn} in the multisecant mixing scheme (noise)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_SECTION_PARAMETERS", + "description": "Controls the activation of the mixing procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 157, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF", + "description": "Activation of self-consistenf subspace refinement by diagonalization of H by adjusting the occupation but keeping the MOS unchanged.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_EPS_ADAPT_SCF", + "description": "Required density matrix accuracy as compared to current SCF convergence", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_EPS_ENE", + "description": "Required energy accuracy for convergence of subspace diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_EPS_SKIP_SUB_DIAG", + "description": "Level of convergence to be reached before starting the internal loop of subspace\nrotations. Above this threshold only the outer diagonalization method is used. If\nnegative the subspace rotation is started at the first iteration", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MAX_ITER", + "description": "Maximum number of iterations for the SCF inner loop", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_SECTION_PARAMETERS", + "description": "controls the activation of inner SCF loop to refine occupations in MOS subspace", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING", + "sub_section": "/packages/28/section_definitions/156", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 158, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_KRYLOV", + "description": "Settings for KRYLOV", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_KRYLOV_CHECK_MOS_CONV", + "description": "This requires to check the convergence of MOS also when standard diagonalization\nsteps are performed, if the block krylov approach is active.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_KRYLOV_EPS_KRYLOV", + "description": "Convergence criterion for the MOs", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_KRYLOV_EPS_STD_DIAG", + "description": "Level of convergence to be reached before starting the Lanczos procedure. Above\nthis threshold a standard diagonalization method is used. If negative Lanczos is\nstarted at the first iteration", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_KRYLOV_NBLOCK", + "description": "Size of the block of vectors refined simultaneously by the Lanczos procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_KRYLOV_NKRYLOV", + "description": "Dimension of the Krylov space used for the Lanczos refinement", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 159, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT", + "description": "Sets the various options for the orbital transformation (OT) method. Default settings already provide an efficient, yet robust method. Most systems benefit from using the\nFULL_ALL preconditioner combined with a small value (0.001) of ENERGY_GAP.Well-behaved\nsystems might benefit from using a DIIS minimizer.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_ALGORITHM", + "description": "Algorithm to be used for OT", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_ADAPTIVE_SIGMA", + "description": "Enable adaptive curvature estimation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_BETA", + "description": "Underrelaxation for the broyden mixer", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_ENABLE_FLIP", + "description": "Ensure positive definite update", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_ETA", + "description": "Dampening of estimated energy curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_FORGET_HISTORY", + "description": "Forget history on bad approximation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_GAMMA", + "description": "Backtracking parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_OMEGA", + "description": "Growth limit of curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_SIGMA_DECREASE", + "description": "Reduction of curvature on bad approximation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_SIGMA_MIN", + "description": "Minimum adaptive curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_BROYDEN_SIGMA", + "description": "Curvature of energy functional.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_ENERGIES", + "description": "Optimize orbital energies for use in Fermi-Dirac smearing (requires ROTATION and\nFD smearing to be active).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_ENERGY_GAP", + "description": "Should be an estimate for the energy gap [a.u.] (HOMO-LUMO) and is used in\npreconditioning, especially effective with the FULL_ALL preconditioner, in which\ncase it should be an underestimate of the gap (can be a small number, e.g. 0.002).\nFULL_SINGLE_INVERSE takes it as lower bound (values below 0.05 can cause stability\nissues). In general, heigher values will tame the preconditioner in case of poor\ninitial guesses. A negative value will leave the choice to CP2K depending on type\nof preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_EPS_IRAC_FILTER_MATRIX", + "description": "Sets the threshold for filtering the matrices.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_EPS_IRAC_QUICK_EXIT", + "description": "Only one extra refinement iteration is done when the norm is below this value.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_EPS_IRAC_SWITCH", + "description": "The algorithm switches to the polynomial refinement when the norm is below this\nvalue.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_EPS_IRAC", + "description": "Targeted accuracy during the refinement iteration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_EPS_TAYLOR", + "description": "Target accuracy of the taylor expansion for the matrix functions, should normally\nbe kept as is.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_GOLD_TARGET", + "description": "Target relative uncertainty in the location of the minimum for LINESEARCH GOLD", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_IRAC_DEGREE", + "description": "The refinement polynomial degree (2, 3 or 4).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_LINESEARCH", + "description": "1D line search algorithm to be used with the OT minimizer, in increasing order of\nrobustness and cost. MINIMIZER CG combined with LINESEARCH GOLD should always find\nan electronic minimum. Whereas the 2PNT minimizer is almost always OK, 3PNT might\nbe needed for systems in which successive OT CG steps do not decrease the total\nenergy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_MAX_IRAC", + "description": "Maximum allowed refinement iteration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_MAX_TAYLOR", + "description": "Maximum order of the Taylor expansion before diagonalisation is prefered, for\nlarge parallel runs a slightly higher order could sometimes result in a small\nspeedup.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_MINIMIZER", + "description": "Minimizer to be used with the OT method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_MIXED_PRECISION", + "description": "Uses a mixed precision algorithm.With a well behaved basis set (i.e. condition\nnumber less than 1/eps_sp)it provides double precision accuracy results and up to\na 2 fold speedup for building and applying the preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_N_HISTORY_VEC", + "description": "Number of history vectors to be used with DIIS or BROYDEN", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_NONDIAG_ENERGY_STRENGTH", + "description": "The prefactor for the non-diagonal energy penalty (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_NONDIAG_ENERGY", + "description": "Add a non-diagonal energy penalty (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_OCCUPATION_PRECONDITIONER", + "description": "Preconditioner with the occupation numbers (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_ON_THE_FLY_LOC", + "description": "On the fly localization of the molecular orbitals. Can only be used with OT/IRAC.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_ORTHO_IRAC", + "description": "The orthogonality method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_PRECOND_SOLVER", + "description": "How the preconditioner is applied to the residual.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_PRECONDITIONER", + "description": "Type of preconditioner to be used with all minimization schemes. They differ in\neffectiveness, cost of construction, cost of application. Properly preconditioned\nminimization can be orders of magnitude faster than doing nothing.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_ROTATION", + "description": "Introduce additional variables so that rotations of the occupied subspace are\nallowed as well, only needed for cases where the energy is not invariant under a\nrotation of the occupied subspace such as non-singlet restricted calculations or\nfractional occupations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_SAFE_DIIS", + "description": "Reject DIIS steps if they point away from the minimum, do SD in that case.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_SCP_NDDO", + "description": "Introduce additional self-consistent polarization through response basis set =\norbital basis set for NDDO.)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_SECTION_PARAMETERS", + "description": "controls the activation of the ot method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT_STEPSIZE", + "description": "Initial stepsize used for the line search, sometimes this parameter can be reduced\nto stablize DIIS or to improve the CG behavior in the first few steps. The optimal\nvalue depends on the quality of the preconditioner. A negative values leaves the\nchoice to CP2K depending on the preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 160, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION", + "description": "Set up type and parameters for Kohn-Sham matrix diagonalization.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_ALGORITHM", + "description": "Algorithm to be used for diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_EPS_ADAPT", + "description": "Required accuracy in iterative diagonalization as compared to current SCF\nconvergence", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_EPS_ITER", + "description": "Required accuracy in iterative diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_EPS_JACOBI", + "description": "Below this threshold value for the SCF convergence the pseudo-diagonalization\nmethod using Jacobi rotations is activated. This method is much faster than a real\ndiagonalization and it is even speeding up while achieving full\nconvergence.However, it needs a pre-converged wavefunction obtained by at least\none real diagonalization which is further optimized while keeping the original\neigenvalue spectrum. The MO eigenvalues are NOT updated. The method might be\nuseful to speed up calculations for large systems e.g. using a semi-empirical\nmethod.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_JACOBI_THRESHOLD", + "description": "Controls the accuracy of the pseudo-diagonalization method using Jacobi rotations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_MAX_ITER", + "description": "Maximum number of iterations in iterative diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_SECTION_PARAMETERS", + "description": "controls the activation of the diagonalization method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DAVIDSON", + "sub_section": "/packages/28/section_definitions/155", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_DIAG_SUB_SCF", + "sub_section": "/packages/28/section_definitions/157", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_KRYLOV", + "sub_section": "/packages/28/section_definitions/158", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION_OT", + "sub_section": "/packages/28/section_definitions/159", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 161, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_MIXING", + "description": "Define type and parameters for mixingprocedures to be applied to the density matrix. Normally, only one type of mixing method should be accepted. The mixing procedures\nactivated by this section are only active for diagonalization methods, i.e. not with\nminimization methods based on OT.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_ALPHA", + "description": "Fraction of new density to be included", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_BETA", + "description": "Denominator parameter in Kerker damping introduced to suppress charge sloshing:\nrho_mix(g) =rho_in(g) + alpha*g^2/(g^2 + beta^2)*(rho_out(g)-rho_in(g))", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_BROY_W0", + "description": "w0 parameter used in Broyden mixing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_BROY_WMAX", + "description": "Settings for BROY_WMAX", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_BROY_WREF", + "description": "Settings for BROY_WREF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_MAX_GVEC_EXP", + "description": "Restricts the G-space mixing to lower part of G-vector spectrum, up to a G0, by\nassigning the exponent of the Gaussian that can be represented by vectors smaller\nthan G0 within a certain accuracy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_MAX_STEP", + "description": "Upper bound for the magnitude of the unpredicted step size in the update by the\nmultisecant mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_METHOD", + "description": "Mixing method to be applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_N_SIMPLE_MIX", + "description": "Number of kerker damping iterations before starting other mixing procedures", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_NBUFFER", + "description": "Number of previous steps stored for the actual mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_NMIXING", + "description": "Minimal number of density mixing (should be greater than 0),before starting DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_NSKIP", + "description": "Number of initial iteration for which the mixing is skipped", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_PULAY_ALPHA", + "description": "Fraction of new density to be added to the Pulay expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_PULAY_BETA", + "description": "Fraction of residual contribution to be added to Pulay expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_R_FACTOR", + "description": "Control factor for the magnitude of the unpredicted step size in the update by the\nmultisecant mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_REGULARIZATION", + "description": "Regularization parameter to stabilize the inversion of the residual matrix {Yn^t\nYn} in the multisecant mixing scheme (noise)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MIXING_SECTION_PARAMETERS", + "description": "Controls the activation of the mixing procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 162, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_OT", + "description": "Sets the various options for the orbital transformation (OT) method. Default settings already provide an efficient, yet robust method. Most systems benefit from using the\nFULL_ALL preconditioner combined with a small value (0.001) of ENERGY_GAP.Well-behaved\nsystems might benefit from using a DIIS minimizer.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_ALGORITHM", + "description": "Algorithm to be used for OT", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_ADAPTIVE_SIGMA", + "description": "Enable adaptive curvature estimation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_BETA", + "description": "Underrelaxation for the broyden mixer", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_ENABLE_FLIP", + "description": "Ensure positive definite update", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_ETA", + "description": "Dampening of estimated energy curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_FORGET_HISTORY", + "description": "Forget history on bad approximation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_GAMMA", + "description": "Backtracking parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_OMEGA", + "description": "Growth limit of curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_SIGMA_DECREASE", + "description": "Reduction of curvature on bad approximation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_SIGMA_MIN", + "description": "Minimum adaptive curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_BROYDEN_SIGMA", + "description": "Curvature of energy functional.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_ENERGIES", + "description": "Optimize orbital energies for use in Fermi-Dirac smearing (requires ROTATION and\nFD smearing to be active).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_ENERGY_GAP", + "description": "Should be an estimate for the energy gap [a.u.] (HOMO-LUMO) and is used in\npreconditioning, especially effective with the FULL_ALL preconditioner, in which\ncase it should be an underestimate of the gap (can be a small number, e.g. 0.002).\nFULL_SINGLE_INVERSE takes it as lower bound (values below 0.05 can cause stability\nissues). In general, heigher values will tame the preconditioner in case of poor\ninitial guesses. A negative value will leave the choice to CP2K depending on type\nof preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_EPS_IRAC_FILTER_MATRIX", + "description": "Sets the threshold for filtering the matrices.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_EPS_IRAC_QUICK_EXIT", + "description": "Only one extra refinement iteration is done when the norm is below this value.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_EPS_IRAC_SWITCH", + "description": "The algorithm switches to the polynomial refinement when the norm is below this\nvalue.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_EPS_IRAC", + "description": "Targeted accuracy during the refinement iteration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_EPS_TAYLOR", + "description": "Target accuracy of the taylor expansion for the matrix functions, should normally\nbe kept as is.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_GOLD_TARGET", + "description": "Target relative uncertainty in the location of the minimum for LINESEARCH GOLD", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_IRAC_DEGREE", + "description": "The refinement polynomial degree (2, 3 or 4).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_LINESEARCH", + "description": "1D line search algorithm to be used with the OT minimizer, in increasing order of\nrobustness and cost. MINIMIZER CG combined with LINESEARCH GOLD should always find\nan electronic minimum. Whereas the 2PNT minimizer is almost always OK, 3PNT might\nbe needed for systems in which successive OT CG steps do not decrease the total\nenergy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_MAX_IRAC", + "description": "Maximum allowed refinement iteration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_MAX_TAYLOR", + "description": "Maximum order of the Taylor expansion before diagonalisation is prefered, for\nlarge parallel runs a slightly higher order could sometimes result in a small\nspeedup.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_MINIMIZER", + "description": "Minimizer to be used with the OT method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_MIXED_PRECISION", + "description": "Uses a mixed precision algorithm.With a well behaved basis set (i.e. condition\nnumber less than 1/eps_sp)it provides double precision accuracy results and up to\na 2 fold speedup for building and applying the preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_N_HISTORY_VEC", + "description": "Number of history vectors to be used with DIIS or BROYDEN", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_NONDIAG_ENERGY_STRENGTH", + "description": "The prefactor for the non-diagonal energy penalty (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_NONDIAG_ENERGY", + "description": "Add a non-diagonal energy penalty (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_OCCUPATION_PRECONDITIONER", + "description": "Preconditioner with the occupation numbers (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_ON_THE_FLY_LOC", + "description": "On the fly localization of the molecular orbitals. Can only be used with OT/IRAC.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_ORTHO_IRAC", + "description": "The orthogonality method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_PRECOND_SOLVER", + "description": "How the preconditioner is applied to the residual.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_PRECONDITIONER", + "description": "Type of preconditioner to be used with all minimization schemes. They differ in\neffectiveness, cost of construction, cost of application. Properly preconditioned\nminimization can be orders of magnitude faster than doing nothing.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_ROTATION", + "description": "Introduce additional variables so that rotations of the occupied subspace are\nallowed as well, only needed for cases where the energy is not invariant under a\nrotation of the occupied subspace such as non-singlet restricted calculations or\nfractional occupations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_SAFE_DIIS", + "description": "Reject DIIS steps if they point away from the minimum, do SD in that case.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_SCP_NDDO", + "description": "Introduce additional self-consistent polarization through response basis set =\norbital basis set for NDDO.)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_SECTION_PARAMETERS", + "description": "controls the activation of the ot method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OT_STEPSIZE", + "description": "Initial stepsize used for the line search, sometimes this parameter can be reduced\nto stablize DIIS or to improve the CG behavior in the first few steps. The optimal\nvalue depends on the quality of the preconditioner. A negative values leaves the\nchoice to CP2K depending on the preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 163, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_OUTER_SCF", + "description": "parameters controlling the outer SCF loop", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_BISECT_TRUST_COUNT", + "description": "Maximum number of times the same point will be used in bisection, a small number\nguards against the effect of wrongly converged states.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_DIIS_BUFFER_LENGTH", + "description": "Maximum number of DIIS vectors used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_EPS_SCF", + "description": "The target gradient of the outer scf variables. Notice that the EPS_SCF of the\ninner loop also determines the value that can be reached in the outer loop,\ntypically EPS_SCF of the outer loop must be smaller than EPS_SCF of the inner\nloop.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_EXTRAPOLATION_ORDER", + "description": "Number of past states used in the extrapolation of the variables during e.g. MD", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_MAX_SCF", + "description": "The maximum number of outer loops", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_OPTIMIZER", + "description": "Method used to bring the outer loop to a stationary point", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_SECTION_PARAMETERS", + "description": "controls the activation of the outer SCF loop", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_STEP_SIZE", + "description": "The initial step_size used in the optimizer (currently steepest descent).Note that\nin cases where a sadle point is sought for (DDAPC_CONSTRAINT), this can be\nnegative", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_OUTER_SCF_TYPE", + "description": "Specifies which kind of outer SCF should be employed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 164, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_SMEAR", + "description": "Define the smearing of the MO occupation numbers", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_SMEAR_ELECTRONIC_TEMPERATURE", + "description": "Electronic temperature in the case of Fermi-Dirac smearing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_SMEAR_EPS_FERMI_DIRAC", + "description": "Accuracy checks on occupation numbers use this as a tolerance", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_SMEAR_FIXED_MAGNETIC_MOMENT", + "description": "Imposed difference between the numbers of electrons of spin up and spin down: m =\nn(up) - n(down). A negative value (default) allows for a change of the magnetic\nmoment. -1 specifically keeps an integer number of spin up and spin down\nelectrons.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_SMEAR_LIST", + "description": "A list of fractional occupations to use. Must match the number of states and sum\nup to the correct number of electrons", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_SMEAR_METHOD", + "description": "Smearing method to be applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_SMEAR_SECTION_PARAMETERS", + "description": "Controls the activation of smearing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_SMEAR_WINDOW_SIZE", + "description": "Size of the energy window centred at the Fermi level", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 165, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF", + "description": "parameters needed perform an scf run", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_ADDED_MOS", + "description": "Number of additional MOS added for each spin", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_CHOLESKY", + "description": "If the cholesky method should be used for computing the inverse of S, and in this\ncase calling which Lapack routines", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_EPS_DIIS", + "description": "Threshold on the convergence to start using DIAG/DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_EPS_EIGVAL", + "description": "Throw away linear combinations of basis functions with a small eigenvalue in S", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_EPS_LUMO", + "description": "target accuracy of the computation of the lumo energy", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_EPS_SCF_HISTORY", + "description": "target accuracy for the scf convergence after the history pipeline is filled", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_EPS_SCF", + "description": "target accuracy for the scf convergence", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_LEVEL_SHIFT", + "description": "Use level shifting to improve convergence", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MAX_DIIS", + "description": "Maximum number of DIIS vectors to be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MAX_ITER_LUMO", + "description": "The maximum number of iteration for the lumo computation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MAX_SCF_HISTORY", + "description": "Maximum number of SCF iterations after the history pipeline is filled", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_MAX_SCF", + "description": "Maximum number of SCF iteration to be performed for one optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_NCOL_BLOCK", + "description": "Sets the number of columns in a scalapack block", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_NROW_BLOCK", + "description": "sets the number of rows in a scalapack block", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_ROKS_F", + "description": "Allows to define the parameter f for the general ROKS scheme.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_ROKS_PARAMETERS", + "description": "Allows to define all parameters for the high-spin ROKS scheme explicitly. The full\nset of 6 parameters has to be specified in the order acc, bcc, aoo, boo, avv, bvv", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_ROKS_SCHEME", + "description": "Selects the ROKS scheme when ROKS is applied.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCF_SCF_GUESS", + "description": "Change the initial guess for the wavefunction.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_DIAGONALIZATION", + "sub_section": "/packages/28/section_definitions/160", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_MIXING", + "sub_section": "/packages/28/section_definitions/161", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_OT", + "sub_section": "/packages/28/section_definitions/162", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_OUTER_SCF", + "sub_section": "/packages/28/section_definitions/163", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCF_SMEAR", + "sub_section": "/packages/28/section_definitions/164", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 166, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCRF_PROGRAM_RUN_INFO", + "description": "Controls the printing basic info about the method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_PROGRAM_RUN_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_PROGRAM_RUN_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_PROGRAM_RUN_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_PROGRAM_RUN_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_PROGRAM_RUN_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 167, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCRF_SPHERE_CENTER", + "description": "Defines the center of the sphere.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_SPHERE_CENTER_ATOM_LIST", + "description": "Defines a list of atoms to define the center of the sphere", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_SPHERE_CENTER_FIXED", + "description": "Specify if the center of the sphere should be fixed or allowed to move", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_SPHERE_CENTER_WEIGHT_TYPE", + "description": "Defines the weight used to define the center of the sphere (if ATOM_LIST is\nprovided)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_SPHERE_CENTER_XYZ", + "description": "Coordinates of the center of the sphere", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 168, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCRF_SPHERE", + "description": "Treats the implicit solvent environment like a sphere", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_SPHERE_RADIUS", + "description": "Value of the spherical cavity in the dielectric medium", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCRF_SPHERE_CENTER", + "sub_section": "/packages/28/section_definitions/167", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 169, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCRF", + "description": "Adds an implicit solvation model to the DFT calculation. Know also as Self Consistent Reaction Field.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_EPS_OUT", + "description": "Value of the dielectric constant outside the sphere", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SCRF_LMAX", + "description": "Maximum value of L used in the multipole expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCRF_PROGRAM_RUN_INFO", + "sub_section": "/packages/28/section_definitions/166", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SCRF_SPHERE", + "sub_section": "/packages/28/section_definitions/168", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 170, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_SIC", + "description": "parameters for the self interaction correction", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SIC_ORBITAL_SET", + "description": "Type of orbitals treated with the SIC", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SIC_SIC_METHOD", + "description": "Method used to remove the self interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SIC_SIC_SCALING_A", + "description": "Scaling of the coulomb term in sic [experimental]", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_SIC_SIC_SCALING_B", + "description": "Scaling of the xc term in sic [experimental]", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 171, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_SIC", + "description": "parameters for the self interaction correction", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_SIC_ORBITAL_SET", + "description": "Type of orbitals treated with the SIC", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_SIC_SIC_METHOD", + "description": "Method used to remove the self interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_SIC_SIC_SCALING_A", + "description": "Scaling of the coulomb term in sic [experimental]", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_SIC_SIC_SCALING_B", + "description": "Scaling of the xc term in sic [experimental]", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 172, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_ADIABATIC_RESCALING", + "description": "Parameters for self interation corrected hybrid functionals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_ADIABATIC_RESCALING_FUNCTIONAL_MODEL", + "description": "Which model for the coupling constant integration should be used.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_ADIABATIC_RESCALING_FUNCTIONAL_TYPE", + "description": "Which Hybrid functional should be used. (Has to be consistent with the definitions\nin XC and HF).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_ADIABATIC_RESCALING_LAMBDA", + "description": "The point to be used along the adiabatic curve (0 < \u03bb < 1)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_ADIABATIC_RESCALING_OMEGA", + "description": "Long-range parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 173, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HF_INFO", + "description": "Controls the printing basic info about hf method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HF_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HF_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HF_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HF_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HF_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 174, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HFX_RI", + "description": "All parameters needed in a HFX RI calculation", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HFX_RI_EPS_OPTIMIZATION", + "description": "Accuracy of iterative RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HFX_RI_EPS_SCREENING", + "description": "Accuracy of geminal integral evaluation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HFX_RI_MAX_ITER", + "description": "Maximum number of iteration in RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 175, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL", + "description": "Sets up interaction potential if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL_CUTOFF_RADIUS", + "description": "Determines cutoff radius for the truncated 1/r potential. Only valid when doing\ntruncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL_OMEGA", + "description": "Parameter for short/longrange interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, longrange or shortrange).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL_SCALE_COULOMB", + "description": "Scales Hartree-Fock contribution arising from a coulomb potential. Only valid when\ndoing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL_SCALE_GAUSSIAN", + "description": "Scales Hartree-Fock contribution arising from a gaussian potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL_SCALE_LONGRANGE", + "description": "Scales Hartree-Fock contribution arising from a longrange potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL_T_C_G_DATA", + "description": "Location of the file t_c_g.dat that contains the data for the evaluation of the\ntruncated gamma function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 176, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_LOAD_BALANCE", + "description": "Parameters influencing the load balancing of the HF", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_LOAD_BALANCE_BLOCK_SIZE", + "description": "Determines the blocking used for the atomic quartet loops. A proper choice can\nspeedup the calculation. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_LOAD_BALANCE_NBINS", + "description": "Number of bins per process used to group atom quartets.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_LOAD_BALANCE_RANDOMIZE", + "description": "This flag controls the randomization of the bin assignment to processes. For\nhighly ordered input structures with a bad load balance, setting this flag to TRUE\nmight improve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 177, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_MEMORY", + "description": "Sets up memory parameters for the storage of the ERI's if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_MEMORY_EPS_STORAGE_SCALING", + "description": "Scaling factor to scale eps_schwarz. Storage threshold for compression will be\nEPS_SCHWARZ*EPS_STORAGE_SCALING.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_MEMORY_MAX_DISK_SPACE", + "description": "Defines the maximum amount of disk space [MB] used to store precomputed compressed\nfour-center integrals. If 0, nothing is stored to disk", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_MEMORY_MAX_MEMORY", + "description": "Defines the maximum amount of memory [MB] to be consumed by the full HFX module.\nAll temporary buffers and helper arrays are subtracted from this number. What\nremains will be used for storage of integrals. NOTE: This number is assumed to\nrepresent the memory available to one MPI process. When running a threaded\nversion, cp2k automatically takes care of distributing the memory among all the\nthreads within a process.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_MEMORY_STORAGE_LOCATION", + "description": "Loaction where ERI's are stored if MAX_DISK_SPACE /=0 Expects a path to a\ndirectory.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_MEMORY_TREAT_FORCES_IN_CORE", + "description": "Determines whether the derivative ERI's should be stored to RAM or not. Only\nmeaningful when performing Ehrenfest MD. Memory usage is defined via MAX_MEMORY,\ni.e. the memory is shared wit the energy ERI's.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 178, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_PERIODIC", + "description": "Sets up periodic boundary condition parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_PERIODIC_NUMBER_OF_SHELLS", + "description": "Number of shells taken into account for periodicity. By default, cp2k tries to\nautomatically evaluate this number. This algorithm might be to conservative,\nresulting in some overhead. You can try to adjust this number in order to make a\ncalculation cheaper.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 179, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_SCREENING", + "description": "Sets up screening parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_SCREENING_EPS_SCHWARZ_FORCES", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold. This will be approximately the\naccuracy of the forces, and should normally be similar to EPS_SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_SCREENING_EPS_SCHWARZ", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_SCREENING_P_SCREEN_CORRECTION_FACTOR", + "description": "Recalculates integrals on the fly if the actual density matrix is larger by a\ngiven factor than the initial one. If the factor is set to 0.0_dp, this feature is\ndisabled.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_SCREENING_SCREEN_ON_INITIAL_P", + "description": "Screen on an initial density matrix. For the first MD step this matrix must be\nprovided by a Restart File.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_SCREENING_SCREEN_P_FORCES", + "description": "Screens the electronic repulsion integrals for the forces using the density\nmatrix. This results in a significant speedup for large systems, but might require\na somewhat tigher EPS_SCHWARZ_FORCES.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 180, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF", + "description": "Sets up the Hartree-Fock parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_FRACTION", + "description": "The fraction of Hartree-Fock to add to the total energy. 1.0 implies standard\nHartree-Fock if used with XC_FUNCTIONAL NONE. NOTE: In a mixed potential\ncalculation this should be set to 1.0, otherwise all parts are multiplied with\nthis factor.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_PW_HFX_BLOCKSIZE", + "description": "Improve the performance of pw_hfx at the cost of some additional memory by storing\nthe realspace representation of PW_HFX_BLOCKSIZE states.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_PW_HFX", + "description": "Compute the Hartree-Fock energy also in the plane wave basis.The value is ignored,\nand intended for debugging only.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_TREAT_LSD_IN_CORE", + "description": "Determines how spin denisities are taken into account. If true, the beta spin\ndensity is included via a second in core call. If false, alpha and beta spins are\ndone in one shot", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HF_INFO", + "sub_section": "/packages/28/section_definitions/173", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_HFX_RI", + "sub_section": "/packages/28/section_definitions/174", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/175", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_LOAD_BALANCE", + "sub_section": "/packages/28/section_definitions/176", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_MEMORY", + "sub_section": "/packages/28/section_definitions/177", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_PERIODIC", + "sub_section": "/packages/28/section_definitions/178", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF_SCREENING", + "sub_section": "/packages/28/section_definitions/179", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 181, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_NON_LOCAL", + "description": "Information on the non local dispersion functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_NON_LOCAL_CUTOFF", + "description": "The cutoff of the FFT grid used in the calculation of the nonlocal vdW functional\n[Ry].", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_NON_LOCAL_KERNEL_FILE_NAME", + "description": "Name of the kernel data file, may include a path.vdW_kernel_table.dat is for DRSLL\nand LMKLL andrVV10_kernel_table.dat is for rVV10.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_NON_LOCAL_PARAMETERS", + "description": "Parameters b and C of the rVV10 functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_NON_LOCAL_TYPE", + "description": "Type of functional (the corresponding kernel data file should be selected).Allows\nfor common forms such as vdW-DF, vdW-DF2, optB88-vdW, rVV10.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_NON_LOCAL_VERBOSE_OUTPUT", + "description": "Extensive output for non local functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 182, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD", + "description": "Controls the printing of some info about DFTD contributions", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 183, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL", + "description": "Information on the pair potential to calculate dispersion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_ATOM_COORDINATION_NUMBERS", + "description": "Specifies the coordination number of a set of atoms for the C9 term in DFT-D3.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_ATOMPARM", + "description": "Specifies parameters for atom types (in atomic units). If not provided default\nparameters are used (DFT-D2).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_CALCULATE_C9_TERM", + "description": "Calculate C9 terms in DFT-D3 model", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_D3_SCALING", + "description": "XC Functional dependent scaling parameters (s6,sr6,s8) for the DFT-D3 method, if\nset to zero CP2K attempts to guess the xc functional from REFERENCE_FUNCTIONAL and\nsets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_D3BJ_SCALING", + "description": "XC Functional dependent scaling parameters (s6,a1,s8,a2) for the DFT-D3(BJ)\nmethod, if set to zero CP2K attempts to guess the xc functional from\nREFERENCE_FUNCTIONAL and sets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_EPS_CN", + "description": "Cutoff value for coordination number function (DFT-D3 method)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_EXP_PRE", + "description": "Prefactor in exponential damping factor (DFT-D2 potential)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_KIND_COORDINATION_NUMBERS", + "description": "Specifies the coordination number for a kind for the C9 term in DFT-D3.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_LONG_RANGE_CORRECTION", + "description": "Calculate a long range correction to the DFT-D3 model", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PARAMETER_FILE_NAME", + "description": "Name of the parameter file, may include a path", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_R_CUTOFF", + "description": "Range of potential. The cutoff will be 2 times this value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_REFERENCE_C9_TERM", + "description": "Calculate C9 terms in DFT-D3 model using reference coordination numbers", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_REFERENCE_FUNCTIONAL", + "description": "Use parameters for this specific density functional. For available D3 and D3(BJ)\nparameters see: http://www.thch.uni-bonn.de/tc/downloads/DFT-D3/functionals.html,\nhttp://www.thch.uni-bonn.de/tc/downloads/DFT-D3/functionalsbj.html", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_SCALING", + "description": "XC Functional dependent scaling parameter, if set to zero CP2K attempts to guess\nthe xc functional that is in use and sets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_TYPE", + "description": "Type of potential", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_VERBOSE_OUTPUT", + "description": "Extensive output for the DFT-D2 and DFT-D3 models", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD", + "sub_section": "/packages/28/section_definitions/182", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 184, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL", + "description": "This section combines all possible additional dispersion corrections to the normal XC functionals. This can be more functionals or simple empirical pair potentials.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_POTENTIAL_TYPE", + "description": "Type of dispersion/vdW functional or potential to use", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_NON_LOCAL", + "sub_section": "/packages/28/section_definitions/181", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL_PAIR_POTENTIAL", + "sub_section": "/packages/28/section_definitions/183", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 185, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_CPHF", + "description": "Parameters influencing the solution of the Z-vector equations in MP2 gradients calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_CPHF_EPS_CONV", + "description": "Convergence threshold for the solution of the Z-vector equations. The Z-vector\nequations have the form of a linear system of equations Ax=b, convergence is\nachieved when |Ax-b|<=EPS_CONV.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_CPHF_MAX_ITER", + "description": "Maximum number of iterations allowed for the solution of the Z-vector equations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 186, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_DIRECT_CANONICAL", + "description": "Parameters influencing the direct canonical method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_DIRECT_CANONICAL_BIG_SEND", + "description": "Send big messages between processes (useful for >48 processors).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 187, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_INTERACTION_POTENTIAL", + "description": "Parameters the interaction potential in computing the biel integrals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, TShPSC operator).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_INTERACTION_POTENTIAL_TRUNCATION_RADIUS", + "description": "Determines truncation radius for the truncated TShPSC potential. Only valid when\ndoing truncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_INTERACTION_POTENTIAL_TSHPSC_DATA", + "description": "Location of the file TShPSC.dat that contains the data for the evaluation of the\nTShPSC G0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 188, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_MP2_INFO", + "description": "Controls the printing basic info about MP2 method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_MP2_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_MP2_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_MP2_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_MP2_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_MP2_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 189, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_OPT_RI_BASIS", + "description": "Parameters influencing the optimization of the RI MP2 basis. Only exponents of non- contracted auxiliary basis can be optimized. An initial RI auxiliary basis has to be\nspecified.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_OPT_RI_BASIS_BASIS_SIZE", + "description": "Specifies the size of the auxiliary basis set automatically generated as initial\nguess. This will be effective only if RI_AUX_BASIS_SET in the KIND section and\nNUM_FUNC are not specified.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_OPT_RI_BASIS_DELTA_I_REL", + "description": "Target accuracy in the relative deviation of the amplitudes calculated with and\nwithout RI approximation, (more details in Chem.Phys.Lett.294(1998)143).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_OPT_RI_BASIS_DELTA_RI", + "description": "Target accuracy in the absolute difference between the RI-MP2 and the exact MP2\nenergy, DRI=ABS(E_MP2-E_RI-MP2).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_OPT_RI_BASIS_EPS_DERIV", + "description": "The derivatives of the MP2 energy with respect to the exponents of the basis are\ncalculated numerically. The change in the exponent a_i employed for the numerical\nevaluation is defined as h_i=EPS_DERIV*a_i.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_OPT_RI_BASIS_MAX_ITER", + "description": "Specifies the maximum number of steps in the RI basis optimization.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_OPT_RI_BASIS_NUM_FUNC", + "description": "Specifies the number of function, for each angular momentum (s, p, d ...),\nemployed in the automatically generated initial guess. This will be effective only\nif RI_AUX_BASIS_SET in the KIND section is not specified.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 190, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_LAPLACE", + "description": "Parameters influencing the RI-SOS-MP2-Laplace method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_LAPLACE_QUADRATURE_POINTS", + "description": "Number of quadrature points for the numerical integration in the RI-SOS-\nMP2-Laplace method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_LAPLACE_SIZE_INTEG_GROUP", + "description": "Group size for the integration in the Laplace method, that is the number of\nprocesses involved in the computation of each integration point. SIZE_INTEG_GROUP\nhas to be a multiple of GROUP_SIZE in the WF_CORRELATION section. The default (-1)\nis automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 191, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_MP2", + "description": "Parameters influencing the RI MP2 method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_MP2_BLOCK_SIZE", + "description": "Determines the blocking used for communication in RI-MP2. Larger BLOCK_SIZE\nreduces communication but requires more memory. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_MP2_EPS_CANONICAL", + "description": "Threshold for discriminate if a given ij pairs of the unrelaxed MP2 density matrix\nhas to be calculated with a canonical reformulation based on the occupied\neigenvalues differences.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_MP2_FREE_HFX_BUFFER", + "description": "Free the buffer containing the 4 center integrals used in the Hartree-Fock\nexchange calculation. This will be effective only for gradients calculations,\nsince for the energy only case, the buffers are released by default. (Right now\ndebugging only).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 192, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO", + "description": "Controls the printing basic info about hf method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 193, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI", + "description": "All parameters needed in a HFX RI calculation", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_EPS_OPTIMIZATION", + "description": "Accuracy of iterative RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_EPS_SCREENING", + "description": "Accuracy of geminal integral evaluation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_MAX_ITER", + "description": "Maximum number of iteration in RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 194, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL", + "description": "Sets up interaction potential if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_CUTOFF_RADIUS", + "description": "Determines cutoff radius for the truncated 1/r potential. Only valid when doing\ntruncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_OMEGA", + "description": "Parameter for short/longrange interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, longrange or shortrange).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_COULOMB", + "description": "Scales Hartree-Fock contribution arising from a coulomb potential. Only valid when\ndoing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_GAUSSIAN", + "description": "Scales Hartree-Fock contribution arising from a gaussian potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_LONGRANGE", + "description": "Scales Hartree-Fock contribution arising from a longrange potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_T_C_G_DATA", + "description": "Location of the file t_c_g.dat that contains the data for the evaluation of the\ntruncated gamma function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 195, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE", + "description": "Parameters influencing the load balancing of the HF", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_BLOCK_SIZE", + "description": "Determines the blocking used for the atomic quartet loops. A proper choice can\nspeedup the calculation. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_NBINS", + "description": "Number of bins per process used to group atom quartets.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_RANDOMIZE", + "description": "This flag controls the randomization of the bin assignment to processes. For\nhighly ordered input structures with a bad load balance, setting this flag to TRUE\nmight improve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 196, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY", + "description": "Sets up memory parameters for the storage of the ERI's if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_EPS_STORAGE_SCALING", + "description": "Scaling factor to scale eps_schwarz. Storage threshold for compression will be\nEPS_SCHWARZ*EPS_STORAGE_SCALING.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_MAX_DISK_SPACE", + "description": "Defines the maximum amount of disk space [MB] used to store precomputed compressed\nfour-center integrals. If 0, nothing is stored to disk", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_MAX_MEMORY", + "description": "Defines the maximum amount of memory [MB] to be consumed by the full HFX module.\nAll temporary buffers and helper arrays are subtracted from this number. What\nremains will be used for storage of integrals. NOTE: This number is assumed to\nrepresent the memory available to one MPI process. When running a threaded\nversion, cp2k automatically takes care of distributing the memory among all the\nthreads within a process.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_STORAGE_LOCATION", + "description": "Loaction where ERI's are stored if MAX_DISK_SPACE /=0 Expects a path to a\ndirectory.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_TREAT_FORCES_IN_CORE", + "description": "Determines whether the derivative ERI's should be stored to RAM or not. Only\nmeaningful when performing Ehrenfest MD. Memory usage is defined via MAX_MEMORY,\ni.e. the memory is shared wit the energy ERI's.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 197, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC", + "description": "Sets up periodic boundary condition parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC_NUMBER_OF_SHELLS", + "description": "Number of shells taken into account for periodicity. By default, cp2k tries to\nautomatically evaluate this number. This algorithm might be to conservative,\nresulting in some overhead. You can try to adjust this number in order to make a\ncalculation cheaper.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 198, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING", + "description": "Sets up screening parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_EPS_SCHWARZ_FORCES", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold. This will be approximately the\naccuracy of the forces, and should normally be similar to EPS_SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_EPS_SCHWARZ", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_P_SCREEN_CORRECTION_FACTOR", + "description": "Recalculates integrals on the fly if the actual density matrix is larger by a\ngiven factor than the initial one. If the factor is set to 0.0_dp, this feature is\ndisabled.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_SCREEN_ON_INITIAL_P", + "description": "Screen on an initial density matrix. For the first MD step this matrix must be\nprovided by a Restart File.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_SCREEN_P_FORCES", + "description": "Screens the electronic repulsion integrals for the forces using the density\nmatrix. This results in a significant speedup for large systems, but might require\na somewhat tigher EPS_SCHWARZ_FORCES.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 199, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF", + "description": "Sets up the Hartree-Fock parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_FRACTION", + "description": "The fraction of Hartree-Fock to add to the total energy. 1.0 implies standard\nHartree-Fock if used with XC_FUNCTIONAL NONE. NOTE: In a mixed potential\ncalculation this should be set to 1.0, otherwise all parts are multiplied with\nthis factor.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_PW_HFX_BLOCKSIZE", + "description": "Improve the performance of pw_hfx at the cost of some additional memory by storing\nthe realspace representation of PW_HFX_BLOCKSIZE states.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_PW_HFX", + "description": "Compute the Hartree-Fock energy also in the plane wave basis.The value is ignored,\nand intended for debugging only.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_TREAT_LSD_IN_CORE", + "description": "Determines how spin denisities are taken into account. If true, the beta spin\ndensity is included via a second in core call. If false, alpha and beta spins are\ndone in one shot", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO", + "sub_section": "/packages/28/section_definitions/192", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI", + "sub_section": "/packages/28/section_definitions/193", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/194", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE", + "sub_section": "/packages/28/section_definitions/195", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY", + "sub_section": "/packages/28/section_definitions/196", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC", + "sub_section": "/packages/28/section_definitions/197", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING", + "sub_section": "/packages/28/section_definitions/198", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 200, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA", + "description": "Parameters influencing the RI RPA method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_MINIMAX_QUADRATURE", + "description": "Use the Minimax quadrature scheme for performing the numerical integration.\nMaximum number of quadrature point limited to 20.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_MM_STYLE", + "description": "Matrix multiplication style for the Q matrix.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_QUADRATURE_POINTS", + "description": "Number of quadrature points for the numerical integration in the RI-RPA method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_SIZE_FREQ_INTEG_GROUP", + "description": "Group size for frequency integration, that is the number of processes involved in\nthe computation of each integration point. SIZE_FREQ_INTEG_GROUP has to be a\nmultiple of GROUP_SIZE in the WF_CORRELATION section. The default (-1) is\nautomatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA_HF", + "sub_section": "/packages/28/section_definitions/199", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 201, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_WFC_GPW", + "description": "Parameters for the GPW approach in Wavefunction-based Correlation methods", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_WFC_GPW_CUTOFF", + "description": "The cutoff of the finest grid level in the MP2 gpw integration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_WFC_GPW_EPS_FILTER", + "description": "Determines a threshold for the DBCSR based multiply (usually 10 times smaller than\nEPS_GRID).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_WFC_GPW_EPS_GRID", + "description": "Determines a threshold for the GPW based integration", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_WFC_GPW_PRINT_LEVEL", + "description": "How much output is written by the individual groups.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_WFC_GPW_REL_CUTOFF", + "description": "Determines the grid at which a Gaussian is mapped.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 202, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION", + "description": "Sets up the Wavefunction-based Correlation parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_CALC_COND_NUM", + "description": "Calculate the condition number of the (P|Q) matrix for the RI methods.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_COL_BLOCK", + "description": "Size of the column block used in the SCALAPACK block cyclic data\ndistribution.Default is (COL_BLOCK=-1) is automatic. A proper choice can speedup\nthe parallel matrix multiplication in the case of RI-RPA and RI-SOS-MP2-Laplace.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_GROUP_SIZE", + "description": "Group size used in the computation of the integrals. Default is to use all\nprocessors (GROUP_SIZE=-1).A smaller group size (for example the node size), might\na better choice if the actual MP2 time is large compared to integral computation\ntime. This is usually the case if the total number of processors is not too large.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_MEMORY", + "description": "Maximum allowed total memory usage during MP2 methods [Mb].", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_METHOD", + "description": "Which method should be used to compute the MP2 energy", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_ROW_BLOCK", + "description": "Size of the row block used in the SCALAPACK block cyclic data distribution.Default\nis (ROW_BLOCK=-1) is automatic. A proper choice can speedup the parallel matrix\nmultiplication in the case of RI-RPA and RI-SOS-MP2-Laplace.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_SCALE_S", + "description": "Scaling factor of the singlet energy component (opposite spin, OS).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_SCALE_T", + "description": "Scaling factor of the triplet energy component (same spin, SS).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_CPHF", + "sub_section": "/packages/28/section_definitions/185", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_DIRECT_CANONICAL", + "sub_section": "/packages/28/section_definitions/186", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/187", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_MP2_INFO", + "sub_section": "/packages/28/section_definitions/188", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_OPT_RI_BASIS", + "sub_section": "/packages/28/section_definitions/189", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_LAPLACE", + "sub_section": "/packages/28/section_definitions/190", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_MP2", + "sub_section": "/packages/28/section_definitions/191", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_RI_RPA", + "sub_section": "/packages/28/section_definitions/200", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION_WFC_GPW", + "sub_section": "/packages/28/section_definitions/201", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 203, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC", + "description": "Uses the Becke 88 longrange exchange functional in an adiabatic fashion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_LAMBDA", + "description": "Defines the parameter of the adiabatic curve", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_OMEGA", + "description": "Potential parameter in erf(omega*r)/r", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 204, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR", + "description": "Uses the Becke 88 longrange exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_OMEGA", + "description": "Potential parameter in erf(omega*r)/r", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 205, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88", + "description": "Uses the Becke 88 exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 206, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE97", + "description": "Uses the Becke 97 exchange correlation functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE97_PARAMETRIZATION", + "description": "switches between the B97 and Grimme parametrization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE97_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE97_SCALE_X", + "description": "scales the exchange part of the functional, if -1 the default for the given\nparametrization is used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE97_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 207, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL", + "description": "Becke Roussel exchange hole model. Can be usedas long range correction with a truncated coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_CUTOFF_RADIUS", + "description": "Defines the cutoff radius for the truncation. If put to zero, the standard full\nrange potential will be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_GAMMA", + "description": "Parameter in the exchange hole. Usually this is put to 1.0 or 0.8", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 208, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BEEF", + "description": "Uses the BEEFvdW exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BEEF_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BEEF_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 209, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_CS1", + "description": "Uses the CS1 functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_CS1_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 210, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_GV09", + "description": "Combination of three different exchange hole models", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_GV09_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_GV09_GAMMA", + "description": "Parameter for Becke Roussel hole", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_GV09_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_GV09_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 211, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_HCTH", + "description": "Uses the HCTH class of functionals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_HCTH_PARAMETER_SET", + "description": "Which version of the parameters should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_HCTH_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 212, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_GGA", + "description": "Uses one of the KE_GGA functionals (optimized versions of some of these functionals might be available outside this section). These functionals are needed for the\ncomputation of the kinetic energy in the Kim-Gordon method.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_GGA_FUNCTIONAL", + "description": "Which one of the KE_GGA functionals should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_GGA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 213, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_LIBXC", + "description": "To be used for KG runs. Uses kinetic energy functionals from LIBXC, see also http://www.tddft.org/programs/octopus/wiki/index.php/Libxc", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_LIBXC_FUNCTIONAL", + "description": "names of the functionals, see also\nhttp://www.tddft.org/programs/octopus/wiki/index.php/Libxc:manual .The precise\nlist of available functionals depends on the version of libxc interfaced\n(currently 2.0.1).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_LIBXC_PARAMETERS", + "description": "parameters of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_LIBXC_SCALE", + "description": "scaling factors of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_LIBXC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 214, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR", + "description": "LDA exchange hole model in truncated coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 215, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LIBXC", + "description": "Uses functionals from LIBXC, see also http://www.tddft.org/programs/octopus/wiki/index.php/Libxc", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LIBXC_FUNCTIONAL", + "description": "names of the functionals, see also\nhttp://www.tddft.org/programs/octopus/wiki/index.php/Libxc:manual .The precise\nlist of available functionals depends on the version of libxc interfaced\n(currently 2.0.1).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LIBXC_PARAMETERS", + "description": "parameters of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LIBXC_SCALE", + "description": "scaling factors of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LIBXC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 216, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LYP_ADIABATIC", + "description": "Uses the LYP correlation functional in an adiabatic fashion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LYP_ADIABATIC_LAMBDA", + "description": "Defines the parameter of the adiabatic curve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LYP_ADIABATIC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 217, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LYP", + "description": "Uses the LYP functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LYP_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LYP_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 218, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_OPTX", + "description": "Uses the OPTX functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_OPTX_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_OPTX_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 219, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_P86C", + "description": "Uses the P86C functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_P86C_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_P86C_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 220, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PADE", + "description": "Uses the PADE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PADE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 221, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR", + "description": "PBE exchange hole model in trucanted coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 222, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE", + "description": "Uses the PBE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_PARAMETRIZATION", + "description": "switches between the different parametrizations of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 223, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PW92", + "description": "Uses the PerdewWang correlation functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PW92_PARAMETRIZATION", + "description": "Which one of parametrizations should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PW92_SCALE", + "description": "Scaling of the energy functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PW92_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 224, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PZ81", + "description": "Uses the PZ functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PZ81_PARAMETRIZATION", + "description": "Which one of parametrizations should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PZ81_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PZ81_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 225, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TFW", + "description": "Uses the TFW functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TFW_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 226, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TF", + "description": "Uses the TF functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TF_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 227, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TPSS", + "description": "Uses the TPSS functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TPSS_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TPSS_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TPSS_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 228, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_VWN", + "description": "Uses the VWN functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_VWN_FUNCTIONAL_TYPE", + "description": "Which version of the VWN functional should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_VWN_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_VWN_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 229, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XALPHA", + "description": "Uses the XALPHA (SLATER) functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XALPHA_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XALPHA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XALPHA_XA", + "description": "Value of the xa parameter (this does not change the exponent, just the mixing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 230, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XGGA", + "description": "Uses one of the XGGA functionals (optimized versions of some of these functionals might be available outside this section).", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XGGA_FUNCTIONAL", + "description": "Which one of the XGGA functionals should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XGGA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 231, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XWPBE", + "description": "Uses the short range PBE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XWPBE_OMEGA", + "description": "screening parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XWPBE_SCALE_X0", + "description": "scales the exchange part of the original hole PBE-functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XWPBE_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XWPBE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 232, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL", + "description": "The xc functional to use", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_SECTION_PARAMETERS", + "description": "Shortcut for the most common functional combinations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC", + "sub_section": "/packages/28/section_definitions/203", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88_LR", + "sub_section": "/packages/28/section_definitions/204", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE88", + "sub_section": "/packages/28/section_definitions/205", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE97", + "sub_section": "/packages/28/section_definitions/206", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL", + "sub_section": "/packages/28/section_definitions/207", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_BEEF", + "sub_section": "/packages/28/section_definitions/208", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_CS1", + "sub_section": "/packages/28/section_definitions/209", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_GV09", + "sub_section": "/packages/28/section_definitions/210", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_HCTH", + "sub_section": "/packages/28/section_definitions/211", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_GGA", + "sub_section": "/packages/28/section_definitions/212", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 10, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_KE_LIBXC", + "sub_section": "/packages/28/section_definitions/213", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 11, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR", + "sub_section": "/packages/28/section_definitions/214", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 12, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LIBXC", + "sub_section": "/packages/28/section_definitions/215", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 13, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LYP_ADIABATIC", + "sub_section": "/packages/28/section_definitions/216", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 14, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_LYP", + "sub_section": "/packages/28/section_definitions/217", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 15, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_OPTX", + "sub_section": "/packages/28/section_definitions/218", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 16, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_P86C", + "sub_section": "/packages/28/section_definitions/219", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 17, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PADE", + "sub_section": "/packages/28/section_definitions/220", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 18, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR", + "sub_section": "/packages/28/section_definitions/221", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 19, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PBE", + "sub_section": "/packages/28/section_definitions/222", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 20, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PW92", + "sub_section": "/packages/28/section_definitions/223", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 21, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_PZ81", + "sub_section": "/packages/28/section_definitions/224", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 22, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TFW", + "sub_section": "/packages/28/section_definitions/225", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 23, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TF", + "sub_section": "/packages/28/section_definitions/226", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 24, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_TPSS", + "sub_section": "/packages/28/section_definitions/227", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 25, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_VWN", + "sub_section": "/packages/28/section_definitions/228", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 26, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XALPHA", + "sub_section": "/packages/28/section_definitions/229", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 27, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XGGA", + "sub_section": "/packages/28/section_definitions/230", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 28, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL_XWPBE", + "sub_section": "/packages/28/section_definitions/231", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 233, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_GRID", + "description": "The xc parameters used when calculating the xc on the grid", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_GRID_USE_FINER_GRID", + "description": "Uses a finer grid only to calculate the xc", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_GRID_XC_DERIV", + "description": "The method used to compute the derivatives", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_GRID_XC_SMOOTH_RHO", + "description": "The density smoothing used for the xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 234, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_POTENTIAL_SAOP", + "description": "Uses the SAOP potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_POTENTIAL_SAOP_ALPHA", + "description": "Value of the alpha parameter (default = 1.19).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_POTENTIAL_SAOP_BETA", + "description": "Value of the beta parameter (default = 0.01).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_POTENTIAL_SAOP_K_RHO", + "description": "Value of the K_rho parameter (default = 0.42).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 235, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_POTENTIAL", + "description": "The xc potential to use (CAREFUL: xc potential here refers to potentials that are not derived from an xc functional, but rather are modelled directly. Therefore there is no\nconsistent xc energy available. To still get an energy expression, see ENERGY below", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_POTENTIAL_ENERGY", + "description": "How to determine the total energy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_POTENTIAL_SAOP", + "sub_section": "/packages/28/section_definitions/234", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 236, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC", + "description": "parameters needed calculate the xc potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_DENSITY_CUTOFF", + "description": "The cutoff on the density used by the xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_DENSITY_SMOOTH_CUTOFF_RANGE", + "description": "Parameter for the smoothing procedure inxc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_FUNCTIONAL_ROUTINE", + "description": "Select the code for xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_GRADIENT_CUTOFF", + "description": "The cutoff on the gradient of the density used by the xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_XC_TAU_CUTOFF", + "description": "The cutoff on tau used by the xc calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_ADIABATIC_RESCALING", + "sub_section": "/packages/28/section_definitions/172", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_HF", + "sub_section": "/packages/28/section_definitions/180", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_VDW_POTENTIAL", + "sub_section": "/packages/28/section_definitions/184", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_WF_CORRELATION", + "sub_section": "/packages/28/section_definitions/202", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_FUNCTIONAL", + "sub_section": "/packages/28/section_definitions/232", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_GRID", + "sub_section": "/packages/28/section_definitions/233", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC_XC_POTENTIAL", + "sub_section": "/packages/28/section_definitions/235", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 237, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT", + "description": "parameters needed to set up the Time Dependent Density Functional PT", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_CONVERGENCE", + "description": "The convergence of the eigenvalues", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_DIAG_METHOD", + "description": "Diagonalization method used in tddfpt", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_INVERT_S", + "description": "use the inverse of the overlap matrix", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_KERNEL", + "description": "compute the kernel (debug purpose only)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_LSD_SINGLETS", + "description": "compute singlets using lsd vxc kernel", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_MAX_KV", + "description": "maximal number of Krylov space vectors", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_NEV", + "description": "number of excitations to calculate", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_NLUMO", + "description": "number of additional unoccupied orbitals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_NREORTHO", + "description": "number of reorthogonalization steps", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_OE_CORR", + "description": "Which type of orbital eigenvalue correction to use\\n(to yield better HOMO-LUMO\nenergies)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_PRECONDITIONER", + "description": "use the preconditioner (only for Davidson)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_RES_ETYPE", + "description": "(singlets/triplets) for restricted calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TDDFPT_RESTARTS", + "description": "maximal number subspace search restarts", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_SIC", + "sub_section": "/packages/28/section_definitions/171", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TDDFPT_XC", + "sub_section": "/packages/28/section_definitions/236", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 238, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_TRANSPORT", + "description": "Specifies the parameters for transport, sets parameters for the OMEN code, see also http://www.nano-tcad.ethz.ch/", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_BANDWIDTH", + "description": "The number of neighboring unit cells that one unit cell interacts with.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_COLZERO_THRESHOLD", + "description": "The smallest number that is not zero in the full diagonalization part.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_CORES_PER_NODE", + "description": "Number of cores per node.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_DENSITY_MATRIX_CONSTRUCTION_METHOD", + "description": "Method used for constructing the density matrix", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_ENERGY_INTERVAL", + "description": "Average distance for big intervals in energy vector.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_EPS_DECAY", + "description": "The smallest imaginary part that a decaying eigenvalue may have not to be\nconsidered as propagating.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_EPS_EIGVAL_DEGEN", + "description": "Filter for degenerate bands in the injection vector.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_EPS_LIMIT", + "description": "The smallest eigenvalue that is kept.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_EPS_MU", + "description": "Accuracy to which the Fermi level should be determined.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_EPS_SINGULARITY_CURVATURES", + "description": "Filter for degenerate bands in the bandstructure.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_MIN_INTERVAL", + "description": "Smallest enery distance in energy vector.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_N_ABSCISSAE", + "description": "The number of abscissae per integration interval on the real axis.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_N_CELLS", + "description": "The number of unit cells.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_N_DOF", + "description": "Number of degrees of freedom for the contact unit cell.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_N_KPOINTS", + "description": "The number of k points for determination of the singularities.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_NUM_CONTACTS", + "description": "The number of contacts.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_NUM_INTERVAL", + "description": "Max number of energy points per small interval.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_TASKS_PER_POINT", + "description": "Number of tasks per energy point.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_TRANSPORT_TEMPERATURE", + "description": "Temperature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 239, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_LOCALIZE", + "description": "Use one of the available methods to define the localization and possibly to optimize it to a minimum or a maximum.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_CRAZY_SCALE", + "description": "scale angles", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_CRAZY_USE_DIAG", + "description": "Use diagonalization (slow) or pade based calculation of matrix exponentials.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_ENERGY_RANGE", + "description": "Select the orbitals to be localized within the given energy range.This type of\nselection cannot be added on top of the selection through a LIST. It reads to\nreals that are lower and higher boundaries of the energy range.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_EPS_LOCALIZATION", + "description": "Tolerance used in the convergence criterium of the localization methods.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_EPS_OCCUPATION", + "description": "Tolerance in the occupation number to select only fully occupied orbitals for the\nrotation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_JACOBI_FALLBACK", + "description": "Use Jacobi method in case no convergence was achieved by using the crazy rotations\nmethod.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_LIST_UNOCCUPIED", + "description": "Indexes of the unoccupied states to be localized, up to now only valid in\ncombination with GPW. This keyword has to be present if unoccupied states should\nbe localized. This keyword can be repeated several times(useful if you have to\nspecify many indexes).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_LIST", + "description": "Indexes of the occupied wfn to be localizedThis keyword can be repeated several\ntimes(useful if you have to specify many indexes).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_LOCHOMO_RESTART_FILE_NAME", + "description": "File name where to read the MOS fromwhich to restart the localization procedure\nfor occupied states", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_LOCLUMO_RESTART_FILE_NAME", + "description": "File name where to read the MOS fromwhich to restart the localization procedure\nfor unoccupied states", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_MAX_CRAZY_ANGLE", + "description": "Largest allowed angle for the crazy rotations algorithm (smaller is slower but\nmore stable).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_MAX_ITER", + "description": "Maximum number of iterations used for localization methods", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_METHOD", + "description": "Method of optimization if any", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_MIN_OR_MAX", + "description": "Requires the maximization of the spread of the wfn", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_OPERATOR", + "description": "Type of opertator which defines the spread functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_OUT_ITER_EACH", + "description": "Every how many iterations of the localization algorithm(Jacobi) the tolerance\nvalue is printed out", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_RESTART", + "description": "Restart the localization from a set of orbitals read from a localization restart\nfile.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_SECTION_PARAMETERS", + "description": "controls the activation of the MOS localization procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_STATES", + "description": "Which states to localize, LUMO up to now only available in GPW", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_LOCALIZE_USE_HISTORY", + "description": "Generate an improved initial guess based on a history of results, which is useful\nduring MD.Will only work if the number of states to be localized remains constant.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 240, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON", + "description": "Settings for DAVIDSON", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON_CONV_MOS_PERCENT", + "description": "Minimal percent of MOS that have to converge within the Davidson loop before the\nSCF iteration is completed and a new Hamiltonian is computed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON_ENERGY_GAP", + "description": "Should be an estimate for the energy gap [a.u.] (HOMO-LUMO) and is used in\npreconditioning, especially effective with the FULL_ALL preconditioner, in which\ncase it should be an underestimate of the gap (0.001 doing normally fine). For the\nother preconditioners, making this value larger (0.2) will tame the preconditioner\nin case of poor initial guesses.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON_FIRST_PREC", + "description": "First SCF iteration at which a Preconditioner is employed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON_NEW_PREC_EACH", + "description": "Number of SCF iterations after which a new Preconditioner is computed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON_PRECOND_SOLVER", + "description": "How the preconditioner is applied to the residual.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON_PRECONDITIONER", + "description": "Type of preconditioner to be used with all minimization schemes.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON_SPARSE_MOS", + "description": "Use MOS as sparse matrix and avoid as much as possible multiplications with full\nmatrices", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 241, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING", + "description": "Define type and parameters for mixingprocedures to be applied to the density matrix. Normally, only one type of mixing method should be accepted. The mixing procedures\nactivated by this section are only active for diagonalization methods, i.e. not with\nminimization methods based on OT.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_ALPHA", + "description": "Fraction of new density to be included", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_BETA", + "description": "Denominator parameter in Kerker damping introduced to suppress charge sloshing:\nrho_mix(g) =rho_in(g) + alpha*g^2/(g^2 + beta^2)*(rho_out(g)-rho_in(g))", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_BROY_W0", + "description": "w0 parameter used in Broyden mixing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_BROY_WMAX", + "description": "Settings for BROY_WMAX", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_BROY_WREF", + "description": "Settings for BROY_WREF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_MAX_GVEC_EXP", + "description": "Restricts the G-space mixing to lower part of G-vector spectrum, up to a G0, by\nassigning the exponent of the Gaussian that can be represented by vectors smaller\nthan G0 within a certain accuracy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_MAX_STEP", + "description": "Upper bound for the magnitude of the unpredicted step size in the update by the\nmultisecant mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_METHOD", + "description": "Mixing method to be applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_N_SIMPLE_MIX", + "description": "Number of kerker damping iterations before starting other mixing procedures", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_NBUFFER", + "description": "Number of previous steps stored for the actual mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_NMIXING", + "description": "Minimal number of density mixing (should be greater than 0),before starting DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_NSKIP", + "description": "Number of initial iteration for which the mixing is skipped", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_PULAY_ALPHA", + "description": "Fraction of new density to be added to the Pulay expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_PULAY_BETA", + "description": "Fraction of residual contribution to be added to Pulay expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_R_FACTOR", + "description": "Control factor for the magnitude of the unpredicted step size in the update by the\nmultisecant mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_REGULARIZATION", + "description": "Regularization parameter to stabilize the inversion of the residual matrix {Yn^t\nYn} in the multisecant mixing scheme (noise)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING_SECTION_PARAMETERS", + "description": "Controls the activation of the mixing procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 242, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF", + "description": "Activation of self-consistenf subspace refinement by diagonalization of H by adjusting the occupation but keeping the MOS unchanged.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_EPS_ADAPT_SCF", + "description": "Required density matrix accuracy as compared to current SCF convergence", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_EPS_ENE", + "description": "Required energy accuracy for convergence of subspace diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_EPS_SKIP_SUB_DIAG", + "description": "Level of convergence to be reached before starting the internal loop of subspace\nrotations. Above this threshold only the outer diagonalization method is used. If\nnegative the subspace rotation is started at the first iteration", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MAX_ITER", + "description": "Maximum number of iterations for the SCF inner loop", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_SECTION_PARAMETERS", + "description": "controls the activation of inner SCF loop to refine occupations in MOS subspace", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF_MIXING", + "sub_section": "/packages/28/section_definitions/241", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 243, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_KRYLOV", + "description": "Settings for KRYLOV", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_KRYLOV_CHECK_MOS_CONV", + "description": "This requires to check the convergence of MOS also when standard diagonalization\nsteps are performed, if the block krylov approach is active.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_KRYLOV_EPS_KRYLOV", + "description": "Convergence criterion for the MOs", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_KRYLOV_EPS_STD_DIAG", + "description": "Level of convergence to be reached before starting the Lanczos procedure. Above\nthis threshold a standard diagonalization method is used. If negative Lanczos is\nstarted at the first iteration", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_KRYLOV_NBLOCK", + "description": "Size of the block of vectors refined simultaneously by the Lanczos procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_KRYLOV_NKRYLOV", + "description": "Dimension of the Krylov space used for the Lanczos refinement", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 244, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT", + "description": "Sets the various options for the orbital transformation (OT) method. Default settings already provide an efficient, yet robust method. Most systems benefit from using the\nFULL_ALL preconditioner combined with a small value (0.001) of ENERGY_GAP.Well-behaved\nsystems might benefit from using a DIIS minimizer.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_ALGORITHM", + "description": "Algorithm to be used for OT", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_ADAPTIVE_SIGMA", + "description": "Enable adaptive curvature estimation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_BETA", + "description": "Underrelaxation for the broyden mixer", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_ENABLE_FLIP", + "description": "Ensure positive definite update", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_ETA", + "description": "Dampening of estimated energy curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_FORGET_HISTORY", + "description": "Forget history on bad approximation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_GAMMA", + "description": "Backtracking parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_OMEGA", + "description": "Growth limit of curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_SIGMA_DECREASE", + "description": "Reduction of curvature on bad approximation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_SIGMA_MIN", + "description": "Minimum adaptive curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_BROYDEN_SIGMA", + "description": "Curvature of energy functional.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_ENERGIES", + "description": "Optimize orbital energies for use in Fermi-Dirac smearing (requires ROTATION and\nFD smearing to be active).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_ENERGY_GAP", + "description": "Should be an estimate for the energy gap [a.u.] (HOMO-LUMO) and is used in\npreconditioning, especially effective with the FULL_ALL preconditioner, in which\ncase it should be an underestimate of the gap (can be a small number, e.g. 0.002).\nFULL_SINGLE_INVERSE takes it as lower bound (values below 0.05 can cause stability\nissues). In general, heigher values will tame the preconditioner in case of poor\ninitial guesses. A negative value will leave the choice to CP2K depending on type\nof preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_EPS_IRAC_FILTER_MATRIX", + "description": "Sets the threshold for filtering the matrices.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_EPS_IRAC_QUICK_EXIT", + "description": "Only one extra refinement iteration is done when the norm is below this value.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_EPS_IRAC_SWITCH", + "description": "The algorithm switches to the polynomial refinement when the norm is below this\nvalue.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_EPS_IRAC", + "description": "Targeted accuracy during the refinement iteration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_EPS_TAYLOR", + "description": "Target accuracy of the taylor expansion for the matrix functions, should normally\nbe kept as is.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_GOLD_TARGET", + "description": "Target relative uncertainty in the location of the minimum for LINESEARCH GOLD", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_IRAC_DEGREE", + "description": "The refinement polynomial degree (2, 3 or 4).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_LINESEARCH", + "description": "1D line search algorithm to be used with the OT minimizer, in increasing order of\nrobustness and cost. MINIMIZER CG combined with LINESEARCH GOLD should always find\nan electronic minimum. Whereas the 2PNT minimizer is almost always OK, 3PNT might\nbe needed for systems in which successive OT CG steps do not decrease the total\nenergy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_MAX_IRAC", + "description": "Maximum allowed refinement iteration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_MAX_TAYLOR", + "description": "Maximum order of the Taylor expansion before diagonalisation is prefered, for\nlarge parallel runs a slightly higher order could sometimes result in a small\nspeedup.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_MINIMIZER", + "description": "Minimizer to be used with the OT method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_MIXED_PRECISION", + "description": "Uses a mixed precision algorithm.With a well behaved basis set (i.e. condition\nnumber less than 1/eps_sp)it provides double precision accuracy results and up to\na 2 fold speedup for building and applying the preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_N_HISTORY_VEC", + "description": "Number of history vectors to be used with DIIS or BROYDEN", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_NONDIAG_ENERGY_STRENGTH", + "description": "The prefactor for the non-diagonal energy penalty (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_NONDIAG_ENERGY", + "description": "Add a non-diagonal energy penalty (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_OCCUPATION_PRECONDITIONER", + "description": "Preconditioner with the occupation numbers (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_ON_THE_FLY_LOC", + "description": "On the fly localization of the molecular orbitals. Can only be used with OT/IRAC.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_ORTHO_IRAC", + "description": "The orthogonality method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_PRECOND_SOLVER", + "description": "How the preconditioner is applied to the residual.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_PRECONDITIONER", + "description": "Type of preconditioner to be used with all minimization schemes. They differ in\neffectiveness, cost of construction, cost of application. Properly preconditioned\nminimization can be orders of magnitude faster than doing nothing.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_ROTATION", + "description": "Introduce additional variables so that rotations of the occupied subspace are\nallowed as well, only needed for cases where the energy is not invariant under a\nrotation of the occupied subspace such as non-singlet restricted calculations or\nfractional occupations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_SAFE_DIIS", + "description": "Reject DIIS steps if they point away from the minimum, do SD in that case.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_SCP_NDDO", + "description": "Introduce additional self-consistent polarization through response basis set =\norbital basis set for NDDO.)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_SECTION_PARAMETERS", + "description": "controls the activation of the ot method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT_STEPSIZE", + "description": "Initial stepsize used for the line search, sometimes this parameter can be reduced\nto stablize DIIS or to improve the CG behavior in the first few steps. The optimal\nvalue depends on the quality of the preconditioner. A negative values leaves the\nchoice to CP2K depending on the preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 245, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION", + "description": "Set up type and parameters for Kohn-Sham matrix diagonalization.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_ALGORITHM", + "description": "Algorithm to be used for diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_EPS_ADAPT", + "description": "Required accuracy in iterative diagonalization as compared to current SCF\nconvergence", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_EPS_ITER", + "description": "Required accuracy in iterative diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_EPS_JACOBI", + "description": "Below this threshold value for the SCF convergence the pseudo-diagonalization\nmethod using Jacobi rotations is activated. This method is much faster than a real\ndiagonalization and it is even speeding up while achieving full\nconvergence.However, it needs a pre-converged wavefunction obtained by at least\none real diagonalization which is further optimized while keeping the original\neigenvalue spectrum. The MO eigenvalues are NOT updated. The method might be\nuseful to speed up calculations for large systems e.g. using a semi-empirical\nmethod.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_JACOBI_THRESHOLD", + "description": "Controls the accuracy of the pseudo-diagonalization method using Jacobi rotations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_MAX_ITER", + "description": "Maximum number of iterations in iterative diagonalization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_SECTION_PARAMETERS", + "description": "controls the activation of the diagonalization method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DAVIDSON", + "sub_section": "/packages/28/section_definitions/240", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_DIAG_SUB_SCF", + "sub_section": "/packages/28/section_definitions/242", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_KRYLOV", + "sub_section": "/packages/28/section_definitions/243", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION_OT", + "sub_section": "/packages/28/section_definitions/244", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 246, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_MIXING", + "description": "Define type and parameters for mixingprocedures to be applied to the density matrix. Normally, only one type of mixing method should be accepted. The mixing procedures\nactivated by this section are only active for diagonalization methods, i.e. not with\nminimization methods based on OT.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_ALPHA", + "description": "Fraction of new density to be included", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_BETA", + "description": "Denominator parameter in Kerker damping introduced to suppress charge sloshing:\nrho_mix(g) =rho_in(g) + alpha*g^2/(g^2 + beta^2)*(rho_out(g)-rho_in(g))", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_BROY_W0", + "description": "w0 parameter used in Broyden mixing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_BROY_WMAX", + "description": "Settings for BROY_WMAX", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_BROY_WREF", + "description": "Settings for BROY_WREF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_MAX_GVEC_EXP", + "description": "Restricts the G-space mixing to lower part of G-vector spectrum, up to a G0, by\nassigning the exponent of the Gaussian that can be represented by vectors smaller\nthan G0 within a certain accuracy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_MAX_STEP", + "description": "Upper bound for the magnitude of the unpredicted step size in the update by the\nmultisecant mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_METHOD", + "description": "Mixing method to be applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_N_SIMPLE_MIX", + "description": "Number of kerker damping iterations before starting other mixing procedures", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_NBUFFER", + "description": "Number of previous steps stored for the actual mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_NMIXING", + "description": "Minimal number of density mixing (should be greater than 0),before starting DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_NSKIP", + "description": "Number of initial iteration for which the mixing is skipped", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_PULAY_ALPHA", + "description": "Fraction of new density to be added to the Pulay expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_PULAY_BETA", + "description": "Fraction of residual contribution to be added to Pulay expansion", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_R_FACTOR", + "description": "Control factor for the magnitude of the unpredicted step size in the update by the\nmultisecant mixing scheme", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_REGULARIZATION", + "description": "Regularization parameter to stabilize the inversion of the residual matrix {Yn^t\nYn} in the multisecant mixing scheme (noise)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MIXING_SECTION_PARAMETERS", + "description": "Controls the activation of the mixing procedure", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 247, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_OT", + "description": "Sets the various options for the orbital transformation (OT) method. Default settings already provide an efficient, yet robust method. Most systems benefit from using the\nFULL_ALL preconditioner combined with a small value (0.001) of ENERGY_GAP.Well-behaved\nsystems might benefit from using a DIIS minimizer.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_ALGORITHM", + "description": "Algorithm to be used for OT", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_ADAPTIVE_SIGMA", + "description": "Enable adaptive curvature estimation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_BETA", + "description": "Underrelaxation for the broyden mixer", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_ENABLE_FLIP", + "description": "Ensure positive definite update", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_ETA", + "description": "Dampening of estimated energy curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_FORGET_HISTORY", + "description": "Forget history on bad approximation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_GAMMA", + "description": "Backtracking parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_OMEGA", + "description": "Growth limit of curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_SIGMA_DECREASE", + "description": "Reduction of curvature on bad approximation.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_SIGMA_MIN", + "description": "Minimum adaptive curvature.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_BROYDEN_SIGMA", + "description": "Curvature of energy functional.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_ENERGIES", + "description": "Optimize orbital energies for use in Fermi-Dirac smearing (requires ROTATION and\nFD smearing to be active).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_ENERGY_GAP", + "description": "Should be an estimate for the energy gap [a.u.] (HOMO-LUMO) and is used in\npreconditioning, especially effective with the FULL_ALL preconditioner, in which\ncase it should be an underestimate of the gap (can be a small number, e.g. 0.002).\nFULL_SINGLE_INVERSE takes it as lower bound (values below 0.05 can cause stability\nissues). In general, heigher values will tame the preconditioner in case of poor\ninitial guesses. A negative value will leave the choice to CP2K depending on type\nof preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_EPS_IRAC_FILTER_MATRIX", + "description": "Sets the threshold for filtering the matrices.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_EPS_IRAC_QUICK_EXIT", + "description": "Only one extra refinement iteration is done when the norm is below this value.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_EPS_IRAC_SWITCH", + "description": "The algorithm switches to the polynomial refinement when the norm is below this\nvalue.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_EPS_IRAC", + "description": "Targeted accuracy during the refinement iteration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_EPS_TAYLOR", + "description": "Target accuracy of the taylor expansion for the matrix functions, should normally\nbe kept as is.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 18, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_GOLD_TARGET", + "description": "Target relative uncertainty in the location of the minimum for LINESEARCH GOLD", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 19, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_IRAC_DEGREE", + "description": "The refinement polynomial degree (2, 3 or 4).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 20, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_LINESEARCH", + "description": "1D line search algorithm to be used with the OT minimizer, in increasing order of\nrobustness and cost. MINIMIZER CG combined with LINESEARCH GOLD should always find\nan electronic minimum. Whereas the 2PNT minimizer is almost always OK, 3PNT might\nbe needed for systems in which successive OT CG steps do not decrease the total\nenergy.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 21, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_MAX_IRAC", + "description": "Maximum allowed refinement iteration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 22, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_MAX_TAYLOR", + "description": "Maximum order of the Taylor expansion before diagonalisation is prefered, for\nlarge parallel runs a slightly higher order could sometimes result in a small\nspeedup.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 23, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_MINIMIZER", + "description": "Minimizer to be used with the OT method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 24, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_MIXED_PRECISION", + "description": "Uses a mixed precision algorithm.With a well behaved basis set (i.e. condition\nnumber less than 1/eps_sp)it provides double precision accuracy results and up to\na 2 fold speedup for building and applying the preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 25, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_N_HISTORY_VEC", + "description": "Number of history vectors to be used with DIIS or BROYDEN", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 26, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_NONDIAG_ENERGY_STRENGTH", + "description": "The prefactor for the non-diagonal energy penalty (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 27, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_NONDIAG_ENERGY", + "description": "Add a non-diagonal energy penalty (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 28, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_OCCUPATION_PRECONDITIONER", + "description": "Preconditioner with the occupation numbers (FD smearing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 29, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_ON_THE_FLY_LOC", + "description": "On the fly localization of the molecular orbitals. Can only be used with OT/IRAC.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 30, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_ORTHO_IRAC", + "description": "The orthogonality method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 31, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_PRECOND_SOLVER", + "description": "How the preconditioner is applied to the residual.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 32, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_PRECONDITIONER", + "description": "Type of preconditioner to be used with all minimization schemes. They differ in\neffectiveness, cost of construction, cost of application. Properly preconditioned\nminimization can be orders of magnitude faster than doing nothing.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 33, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_ROTATION", + "description": "Introduce additional variables so that rotations of the occupied subspace are\nallowed as well, only needed for cases where the energy is not invariant under a\nrotation of the occupied subspace such as non-singlet restricted calculations or\nfractional occupations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 34, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_SAFE_DIIS", + "description": "Reject DIIS steps if they point away from the minimum, do SD in that case.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 35, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_SCP_NDDO", + "description": "Introduce additional self-consistent polarization through response basis set =\norbital basis set for NDDO.)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 36, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_SECTION_PARAMETERS", + "description": "controls the activation of the ot method", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 37, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OT_STEPSIZE", + "description": "Initial stepsize used for the line search, sometimes this parameter can be reduced\nto stablize DIIS or to improve the CG behavior in the first few steps. The optimal\nvalue depends on the quality of the preconditioner. A negative values leaves the\nchoice to CP2K depending on the preconditioner.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 248, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF", + "description": "parameters controlling the outer SCF loop", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_BISECT_TRUST_COUNT", + "description": "Maximum number of times the same point will be used in bisection, a small number\nguards against the effect of wrongly converged states.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_DIIS_BUFFER_LENGTH", + "description": "Maximum number of DIIS vectors used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_EPS_SCF", + "description": "The target gradient of the outer scf variables. Notice that the EPS_SCF of the\ninner loop also determines the value that can be reached in the outer loop,\ntypically EPS_SCF of the outer loop must be smaller than EPS_SCF of the inner\nloop.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_EXTRAPOLATION_ORDER", + "description": "Number of past states used in the extrapolation of the variables during e.g. MD", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_MAX_SCF", + "description": "The maximum number of outer loops", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_OPTIMIZER", + "description": "Method used to bring the outer loop to a stationary point", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_SECTION_PARAMETERS", + "description": "controls the activation of the outer SCF loop", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_STEP_SIZE", + "description": "The initial step_size used in the optimizer (currently steepest descent).Note that\nin cases where a sadle point is sought for (DDAPC_CONSTRAINT), this can be\nnegative", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF_TYPE", + "description": "Specifies which kind of outer SCF should be employed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 249, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR", + "description": "Define the smearing of the MO occupation numbers", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR_ELECTRONIC_TEMPERATURE", + "description": "Electronic temperature in the case of Fermi-Dirac smearing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR_EPS_FERMI_DIRAC", + "description": "Accuracy checks on occupation numbers use this as a tolerance", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR_FIXED_MAGNETIC_MOMENT", + "description": "Imposed difference between the numbers of electrons of spin up and spin down: m =\nn(up) - n(down). A negative value (default) allows for a change of the magnetic\nmoment. -1 specifically keeps an integer number of spin up and spin down\nelectrons.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR_LIST", + "description": "A list of fractional occupations to use. Must match the number of states and sum\nup to the correct number of electrons", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR_METHOD", + "description": "Smearing method to be applied", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR_SECTION_PARAMETERS", + "description": "Controls the activation of smearing", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR_WINDOW_SIZE", + "description": "Size of the energy window centred at the Fermi level", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 250, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF", + "description": "parameters needed perform an scf run", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_ADDED_MOS", + "description": "Number of additional MOS added for each spin", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_CHOLESKY", + "description": "If the cholesky method should be used for computing the inverse of S, and in this\ncase calling which Lapack routines", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_EPS_DIIS", + "description": "Threshold on the convergence to start using DIAG/DIIS", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_EPS_EIGVAL", + "description": "Throw away linear combinations of basis functions with a small eigenvalue in S", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_EPS_LUMO", + "description": "target accuracy of the computation of the lumo energy", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_EPS_SCF_HISTORY", + "description": "target accuracy for the scf convergence after the history pipeline is filled", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_EPS_SCF", + "description": "target accuracy for the scf convergence", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_LEVEL_SHIFT", + "description": "Use level shifting to improve convergence", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MAX_DIIS", + "description": "Maximum number of DIIS vectors to be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MAX_ITER_LUMO", + "description": "The maximum number of iteration for the lumo computation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MAX_SCF_HISTORY", + "description": "Maximum number of SCF iterations after the history pipeline is filled", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_MAX_SCF", + "description": "Maximum number of SCF iteration to be performed for one optimization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_NCOL_BLOCK", + "description": "Sets the number of columns in a scalapack block", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_NROW_BLOCK", + "description": "sets the number of rows in a scalapack block", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_ROKS_F", + "description": "Allows to define the parameter f for the general ROKS scheme.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_ROKS_PARAMETERS", + "description": "Allows to define all parameters for the high-spin ROKS scheme explicitly. The full\nset of 6 parameters has to be specified in the order acc, bcc, aoo, boo, avv, bvv", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 16, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_ROKS_SCHEME", + "description": "Selects the ROKS scheme when ROKS is applied.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 17, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SCF_SCF_GUESS", + "description": "Change the initial guess for the wavefunction.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_DIAGONALIZATION", + "sub_section": "/packages/28/section_definitions/245", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_MIXING", + "sub_section": "/packages/28/section_definitions/246", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_OT", + "sub_section": "/packages/28/section_definitions/247", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_OUTER_SCF", + "sub_section": "/packages/28/section_definitions/248", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF_SMEAR", + "sub_section": "/packages/28/section_definitions/249", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 251, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS", + "description": "Sets the method of choice to calculate core-level excitation spectra. The occupied states from which we calculate the excitation should be specified. Localization of\nthe orbitals may be useful.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_ADDED_MOS", + "description": "Number of additional MOS added spin up only", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_ATOMS_LIST", + "description": "Indexes of the atoms to be excitedThis keyword can be repeated several\ntimes(useful if you have to specify many indexes).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_DIPOLE_FORM", + "description": "Type of integral to get the oscillator strengths in the diipole approximation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_EPS_ADDED", + "description": "target accuracy incalculation of the added orbitals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_MAX_ITER_ADDED", + "description": "maximum number of iteration in calculation of added orbitals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_METHOD", + "description": "Method to be used to calculate core-level excitation spectra", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_NGAUSS", + "description": "Number of gto's for the expansion of the stoof the type given by STATE_TYPE", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_RESTART", + "description": "Restart the excited state if the restart file exists", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_SECTION_PARAMETERS", + "description": "controls the activation of core-level spectroscopy simulations", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_STATE_SEARCH", + "description": "# of states where to look for the one to be excited", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_STATE_TYPE", + "description": "Type of the orbitas that are excited for the xas spectra calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_WFN_RESTART_FILE_NAME", + "description": "Root of the file names where to read the MOS fromwhich to restart the calculation\nof the core level excited states", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_XAS_CORE", + "description": "Occupation of the core state in XAS calculation by TP_FLEX.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_XAS_TOT_EL", + "description": "Total number of electrons for spin channel alpha, in XAS calculation by TP_FLEX.If\nnegative value, the number of electrons is set to GS number of electron minus the\namount subtracted from the core state", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_XES_CORE", + "description": "Occupation of the core state in XES calculation by TP_VAL.The homo is emptied by\nthe same amount", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XAS_XES_EMPTY_HOMO", + "description": "Set the occupation of the HOMO in XES calculation by TP_VAL.The HOMO can be\nemptied or not, if the core is still full", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_LOCALIZE", + "sub_section": "/packages/28/section_definitions/239", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XAS_SCF", + "sub_section": "/packages/28/section_definitions/250", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 252, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_ADIABATIC_RESCALING", + "description": "Parameters for self interation corrected hybrid functionals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_ADIABATIC_RESCALING_FUNCTIONAL_MODEL", + "description": "Which model for the coupling constant integration should be used.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_ADIABATIC_RESCALING_FUNCTIONAL_TYPE", + "description": "Which Hybrid functional should be used. (Has to be consistent with the definitions\nin XC and HF).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_ADIABATIC_RESCALING_LAMBDA", + "description": "The point to be used along the adiabatic curve (0 < \u03bb < 1)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_ADIABATIC_RESCALING_OMEGA", + "description": "Long-range parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 253, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_HF_INFO", + "description": "Controls the printing basic info about hf method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_HF_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_HF_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_HF_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_HF_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_HF_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 254, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_HFX_RI", + "description": "All parameters needed in a HFX RI calculation", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_HFX_RI_EPS_OPTIMIZATION", + "description": "Accuracy of iterative RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_HFX_RI_EPS_SCREENING", + "description": "Accuracy of geminal integral evaluation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_HFX_RI_MAX_ITER", + "description": "Maximum number of iteration in RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 255, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL", + "description": "Sets up interaction potential if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL_CUTOFF_RADIUS", + "description": "Determines cutoff radius for the truncated 1/r potential. Only valid when doing\ntruncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL_OMEGA", + "description": "Parameter for short/longrange interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, longrange or shortrange).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL_SCALE_COULOMB", + "description": "Scales Hartree-Fock contribution arising from a coulomb potential. Only valid when\ndoing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL_SCALE_GAUSSIAN", + "description": "Scales Hartree-Fock contribution arising from a gaussian potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL_SCALE_LONGRANGE", + "description": "Scales Hartree-Fock contribution arising from a longrange potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL_T_C_G_DATA", + "description": "Location of the file t_c_g.dat that contains the data for the evaluation of the\ntruncated gamma function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 256, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_LOAD_BALANCE", + "description": "Parameters influencing the load balancing of the HF", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_LOAD_BALANCE_BLOCK_SIZE", + "description": "Determines the blocking used for the atomic quartet loops. A proper choice can\nspeedup the calculation. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_LOAD_BALANCE_NBINS", + "description": "Number of bins per process used to group atom quartets.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_LOAD_BALANCE_RANDOMIZE", + "description": "This flag controls the randomization of the bin assignment to processes. For\nhighly ordered input structures with a bad load balance, setting this flag to TRUE\nmight improve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 257, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_MEMORY", + "description": "Sets up memory parameters for the storage of the ERI's if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_MEMORY_EPS_STORAGE_SCALING", + "description": "Scaling factor to scale eps_schwarz. Storage threshold for compression will be\nEPS_SCHWARZ*EPS_STORAGE_SCALING.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_MEMORY_MAX_DISK_SPACE", + "description": "Defines the maximum amount of disk space [MB] used to store precomputed compressed\nfour-center integrals. If 0, nothing is stored to disk", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_MEMORY_MAX_MEMORY", + "description": "Defines the maximum amount of memory [MB] to be consumed by the full HFX module.\nAll temporary buffers and helper arrays are subtracted from this number. What\nremains will be used for storage of integrals. NOTE: This number is assumed to\nrepresent the memory available to one MPI process. When running a threaded\nversion, cp2k automatically takes care of distributing the memory among all the\nthreads within a process.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_MEMORY_STORAGE_LOCATION", + "description": "Loaction where ERI's are stored if MAX_DISK_SPACE /=0 Expects a path to a\ndirectory.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_MEMORY_TREAT_FORCES_IN_CORE", + "description": "Determines whether the derivative ERI's should be stored to RAM or not. Only\nmeaningful when performing Ehrenfest MD. Memory usage is defined via MAX_MEMORY,\ni.e. the memory is shared wit the energy ERI's.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 258, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_PERIODIC", + "description": "Sets up periodic boundary condition parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_PERIODIC_NUMBER_OF_SHELLS", + "description": "Number of shells taken into account for periodicity. By default, cp2k tries to\nautomatically evaluate this number. This algorithm might be to conservative,\nresulting in some overhead. You can try to adjust this number in order to make a\ncalculation cheaper.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 259, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_SCREENING", + "description": "Sets up screening parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_SCREENING_EPS_SCHWARZ_FORCES", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold. This will be approximately the\naccuracy of the forces, and should normally be similar to EPS_SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_SCREENING_EPS_SCHWARZ", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_SCREENING_P_SCREEN_CORRECTION_FACTOR", + "description": "Recalculates integrals on the fly if the actual density matrix is larger by a\ngiven factor than the initial one. If the factor is set to 0.0_dp, this feature is\ndisabled.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_SCREENING_SCREEN_ON_INITIAL_P", + "description": "Screen on an initial density matrix. For the first MD step this matrix must be\nprovided by a Restart File.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_SCREENING_SCREEN_P_FORCES", + "description": "Screens the electronic repulsion integrals for the forces using the density\nmatrix. This results in a significant speedup for large systems, but might require\na somewhat tigher EPS_SCHWARZ_FORCES.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 260, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF", + "description": "Sets up the Hartree-Fock parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_FRACTION", + "description": "The fraction of Hartree-Fock to add to the total energy. 1.0 implies standard\nHartree-Fock if used with XC_FUNCTIONAL NONE. NOTE: In a mixed potential\ncalculation this should be set to 1.0, otherwise all parts are multiplied with\nthis factor.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_PW_HFX_BLOCKSIZE", + "description": "Improve the performance of pw_hfx at the cost of some additional memory by storing\nthe realspace representation of PW_HFX_BLOCKSIZE states.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_PW_HFX", + "description": "Compute the Hartree-Fock energy also in the plane wave basis.The value is ignored,\nand intended for debugging only.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_HF_TREAT_LSD_IN_CORE", + "description": "Determines how spin denisities are taken into account. If true, the beta spin\ndensity is included via a second in core call. If false, alpha and beta spins are\ndone in one shot", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_HF_INFO", + "sub_section": "/packages/28/section_definitions/253", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_HFX_RI", + "sub_section": "/packages/28/section_definitions/254", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/255", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_LOAD_BALANCE", + "sub_section": "/packages/28/section_definitions/256", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_MEMORY", + "sub_section": "/packages/28/section_definitions/257", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_PERIODIC", + "sub_section": "/packages/28/section_definitions/258", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_HF_SCREENING", + "sub_section": "/packages/28/section_definitions/259", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 261, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_NON_LOCAL", + "description": "Information on the non local dispersion functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_NON_LOCAL_CUTOFF", + "description": "The cutoff of the FFT grid used in the calculation of the nonlocal vdW functional\n[Ry].", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_NON_LOCAL_KERNEL_FILE_NAME", + "description": "Name of the kernel data file, may include a path.vdW_kernel_table.dat is for DRSLL\nand LMKLL andrVV10_kernel_table.dat is for rVV10.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_NON_LOCAL_PARAMETERS", + "description": "Parameters b and C of the rVV10 functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_NON_LOCAL_TYPE", + "description": "Type of functional (the corresponding kernel data file should be selected).Allows\nfor common forms such as vdW-DF, vdW-DF2, optB88-vdW, rVV10.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_NON_LOCAL_VERBOSE_OUTPUT", + "description": "Extensive output for non local functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 262, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD", + "description": "Controls the printing of some info about DFTD contributions", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 263, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL", + "description": "Information on the pair potential to calculate dispersion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_ATOM_COORDINATION_NUMBERS", + "description": "Specifies the coordination number of a set of atoms for the C9 term in DFT-D3.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_ATOMPARM", + "description": "Specifies parameters for atom types (in atomic units). If not provided default\nparameters are used (DFT-D2).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_CALCULATE_C9_TERM", + "description": "Calculate C9 terms in DFT-D3 model", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_D3_SCALING", + "description": "XC Functional dependent scaling parameters (s6,sr6,s8) for the DFT-D3 method, if\nset to zero CP2K attempts to guess the xc functional from REFERENCE_FUNCTIONAL and\nsets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_D3BJ_SCALING", + "description": "XC Functional dependent scaling parameters (s6,a1,s8,a2) for the DFT-D3(BJ)\nmethod, if set to zero CP2K attempts to guess the xc functional from\nREFERENCE_FUNCTIONAL and sets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_EPS_CN", + "description": "Cutoff value for coordination number function (DFT-D3 method)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_EXP_PRE", + "description": "Prefactor in exponential damping factor (DFT-D2 potential)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_KIND_COORDINATION_NUMBERS", + "description": "Specifies the coordination number for a kind for the C9 term in DFT-D3.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 8, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_LONG_RANGE_CORRECTION", + "description": "Calculate a long range correction to the DFT-D3 model", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 9, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PARAMETER_FILE_NAME", + "description": "Name of the parameter file, may include a path", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 10, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_R_CUTOFF", + "description": "Range of potential. The cutoff will be 2 times this value", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 11, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_REFERENCE_C9_TERM", + "description": "Calculate C9 terms in DFT-D3 model using reference coordination numbers", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 12, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_REFERENCE_FUNCTIONAL", + "description": "Use parameters for this specific density functional. For available D3 and D3(BJ)\nparameters see: http://www.thch.uni-bonn.de/tc/downloads/DFT-D3/functionals.html,\nhttp://www.thch.uni-bonn.de/tc/downloads/DFT-D3/functionalsbj.html", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 13, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_SCALING", + "description": "XC Functional dependent scaling parameter, if set to zero CP2K attempts to guess\nthe xc functional that is in use and sets the associated scaling parameter.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 14, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_TYPE", + "description": "Type of potential", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 15, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_VERBOSE_OUTPUT", + "description": "Extensive output for the DFT-D2 and DFT-D3 models", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL_PRINT_DFTD", + "sub_section": "/packages/28/section_definitions/262", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 264, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL", + "description": "This section combines all possible additional dispersion corrections to the normal XC functionals. This can be more functionals or simple empirical pair potentials.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_POTENTIAL_TYPE", + "description": "Type of dispersion/vdW functional or potential to use", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_NON_LOCAL", + "sub_section": "/packages/28/section_definitions/261", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_VDW_POTENTIAL_PAIR_POTENTIAL", + "sub_section": "/packages/28/section_definitions/263", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 265, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_CPHF", + "description": "Parameters influencing the solution of the Z-vector equations in MP2 gradients calculations.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_CPHF_EPS_CONV", + "description": "Convergence threshold for the solution of the Z-vector equations. The Z-vector\nequations have the form of a linear system of equations Ax=b, convergence is\nachieved when |Ax-b|<=EPS_CONV.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_CPHF_MAX_ITER", + "description": "Maximum number of iterations allowed for the solution of the Z-vector equations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 266, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_DIRECT_CANONICAL", + "description": "Parameters influencing the direct canonical method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_DIRECT_CANONICAL_BIG_SEND", + "description": "Send big messages between processes (useful for >48 processors).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 267, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_INTERACTION_POTENTIAL", + "description": "Parameters the interaction potential in computing the biel integrals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, TShPSC operator).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_INTERACTION_POTENTIAL_TRUNCATION_RADIUS", + "description": "Determines truncation radius for the truncated TShPSC potential. Only valid when\ndoing truncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_INTERACTION_POTENTIAL_TSHPSC_DATA", + "description": "Location of the file TShPSC.dat that contains the data for the evaluation of the\nTShPSC G0", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 268, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_MP2_INFO", + "description": "Controls the printing basic info about MP2 method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_MP2_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_MP2_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_MP2_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_MP2_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_MP2_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 269, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_OPT_RI_BASIS", + "description": "Parameters influencing the optimization of the RI MP2 basis. Only exponents of non- contracted auxiliary basis can be optimized. An initial RI auxiliary basis has to be\nspecified.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_OPT_RI_BASIS_BASIS_SIZE", + "description": "Specifies the size of the auxiliary basis set automatically generated as initial\nguess. This will be effective only if RI_AUX_BASIS_SET in the KIND section and\nNUM_FUNC are not specified.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_OPT_RI_BASIS_DELTA_I_REL", + "description": "Target accuracy in the relative deviation of the amplitudes calculated with and\nwithout RI approximation, (more details in Chem.Phys.Lett.294(1998)143).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_OPT_RI_BASIS_DELTA_RI", + "description": "Target accuracy in the absolute difference between the RI-MP2 and the exact MP2\nenergy, DRI=ABS(E_MP2-E_RI-MP2).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_OPT_RI_BASIS_EPS_DERIV", + "description": "The derivatives of the MP2 energy with respect to the exponents of the basis are\ncalculated numerically. The change in the exponent a_i employed for the numerical\nevaluation is defined as h_i=EPS_DERIV*a_i.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_OPT_RI_BASIS_MAX_ITER", + "description": "Specifies the maximum number of steps in the RI basis optimization.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_OPT_RI_BASIS_NUM_FUNC", + "description": "Specifies the number of function, for each angular momentum (s, p, d ...),\nemployed in the automatically generated initial guess. This will be effective only\nif RI_AUX_BASIS_SET in the KIND section is not specified.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 270, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_LAPLACE", + "description": "Parameters influencing the RI-SOS-MP2-Laplace method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_LAPLACE_QUADRATURE_POINTS", + "description": "Number of quadrature points for the numerical integration in the RI-SOS-\nMP2-Laplace method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_LAPLACE_SIZE_INTEG_GROUP", + "description": "Group size for the integration in the Laplace method, that is the number of\nprocesses involved in the computation of each integration point. SIZE_INTEG_GROUP\nhas to be a multiple of GROUP_SIZE in the WF_CORRELATION section. The default (-1)\nis automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 271, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_MP2", + "description": "Parameters influencing the RI MP2 method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_MP2_BLOCK_SIZE", + "description": "Determines the blocking used for communication in RI-MP2. Larger BLOCK_SIZE\nreduces communication but requires more memory. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_MP2_EPS_CANONICAL", + "description": "Threshold for discriminate if a given ij pairs of the unrelaxed MP2 density matrix\nhas to be calculated with a canonical reformulation based on the occupied\neigenvalues differences.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_MP2_FREE_HFX_BUFFER", + "description": "Free the buffer containing the 4 center integrals used in the Hartree-Fock\nexchange calculation. This will be effective only for gradients calculations,\nsince for the energy only case, the buffers are released by default. (Right now\ndebugging only).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 272, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO", + "description": "Controls the printing basic info about hf method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_ADD_LAST", + "description": "If the last iteration should be added, and if it should be marked symbolically\n(with lowercase letter l) or with the iteration number. Not every iteration level\nis able to identify the last iteration early enough to be able to output. When\nthis keyword is activated all iteration levels are checked for the last iteration\nstep.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_COMMON_ITERATION_LEVELS", + "description": "How many iterations levels should be written in the same file (no extra\ninformation about the actual iteration level is written to the file)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_FILENAME", + "description": "controls part of the filename for output. use __STD_OUT__ (exactly as written\nhere) for the screen or standard logger. use filename to obtain projectname-\nfilename. use ./filename to get filename. A middle name (if present), iteration\nnumbers and extension are always added to the filename. if you want to avoid it\nuse =filename, in this case the filename is always exactly as typed. Please note\nthat this can lead to clashes of filenames.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_LOG_PRINT_KEY", + "description": "This keywords enables the logger for the print_key (a message is printed on screen\neverytime data, controlled by this print_key, are written)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO_SECTION_PARAMETERS", + "description": "Level starting at which this proprety is printed", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 273, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI", + "description": "All parameters needed in a HFX RI calculation", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_EPS_OPTIMIZATION", + "description": "Accuracy of iterative RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_EPS_SCREENING", + "description": "Accuracy of geminal integral evaluation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI_MAX_ITER", + "description": "Maximum number of iteration in RI fit", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 274, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL", + "description": "Sets up interaction potential if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_CUTOFF_RADIUS", + "description": "Determines cutoff radius for the truncated 1/r potential. Only valid when doing\ntruncated calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_OMEGA", + "description": "Parameter for short/longrange interaction", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_POTENTIAL_TYPE", + "description": "Which interaction potential should be used (Coulomb, longrange or shortrange).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_COULOMB", + "description": "Scales Hartree-Fock contribution arising from a coulomb potential. Only valid when\ndoing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_GAUSSIAN", + "description": "Scales Hartree-Fock contribution arising from a gaussian potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_SCALE_LONGRANGE", + "description": "Scales Hartree-Fock contribution arising from a longrange potential. Only valid\nwhen doing a mixed potential calculation", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL_T_C_G_DATA", + "description": "Location of the file t_c_g.dat that contains the data for the evaluation of the\ntruncated gamma function", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 275, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE", + "description": "Parameters influencing the load balancing of the HF", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_BLOCK_SIZE", + "description": "Determines the blocking used for the atomic quartet loops. A proper choice can\nspeedup the calculation. The default (-1) is automatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_NBINS", + "description": "Number of bins per process used to group atom quartets.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE_RANDOMIZE", + "description": "This flag controls the randomization of the bin assignment to processes. For\nhighly ordered input structures with a bad load balance, setting this flag to TRUE\nmight improve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 276, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY", + "description": "Sets up memory parameters for the storage of the ERI's if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_EPS_STORAGE_SCALING", + "description": "Scaling factor to scale eps_schwarz. Storage threshold for compression will be\nEPS_SCHWARZ*EPS_STORAGE_SCALING.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_MAX_DISK_SPACE", + "description": "Defines the maximum amount of disk space [MB] used to store precomputed compressed\nfour-center integrals. If 0, nothing is stored to disk", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_MAX_MEMORY", + "description": "Defines the maximum amount of memory [MB] to be consumed by the full HFX module.\nAll temporary buffers and helper arrays are subtracted from this number. What\nremains will be used for storage of integrals. NOTE: This number is assumed to\nrepresent the memory available to one MPI process. When running a threaded\nversion, cp2k automatically takes care of distributing the memory among all the\nthreads within a process.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_STORAGE_LOCATION", + "description": "Loaction where ERI's are stored if MAX_DISK_SPACE /=0 Expects a path to a\ndirectory.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY_TREAT_FORCES_IN_CORE", + "description": "Determines whether the derivative ERI's should be stored to RAM or not. Only\nmeaningful when performing Ehrenfest MD. Memory usage is defined via MAX_MEMORY,\ni.e. the memory is shared wit the energy ERI's.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 277, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC", + "description": "Sets up periodic boundary condition parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC_NUMBER_OF_SHELLS", + "description": "Number of shells taken into account for periodicity. By default, cp2k tries to\nautomatically evaluate this number. This algorithm might be to conservative,\nresulting in some overhead. You can try to adjust this number in order to make a\ncalculation cheaper.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 278, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING", + "description": "Sets up screening parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_EPS_SCHWARZ_FORCES", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold. This will be approximately the\naccuracy of the forces, and should normally be similar to EPS_SCF", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_EPS_SCHWARZ", + "description": "Screens the near field part of the electronic repulsion integrals using the\nSchwarz inequality for the given threshold.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_P_SCREEN_CORRECTION_FACTOR", + "description": "Recalculates integrals on the fly if the actual density matrix is larger by a\ngiven factor than the initial one. If the factor is set to 0.0_dp, this feature is\ndisabled.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_SCREEN_ON_INITIAL_P", + "description": "Screen on an initial density matrix. For the first MD step this matrix must be\nprovided by a Restart File.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING_SCREEN_P_FORCES", + "description": "Screens the electronic repulsion integrals for the forces using the density\nmatrix. This results in a significant speedup for large systems, but might require\na somewhat tigher EPS_SCHWARZ_FORCES.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 279, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF", + "description": "Sets up the Hartree-Fock parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_FRACTION", + "description": "The fraction of Hartree-Fock to add to the total energy. 1.0 implies standard\nHartree-Fock if used with XC_FUNCTIONAL NONE. NOTE: In a mixed potential\ncalculation this should be set to 1.0, otherwise all parts are multiplied with\nthis factor.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_PW_HFX_BLOCKSIZE", + "description": "Improve the performance of pw_hfx at the cost of some additional memory by storing\nthe realspace representation of PW_HFX_BLOCKSIZE states.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_PW_HFX", + "description": "Compute the Hartree-Fock energy also in the plane wave basis.The value is ignored,\nand intended for debugging only.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_TREAT_LSD_IN_CORE", + "description": "Determines how spin denisities are taken into account. If true, the beta spin\ndensity is included via a second in core call. If false, alpha and beta spins are\ndone in one shot", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HF_INFO", + "sub_section": "/packages/28/section_definitions/272", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_HFX_RI", + "sub_section": "/packages/28/section_definitions/273", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/274", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_LOAD_BALANCE", + "sub_section": "/packages/28/section_definitions/275", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_MEMORY", + "sub_section": "/packages/28/section_definitions/276", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_PERIODIC", + "sub_section": "/packages/28/section_definitions/277", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF_SCREENING", + "sub_section": "/packages/28/section_definitions/278", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 280, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA", + "description": "Parameters influencing the RI RPA method", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_MINIMAX_QUADRATURE", + "description": "Use the Minimax quadrature scheme for performing the numerical integration.\nMaximum number of quadrature point limited to 20.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_MM_STYLE", + "description": "Matrix multiplication style for the Q matrix.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_QUADRATURE_POINTS", + "description": "Number of quadrature points for the numerical integration in the RI-RPA method.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_SIZE_FREQ_INTEG_GROUP", + "description": "Group size for frequency integration, that is the number of processes involved in\nthe computation of each integration point. SIZE_FREQ_INTEG_GROUP has to be a\nmultiple of GROUP_SIZE in the WF_CORRELATION section. The default (-1) is\nautomatic.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA_HF", + "sub_section": "/packages/28/section_definitions/279", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 281, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_WFC_GPW", + "description": "Parameters for the GPW approach in Wavefunction-based Correlation methods", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_WFC_GPW_CUTOFF", + "description": "The cutoff of the finest grid level in the MP2 gpw integration.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_WFC_GPW_EPS_FILTER", + "description": "Determines a threshold for the DBCSR based multiply (usually 10 times smaller than\nEPS_GRID).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_WFC_GPW_EPS_GRID", + "description": "Determines a threshold for the GPW based integration", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_WFC_GPW_PRINT_LEVEL", + "description": "How much output is written by the individual groups.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_WFC_GPW_REL_CUTOFF", + "description": "Determines the grid at which a Gaussian is mapped.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 282, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION", + "description": "Sets up the Wavefunction-based Correlation parameters if requested", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_CALC_COND_NUM", + "description": "Calculate the condition number of the (P|Q) matrix for the RI methods.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_COL_BLOCK", + "description": "Size of the column block used in the SCALAPACK block cyclic data\ndistribution.Default is (COL_BLOCK=-1) is automatic. A proper choice can speedup\nthe parallel matrix multiplication in the case of RI-RPA and RI-SOS-MP2-Laplace.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_GROUP_SIZE", + "description": "Group size used in the computation of the integrals. Default is to use all\nprocessors (GROUP_SIZE=-1).A smaller group size (for example the node size), might\na better choice if the actual MP2 time is large compared to integral computation\ntime. This is usually the case if the total number of processors is not too large.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_MEMORY", + "description": "Maximum allowed total memory usage during MP2 methods [Mb].", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 4, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_METHOD", + "description": "Which method should be used to compute the MP2 energy", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 5, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_ROW_BLOCK", + "description": "Size of the row block used in the SCALAPACK block cyclic data distribution.Default\nis (ROW_BLOCK=-1) is automatic. A proper choice can speedup the parallel matrix\nmultiplication in the case of RI-RPA and RI-SOS-MP2-Laplace.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 6, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_SCALE_S", + "description": "Scaling factor of the singlet energy component (opposite spin, OS).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 7, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_SCALE_T", + "description": "Scaling factor of the triplet energy component (same spin, SS).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_CPHF", + "sub_section": "/packages/28/section_definitions/265", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_DIRECT_CANONICAL", + "sub_section": "/packages/28/section_definitions/266", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_INTERACTION_POTENTIAL", + "sub_section": "/packages/28/section_definitions/267", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_MP2_INFO", + "sub_section": "/packages/28/section_definitions/268", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_OPT_RI_BASIS", + "sub_section": "/packages/28/section_definitions/269", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_LAPLACE", + "sub_section": "/packages/28/section_definitions/270", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_MP2", + "sub_section": "/packages/28/section_definitions/271", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_RI_RPA", + "sub_section": "/packages/28/section_definitions/280", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_WF_CORRELATION_WFC_GPW", + "sub_section": "/packages/28/section_definitions/281", + "repeats": true + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 283, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC", + "description": "Uses the Becke 88 longrange exchange functional in an adiabatic fashion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_LAMBDA", + "description": "Defines the parameter of the adiabatic curve", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_OMEGA", + "description": "Potential parameter in erf(omega*r)/r", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 284, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR", + "description": "Uses the Becke 88 longrange exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_OMEGA", + "description": "Potential parameter in erf(omega*r)/r", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 285, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88", + "description": "Uses the Becke 88 exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 286, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE97", + "description": "Uses the Becke 97 exchange correlation functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE97_PARAMETRIZATION", + "description": "switches between the B97 and Grimme parametrization", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE97_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE97_SCALE_X", + "description": "scales the exchange part of the functional, if -1 the default for the given\nparametrization is used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE97_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 287, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL", + "description": "Becke Roussel exchange hole model. Can be usedas long range correction with a truncated coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_CUTOFF_RADIUS", + "description": "Defines the cutoff radius for the truncation. If put to zero, the standard full\nrange potential will be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_GAMMA", + "description": "Parameter in the exchange hole. Usually this is put to 1.0 or 0.8", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 288, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BEEF", + "description": "Uses the BEEFvdW exchange functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BEEF_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BEEF_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 289, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_CS1", + "description": "Uses the CS1 functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_CS1_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 290, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_GV09", + "description": "Combination of three different exchange hole models", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_GV09_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_GV09_GAMMA", + "description": "Parameter for Becke Roussel hole", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_GV09_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_GV09_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 291, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_HCTH", + "description": "Uses the HCTH class of functionals", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_HCTH_PARAMETER_SET", + "description": "Which version of the parameters should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_HCTH_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 292, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_GGA", + "description": "Uses one of the KE_GGA functionals (optimized versions of some of these functionals might be available outside this section). These functionals are needed for the\ncomputation of the kinetic energy in the Kim-Gordon method.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_GGA_FUNCTIONAL", + "description": "Which one of the KE_GGA functionals should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_GGA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 293, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_LIBXC", + "description": "To be used for KG runs. Uses kinetic energy functionals from LIBXC, see also http://www.tddft.org/programs/octopus/wiki/index.php/Libxc", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_LIBXC_FUNCTIONAL", + "description": "names of the functionals, see also\nhttp://www.tddft.org/programs/octopus/wiki/index.php/Libxc:manual .The precise\nlist of available functionals depends on the version of libxc interfaced\n(currently 2.0.1).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_LIBXC_PARAMETERS", + "description": "parameters of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_LIBXC_SCALE", + "description": "scaling factors of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_LIBXC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 294, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR", + "description": "LDA exchange hole model in truncated coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LDA_HOLE_T_C_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 295, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LIBXC", + "description": "Uses functionals from LIBXC, see also http://www.tddft.org/programs/octopus/wiki/index.php/Libxc", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LIBXC_FUNCTIONAL", + "description": "names of the functionals, see also\nhttp://www.tddft.org/programs/octopus/wiki/index.php/Libxc:manual .The precise\nlist of available functionals depends on the version of libxc interfaced\n(currently 2.0.1).", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LIBXC_PARAMETERS", + "description": "parameters of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LIBXC_SCALE", + "description": "scaling factors of the functionals", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LIBXC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 296, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LYP_ADIABATIC", + "description": "Uses the LYP correlation functional in an adiabatic fashion", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LYP_ADIABATIC_LAMBDA", + "description": "Defines the parameter of the adiabatic curve.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LYP_ADIABATIC_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 297, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LYP", + "description": "Uses the LYP functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LYP_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_LYP_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 298, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_OPTX", + "description": "Uses the OPTX functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_OPTX_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_OPTX_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 299, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_P86C", + "description": "Uses the P86C functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_P86C_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_P86C_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 300, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PADE", + "description": "Uses the PADE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PADE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 301, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR", + "description": "PBE exchange hole model in trucanted coulomb potential", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_CUTOFF_RADIUS", + "description": "Defines cutoff for lower integration boundary", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE_HOLE_T_C_LR_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 302, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE", + "description": "Uses the PBE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE_PARAMETRIZATION", + "description": "switches between the different parametrizations of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PBE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 303, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PW92", + "description": "Uses the PerdewWang correlation functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PW92_PARAMETRIZATION", + "description": "Which one of parametrizations should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PW92_SCALE", + "description": "Scaling of the energy functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PW92_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 304, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PZ81", + "description": "Uses the PZ functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PZ81_PARAMETRIZATION", + "description": "Which one of parametrizations should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PZ81_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_PZ81_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 305, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_TFW", + "description": "Uses the TFW functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_TFW_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 306, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_TF", + "description": "Uses the TF functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_TF_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 307, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_TPSS", + "description": "Uses the TPSS functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_TPSS_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_TPSS_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_TPSS_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 308, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_VWN", + "description": "Uses the VWN functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_VWN_FUNCTIONAL_TYPE", + "description": "Which version of the VWN functional should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_VWN_SCALE_C", + "description": "scales the correlation part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_VWN_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 309, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XALPHA", + "description": "Uses the XALPHA (SLATER) functional.", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XALPHA_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XALPHA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XALPHA_XA", + "description": "Value of the xa parameter (this does not change the exponent, just the mixing)", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 310, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XGGA", + "description": "Uses one of the XGGA functionals (optimized versions of some of these functionals might be available outside this section).", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XGGA_FUNCTIONAL", + "description": "Which one of the XGGA functionals should be used", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XGGA_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 311, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XWPBE", + "description": "Uses the short range PBE functional", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XWPBE_OMEGA", + "description": "screening parameter", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 1, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XWPBE_SCALE_X0", + "description": "scales the exchange part of the original hole PBE-functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 2, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XWPBE_SCALE_X", + "description": "scales the exchange part of the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + }, + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 3, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_XWPBE_SECTION_PARAMETERS", + "description": "activates the functional", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ] + }, + { + "m_def": "nomad.metainfo.metainfo.Section", + "m_parent_index": 312, + "m_parent_sub_section": "section_definitions", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL", + "description": "The xc functional to use", + "quantities": [ + { + "m_def": "nomad.metainfo.metainfo.Quantity", + "m_parent_index": 0, + "m_parent_sub_section": "quantities", + "name": "x_cp2k_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_SECTION_PARAMETERS", + "description": "Shortcut for the most common functional combinations.", + "type": { + "type_kind": "python", + "type_data": "str" + }, + "shape": [] + } + ], + "sub_sections": [ + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 0, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR_ADIABATIC", + "sub_section": "/packages/28/section_definitions/283", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 1, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88_LR", + "sub_section": "/packages/28/section_definitions/284", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 2, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE88", + "sub_section": "/packages/28/section_definitions/285", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 3, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE97", + "sub_section": "/packages/28/section_definitions/286", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 4, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BECKE_ROUSSEL", + "sub_section": "/packages/28/section_definitions/287", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 5, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_BEEF", + "sub_section": "/packages/28/section_definitions/288", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 6, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_CS1", + "sub_section": "/packages/28/section_definitions/289", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 7, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_GV09", + "sub_section": "/packages/28/section_definitions/290", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 8, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_HCTH", + "sub_section": "/packages/28/section_definitions/291", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_index": 9, + "m_parent_sub_section": "sub_sections", + "name": "x_cp2k_section_input_FORCE_EVAL_DFT_XC_XC_FUNCTIONAL_KE_GGA", + "sub_section": "/packages/28/section_definitions/292", + "repeats": true + }, + { + "m_def": "nomad.metainfo.metainfo.SubSection", + "m_parent_inde