Ncrystal

Latest version: v4.1.6

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 14

3.7.0

* The main feature of this release is that NCrystal now can be optionally
built and installed using standard Python-centric toolchains. Work on
this feature was spearheaded by Milan Klausz, and is associated with
newly added setup.py and pyproject.toml files, using skbuild behind the
scenes. Additionally, Python modules and script were moved out of the
ncrystal_python directory and into directories named NCrystal and
scripts, respectively (solving github issue 127). Finally, existing
Python modules and the ncrystal-config script were modified to support
such builds and installation. As a result, it is now possible to do "pip
install <path-to-ncrystal-src>", and get a fully-fledged NCrystal
release. The only difference with respect to e.g. a conda installation
of NCrystal, is that downstream CMake-based projecs won't detect the
installation, unless the directory reported by "ncrystal-config --show
cmakedir" is manually added to the CMAKE_PREFIX_PATH.
* Work is ongoing by Milan Klausz to setup workflows at GitHUB to
automatically build binary wheels for PyPI, similar to how binary
packages are now built automatically at conda-forge. Once this is
completed, it will be possible to install prebuilt NCrystal packages via
"pip install ncrystal" (solving github issue 93).
* Note that setup.py maps NCrystal releases with minor number >= 80 to a
development version lke "3.6.dev80", with the intention of preventing
"pip install ncrystal" from automatically picking up release candidates.
* Rewrote the aligned allocator code used internally when implementing
convenience containers such as SmallVector. This was done in response to
fix compilation errors with gcc12 (github issue 125). This new version
avoid the previous incorrect reliance of a non-standard feature of
std::free, and overall the new version is more portable, as it relies on
nothing except std::malloc and std::free.
* Updated the SmallVector::clear method, in order to work around what
appears to be a false-positive compilation error by gcc12.
* For completeness, added more functions like ekin2k, constexpr_ekin2k,
k2ekin, and k2wl functions in the C++ and Python API's.
* Bugfixes (C++ API): NeutronEnergy::k() now actually returns the
wavenumber k, and not the squared of k, as it did previously. Also, the
free-standing ekin2wl(..) function is no longer constexpr (since
std::sqrt is not actually constexpr), but there is a new
constexpr_ekin2wl which is.
* Added new standard testing facilities, for checking an installation for
presence of commandline scripts (solving github issue 110) and that
downstream CMake/C++ projects can find and use NCrystal (after getting
CMAKE_PREFIX_PATH from ncrystal-config). To invoke all tests, run
"python3 -mNCrystal.test all". For other options, run "python3
-mNCrystal.test all".
* Add ncrystal_setup.sh/ncrystal_unsetup.sh files in addition to the
ambiguously named setup.sh/unsetup.sh files. (github issue 126).

3.6.82

* RC3 for release 3.7.0.

3.6.81

* RC2 for release 3.7.0.

3.6.80

* RC1 for release 3.7.0.

3.6.1

* Tiny update with a quick workaround for gcc12 compilation issues
(github issue 125).

3.6.0

