-
Couldn't load subscription status.
- Fork 575
Release of version 0.13.2 #2269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3347aea
Fixes related to #2253 and #2270
paulromano a0e5ba4
Add 0.13.2 release notes
paulromano 53b6d8a
Change 0.14.0 --> 0.13.2
paulromano 6d499fa
Fix missing underscore in release notes
paulromano 2e43365
Avoid warning message on clang
paulromano 4fd665c
Remove -dev on version number
paulromano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,99 @@ | ||
| ==================== | ||
| What's New in 0.13.2 | ||
| ==================== | ||
|
|
||
| .. currentmodule:: openmc | ||
|
|
||
| ------- | ||
| Summary | ||
| ------- | ||
|
|
||
| This release of OpenMC includes several bug fixes, performance improvements for | ||
| complex geometries and depletion simulations, and other general enhancements. | ||
| Notably, a capability has been added to compute the photon spectra from decay of | ||
| unstable nuclides. Alongside that, a new :data:`openmc.config` configuration | ||
| variable has been introduced that allows easier configuration of data sources. | ||
| Additionally, users can now perform cell or material rejection when sampling | ||
| external source distributions. Finally, | ||
|
|
||
| ------------------------------------ | ||
| Compatibility Notes and Deprecations | ||
| ------------------------------------ | ||
|
|
||
| - If you are building against libMesh for unstructured mesh tally support, | ||
| version 1.6 or higher is now required. | ||
| - The ``openmc.stats.Muir`` class has been replaced by a | ||
| :func:`openmc.stats.muir` function that returns an instance of | ||
| :class:`openmc.stats.Normal`. | ||
|
|
||
| ------------ | ||
| New Features | ||
| ------------ | ||
|
|
||
| - The :meth:`openmc.Material.get_nuclide_atom_densities` method now takes an | ||
| optional ``nuclide`` argument. | ||
| - Functions/methods in the :mod:`openmc.deplete` module now accept times in | ||
| Julian years (``'a'``). | ||
| - The :meth:`openmc.Universe.plot` method now allows a pre-existing axes object | ||
| to be passed in. | ||
| - Performance optimization for geometries with many complex regions. | ||
| - Performance optimization for depletion by avoiding deepcopies and caching | ||
| reaction rates. | ||
| - The :class:`openmc.RegularMesh` class now has a | ||
| :meth:`~openmc.RegularMesh.from_domain` classmethod. | ||
| - The :class:`openmc.CylindricalMesh` class now has a | ||
| :meth:`~openmc.CylindricalMesh.from_domain` classmethod. | ||
| - Improved method to condense diffusion coefficients from the :mod:`openmc.mgxs` | ||
| module. | ||
| - A new :data:`openmc.config` configuration variable has been introduced that | ||
| allows data sources to be specified at runtime or via environment variables. | ||
| - The :class:`openmc.EnergyFunctionFilter` class now supports multiple | ||
| interpolation schemes, not just linear-linear interpolation. | ||
| - The :class:`openmc.DAGMCUniverse` class now has ``material_names``, | ||
| ``n_cells``, and ``n_surfaces`` attributes. | ||
| - A new :func:`openmc.data.decay_photon_energy` function has been added that | ||
| returns the energy spectrum of photons emitted from the decay of an unstable | ||
| nuclide. | ||
| - The :class:`openmc.Material` class also has a new | ||
| :attr:`~openmc.Material.decay_photon_energy` attribute that gives the decay | ||
| photon energy spectrum from the material based on its constituent nuclides. | ||
| - The :class:`openmc.deplete.StepResult` now has a | ||
| :meth:`~openmc.deplete.StepResult.get_material` method. | ||
| - The :class:`openmc.Source` class now takes a ``domains`` argument that | ||
| specifies a list of cells, materials, or universes that is used to reject | ||
| source sites (i.e., if the sampled sites are not within the specified domain, | ||
| they are rejected). | ||
|
|
||
| --------- | ||
| Bug Fixes | ||
| --------- | ||
|
|
||
| - `Delay call to Tally::set_strides <https://github.com/openmc-dev/openmc/pull/2183>`_ | ||
| - `Fix reading reference direction from XML for angular distributions <https://github.com/openmc-dev/openmc/pull/2204>`_ | ||
| - `Fix erroneous behavior in Material.add_components <https://github.com/openmc-dev/openmc/pull/2205>`_ | ||
| - `Fix reading thermal elastic data from ACE <https://github.com/openmc-dev/openmc/pull/2226>`_ | ||
| - `Fix reading source file with time attribute <https://github.com/openmc-dev/openmc/pull/2228>`_ | ||
| - `Fix conversion of multiple thermal scattering data files from ACE <https://github.com/openmc-dev/openmc/pull/2232>`_ | ||
| - `Fix reading values from wwinp file <https://github.com/openmc-dev/openmc/pull/2242>`_ | ||
| - `Handle possibility of .ppm file in Universe.plot <https://github.com/openmc-dev/openmc/pull/2251>`_ | ||
| - `Update volume calc types to mitigate overflow issues <https://github.com/openmc-dev/openmc/pull/2270>`_ | ||
|
|
||
| ------------ | ||
| Contributors | ||
| ------------ | ||
|
|
||
| - `Lewis Gross <https://github.com/lewisgross1296>`_ | ||
| - `Andrew Johnson <https://github.com/drewejohnson>`_ | ||
| - `Miriam Kreher <https://github.com/mkreher13>`_ | ||
| - `James Logan <https://github.com/jlogan03>`_ | ||
| - `Jose Ignacio Marquez Damien <https://github.com/marquezj>`_ | ||
| - `Josh May <https://github.com/joshmay1>`_ | ||
| - `Patrick Myers <https://github.com/myerspat>`_ | ||
| - `Adam Nelson <https://github.com/nelsonag>`_ | ||
| - `April Novak <https://github.com/aprilnovak>`_ | ||
| - `Ethan Peterson <https://github.com/eepeterson>`_ | ||
| - `Gavin Ridley <https://github.com/gridley>`_ | ||
| - `Paul Romano <https://github.com/paulromano>`_ | ||
| - `Patrick Shriwise <https://github.com/pshriwise>`_ | ||
| - `Jonathan Shimwell <https://github.com/Shimwell>`_ | ||
| - `Olek Yardas <https://github.com/yardasol>`_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,7 @@ Release Notes | |
| .. toctree:: | ||
| :maxdepth: 1 | ||
|
|
||
| 0.13.2 | ||
| 0.13.1 | ||
| 0.13.0 | ||
| 0.12.2 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.