[go: up one dir, main page]

Skip to content

Python notebooks with examples, documentation, and tutorials for usage of NCrystal. Please start by scrolling down and reading the README below which contains instructions and links. Please post any issues or questions in the main NCrystal repo at https://github.com/mctools/ncrystal

License

Notifications You must be signed in to change notification settings

mctools/ncrystal-notebooks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ncrystal-notebooks

Python notebooks with examples, documentation, and tutorials for usage of NCrystal. You can either run the notebooks directly on your laptop (see below for instructions), or you can open them in google Colab by clicking the links (note: you must then click "save to Drive" before you can actually run any cells). Finally, you can also simply click the notebook links to browse them as static files directly on GitHub.

The notebooks

Notebooks providing a basic introduction to NCrystal

Notebooks related to creation of new material definitions

  • Creating materials and the NCMATComposer Open In Colab
    • This is for people wishing to put together new materials, introducing the NCMATComposer helper class and discussing the basic ingredients needed to define a material in NCrystal.
  • Importing crystal structures from CIF files or online databases Open In Colab
    • If your material has a crystal structure, you most likely will need to import that crystal structure from either a CIF file or an online database. We learn how to build upon the previous NCMATComposer work by loading such structures from external sources.
  • Adding phonon information Open In Colab
    • If your material is a solid (crystalline or amorphous), you need a phonon density of state (DOS) curve to get high-quality modelling of both inelastic and (perhaps surprisingly) elastic scattering. In this example, we go through all the steps of loading DOS curves produced by Quantum Espresso, and goes through the steps needed to clean them up a bit by removing unwanted artifacts that would otherwise prevent their usage, Finally, we use the NCMATComposer to combine both phonon DOS curves and crystal structures into a high quality NCMAT description of the material.

Miscellaneous notebooks

  • Connecting phonon DOS curves to inelastic scattering Open In Colab
    • In this short notebook, we briefly mention the theoretical procedure used by NCrystal to expand a 1D phonon DOS curve to a 2D scattering kernel, and proceed to provide a few interactive widgets which can be used to understand this connection in practice.
  • Investigate sapphire filter Open In Colab
    • Notebook investigating transmission probability of a sapphire filter, and the effect of different ways of modelling.

Contributed notebooks

Examples from the NEUWAVE-12 tutorial

Instructions for running these notebooks.

Browse on GitHub

Just click the names of the notebooks above to get a static view of the notebooks. This is can be convenient, but offers a non-interactive view. GUI widgets are not working, and cells containing a huge amount of output are shown expanded.

Open in google Colab

Clicking the google Colab links above will open the notebooks in google Colab. To actually be able to execute cells, you will need a google account and then you must click "Copy to Drive" to get your own copy in the cloud that you can edit and run. One downside is that although GUI widgets work, matplotlib plots are only shown as static images and can therefore not be resized or zoomed interactively. Apart from that, this is a convenient way to run the notebooks without the need for any local installations.

Run locally

Running locally is easy since everything can be installed via pip or conda. So either create a conda environment using the conda.yml environment file, or pip install all the required dependencies into a dedicated Python environment by (you can of course also pip install into your default Python environment if you are not the careful type):

#create the directory and step into it:
mkdir ./my_venv_for_ncrystal_notebooks/
cd ./my_venv_for_ncrystal_notebooks/
#create and activate the virtual environment:
python3 -mvenv ./venv
. ./venv/bin/activate
#install the packages:
python3 -mpip install ncrystal numpy matplotlib spglib ase gemmi jupyterlab ipympl

In any case, you can then download the above notebooks (individually, or just clone or download the whole ncrystal-notebooks repo) and open the notebooks via the command jupyter-lab nameofnotebook.ipynb.

Note: although support for Windows is planned for EOY2024, it is by August 2024 still not possible to install NCrystal on Windows. So Windows users should either use the WSL, or simply run via google Colab as noted above.

About

Python notebooks with examples, documentation, and tutorials for usage of NCrystal. Please start by scrolling down and reading the README below which contains instructions and links. Please post any issues or questions in the main NCrystal repo at https://github.com/mctools/ncrystal

Resources

License

Stars

Watchers

Forks