Skip to content

Commit 55b52b7

Browse files
authored
Release of version 0.15.0 (#3050)
1 parent 00faa7d commit 55b52b7

File tree

60 files changed

+464
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+464
-85
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ project(openmc C CXX)
33

44
# Set version numbers
55
set(OPENMC_VERSION_MAJOR 0)
6-
set(OPENMC_VERSION_MINOR 14)
7-
set(OPENMC_VERSION_RELEASE 1)
6+
set(OPENMC_VERSION_MINOR 15)
7+
set(OPENMC_VERSION_RELEASE 0)
88
set(OPENMC_VERSION ${OPENMC_VERSION_MAJOR}.${OPENMC_VERSION_MINOR}.${OPENMC_VERSION_RELEASE})
99
configure_file(include/openmc/version.h.in "${CMAKE_BINARY_DIR}/include/openmc/version.h" @ONLY)
1010

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
# built documents.
7070
#
7171
# The short X.Y version.
72-
version = "0.14"
72+
version = "0.15"
7373
# The full version, including alpha/beta/rc tags.
74-
release = "0.14.1-dev"
74+
release = "0.15.0"
7575

7676
# The language for content autogenerated by Sphinx. Refer to documentation
7777
# for a list of supported languages.

docs/source/io_formats/settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,9 +284,9 @@ then, OpenMC will only use up to the :math:`P_1` data.
284284
.. note:: This element is not used in the continuous-energy
285285
:ref:`energy_mode`.
286286

287-
------------------------
287+
--------------------------------
288288
``<max_history_splits>`` Element
289-
------------------------
289+
--------------------------------
290290

291291
The ``<max_history_splits>`` element indicates the number of times a particle can split during a history.
292292

docs/source/methods/random_ray.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ terms on the right hand side.
100100
.. math::
101101
:label: transport
102102
103-
\begin{align*}
103+
\begin{aligned}
104104
\mathbf{\Omega} \cdot \mathbf{\nabla} \psi(\mathbf{r},\mathbf{\Omega},E) & + \Sigma_t(\mathbf{r},E) \psi(\mathbf{r},\mathbf{\Omega},E) = \\
105105
& \int_0^\infty d E^\prime \int_{4\pi} d \Omega^{\prime} \Sigma_s(\mathbf{r},\mathbf{\Omega}^\prime \rightarrow \mathbf{\Omega}, E^\prime \rightarrow E) \psi(\mathbf{r},\mathbf{\Omega}^\prime, E^\prime) \\
106106
& + \frac{\chi(\mathbf{r}, E)}{4\pi k_{eff}} \int_0^\infty dE^\prime \nu \Sigma_f(\mathbf{r},E^\prime) \int_{4\pi}d \Omega^\prime \psi(\mathbf{r},\mathbf{\Omega}^\prime,E^\prime)
107-
\end{align*}
107+
\end{aligned}
108108
109109
In Equation :eq:`transport`, :math:`\psi` is the angular neutron flux. This
110110
parameter represents the total distance traveled by all neutrons in a particular

docs/source/releasenotes/0.15.0.rst

Lines changed: 262 additions & 0 deletions
Large diffs are not rendered by default.

docs/source/releasenotes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Release Notes
77
.. toctree::
88
:maxdepth: 1
99

10+
0.15.0
1011
0.14.0
1112
0.13.3
1213
0.13.2

examples/lattice/hexagonal/build_xml.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,9 @@
114114

115115
# Create an initial uniform spatial source distribution over fissionable zones
116116
bounds = [-1, -1, -1, 1, 1, 1]
117-
uniform_dist = openmc.stats.Box(bounds[:3], bounds[3:], only_fissionable=True)
118-
settings_file.source = openmc.IndependentSource(space=uniform_dist)
117+
uniform_dist = openmc.stats.Box(bounds[:3], bounds[3:])
118+
settings_file.source = openmc.IndependentSource(
119+
space=uniform_dist, constraints={'fissionable': True})
119120

120121
settings_file.keff_trigger = {'type' : 'std_dev', 'threshold' : 5E-4}
121122
settings_file.trigger_active = True

examples/lattice/nested/build_xml.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,9 @@
124124

125125
# Create an initial uniform spatial source distribution over fissionable zones
126126
bounds = [-1, -1, -1, 1, 1, 1]
127-
uniform_dist = openmc.stats.Box(bounds[:3], bounds[3:], only_fissionable=True)
128-
settings_file.source = openmc.IndependentSource(space=uniform_dist)
127+
uniform_dist = openmc.stats.Box(bounds[:3], bounds[3:])
128+
settings_file.source = openmc.IndependentSource(
129+
space=uniform_dist, constraints={'fissionable': True})
129130

130131
settings_file.export_to_xml()
131132

examples/lattice/simple/build_xml.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,9 @@
115115

116116
# Create an initial uniform spatial source distribution over fissionable zones
117117
bounds = [-1, -1, -1, 1, 1, 1]
118-
uniform_dist = openmc.stats.Box(bounds[:3], bounds[3:], only_fissionable=True)
119-
settings_file.source = openmc.IndependentSource(space=uniform_dist)
118+
uniform_dist = openmc.stats.Box(bounds[:3], bounds[3:])
119+
settings_file.source = openmc.IndependentSource(
120+
space=uniform_dist, constraints={'fissionable': True})
120121

121122
settings_file.trigger_active = True
122123
settings_file.trigger_max_batches = 100

examples/pincell/build_xml.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,9 @@
6767
# Create an initial uniform spatial source distribution over fissionable zones
6868
lower_left = (-pitch/2, -pitch/2, -1)
6969
upper_right = (pitch/2, pitch/2, 1)
70-
uniform_dist = openmc.stats.Box(lower_left, upper_right, only_fissionable=True)
71-
settings.source = openmc.IndependentSource(space=uniform_dist)
70+
uniform_dist = openmc.stats.Box(lower_left, upper_right)
71+
settings.source = openmc.IndependentSource(
72+
space=uniform_dist, constraints={'fissionable': True})
7273

7374
# For source convergence checks, add a mesh that can be used to calculate the
7475
# Shannon entropy

0 commit comments

Comments
 (0)