* This milestone release primarily brings a massive restructuring and
update of the Python API of NCrystal. The changes should be backwards
compatible in almost all cases, and the most user-visible changes should
hopefully be the addition of several new big features, highlighted
below.
* Note that along with this release we are also publishing several Jupyter
notebooks at https://github.com/mctools/ncrystal-notebooks which might
be a more enjoyable (or at least useful) way to learn the Python API of
NCrystal. These notebooks will also be used during the "HighNESS
International School on Thermal Neutron Scattering Kernel Generation"
hosted at the European Spallation Source in Lund
(https://indico.esss.lu.se/event/3096/).
* The new NCMATComposer helper class is added to the Python API. It can be
used to create new materials in an object-oriented and pythonic manner, as
opposed to hand-crafting the NCMAT data. It essentially supports all
features of the underlying NCMAT format, but does so in a much more
easily accessible manner, and handles a lot of the book-keeping that can
arise in some complicated materials.
* A new NCrystal.cifutils submodule brings a CIFLoader class, which behind
the scene empowers the NCMATComposer class to adopt crystal structures
from CIF files. Such files can reside both locally or in selected online
databases. CIF files often contain incomplete information, so be sure to
consult the Jupyter notebook tutorial linked above for examples of how
to deal with these. Note that based on this CIF functionality, the
NCMATComposer now also support ASE (https://wiki.fysik.dtu.dk/ase/)
objects, or the loading of a variety of input formats via ASE.
* A new PhononDOSAnalyser class can be used to investigate and cleanup
phonon density of state (VDOS) curves, and then (with the help of the
NCMATComposer class) add them to a material. In particular, one of the
Jupyter notebooks linked above shows how one might go through the steps
of converting phonon curves produced by Quantum Espresso
(https://www.quantum-espresso.org/) to define high quality NCMAT data
for a material.
* A new NCrystal.plot submodule brings several new plotting utilities,
that can either be used directly, or via various convenience plotting
methods added to various classes in the API. In particular, note the
plot_xsect(..) and plot_xsects(..) function in the submodule, which can
be used to easily produce cross section plots from a range of inputs
(NCrystal objects, NCMAT data, cfg-strings, etc.).
* In general, many objects, both new and old, have been enriched with more
convenience methods for plotting, dumping, or merely extracting
data. Note for instance the new .findDynInfo and .findAtomInfo methods
of the Info objects, or the various .plot_xxx() methods on the
DynamicsInfo objects.
* A new global .load() function can be used to load either cfg-strings or
raw NCMAT data into LoadedMaterials objects. LoadedMaterials objects
have .info, .scatter, and .absorption properties available for accessing
all of these physics objects. Loading a material in such a unified
manner might be more convenient for many use-cases (in particular
interactive sessions) than the classic .createInfo(..),
.createScatter(..), and .createAbsorption().
* Note that while NCrystal in general does not have any required
dependencies, several of the features above does depend on third-party
python modules. All these modules are well-maintained open-source
projects, available both on PyPI (for "pip install xxx") and on
conda-forge (for "conda install -c conda-forge xxx"). The optional
dependencies are:
- "numpy": for various array-based functionality. Although not strictly
needed, it is recommended to always install this.
- "matplotlib": for usage of the plotting utilities.
- "spglib": For producing crystalline materials with NCMATComposer, in
order to verify (or refine) the structures.
- "gemmi": For reading CIF data into NCMATComposer.
- "ase": For loading crystal structures from ASE objects or non-CIF files
(like those produced by Quantum Espresso) into NCMATComposer.
-"pymatgen"/"mp_api": Only needed for loading CIF data from the online
database at materialsproject.org into NCMATComposer.
* Since release 3.0.0 we have provided the alias "nctool" for the command
named "ncrystal_inspectfile", and while we will keep providing both
aliases, we now swap their role and primarily mention the name "nctool"
in our documentation. There are not immediate plans to remove the
"ncrystal_inspecfile" command, but users are encouraged to migrate to
use the "nctool" command instead.
* Introduce new ncrystal_cif2ncmat command which internally uses the new
CIF and NCMAT tools from the Python API, and which supports both local
CIF files or remote online databases. This also obsoletes the
ncrystal_onlinedb2ncmat command.
* The rest of this changelog will list a range of other improvements and
bug fixes that are also a part of this release.
* Added new utility functions in the NCrystal.atomdata Python module:
elementNameToZValue, elementZToName, allElementNames, isElementName,
knownElementNames, and isKnownElement.
* Added new conversion functions in the NCrystal.constants module in
addition to the existing. The full list is now wl2ekin, ekin2wl,
wlsq2ekin, ekin2wlsq, ekin2wlsqinv, ekin2ksq, ekin2k, ksq2ekin,
wl2k. However, note that only the first two are put in the main module,
so one must explicitly import NCrystal.constants to access the rest
(existing users of ekin2ksq, wl2k, wl2ksq functions will therefore have
to modify their code).
* Be in general aware that a few specialist functions were moved from the
main Python module to sub-modules.
* The AtomData class in the Python API gets new .fmt_atomdb_str(..) and
.to_atomdb_str() convenience methods, for converting data into a string
with a format suitable for ATOMDB sections of NCMAT data. Perhaps more
noticably, the AtomData class also gets __str__ and __repr__ methods for
a better interactive experience with the NCrystal.atomDB function.
* NCrystal.Info objects gets a .factor_macroscopic_xs property, which can
be used to convert cross sections from (barns/atom) to inverse
penetration depth (1/cm). This is numerically identical to the
.numberdensity property, but more explicit.
* Rename NCrystal.directMultiCreate as NCrystal.directLoad, but keeping
the old name as an alias for now. Also make it more accepting in terms
of the kinds of data it accepts. Most users likely use the new
NCrystal.load(..) function instead though, as it accepts a wider range
of input types.
* Prepare Python modules with a special mode for finding libNCrystal.*,
needed for an hopefully upcoming PyPI package being developed with the
help of Milan Klausz.
* Add "version_tuple" variable in the main NCrystal module, so one can do
"if NCrystal.version_tuple>=(3,6,0)" instead of "if
NCrystal.version_num>=3006000". But be aware that the

Page 4 of 14

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.