mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 05:35:49 -04:00
Respond to comments on #1330
This commit is contained in:
parent
a3e78915cf
commit
cb73c87d9c
5 changed files with 13 additions and 13 deletions
|
|
@ -501,7 +501,7 @@ Depletion
|
|||
|
||||
- Jose L. Salcedo-Perez, Benoit Forget, Kord Smith, and Paul Romano, "Hybrid
|
||||
tallies to improve performance in depletion Monte Carlo simulations," *Proc.
|
||||
M&C*, 927-936, Portland, Oregn, Aug. 25-29 (2019).
|
||||
M&C*, 927-936, Portland, Oregon, Aug. 25-29 (2019).
|
||||
|
||||
- Zhao-Qing Liu, Ze-Long Zhao, Yong-Wei Yang, Yu-Cui Gao, Hai-Yan Meng, and
|
||||
Qing-Yu Gao, "`Development and validation of depletion code system IMPC-Burnup
|
||||
|
|
@ -533,7 +533,7 @@ Sensitivity Analysis
|
|||
|
||||
- Abdulla Alhajri and Benoit Forget, "Eigenvalue Sensitivity in Monte Carlo
|
||||
Simulations to Nuclear Data Parameters using the Multipole Formalism," *Proc.
|
||||
M&C*, 1895-1906, Portland, Oregn, Aug. 25-29 (2019).
|
||||
M&C*, 1895-1906, Portland, Oregon, Aug. 25-29 (2019).
|
||||
|
||||
- Xingjie Peng, Jingang Liang, Benoit Forget, and Kord Smith, "`Calculation of
|
||||
adjoint-weighted reactor kinetics parameters in OpenMC
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ New Features
|
|||
- The :meth:`openmc.Plane.from_points` function creates a plane given three
|
||||
points that pass through it.
|
||||
- The :func:`openmc.model.pin` function creates a pin cell universe given a
|
||||
sequence of radii and materials.
|
||||
sequence of concentric cylinders and materials.
|
||||
|
||||
------------------
|
||||
Python API Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,14 @@
|
|||
import shutil
|
||||
|
||||
import numpy as np
|
||||
import pytest
|
||||
|
||||
|
||||
# Check if NJOY is available
|
||||
needs_njoy = pytest.mark.skipif(shutil.which('njoy') is None,
|
||||
reason="NJOY not installed")
|
||||
|
||||
|
||||
def assert_unbounded(obj):
|
||||
"""Assert that a region/cell is unbounded."""
|
||||
ll, ur = obj.bounding_box
|
||||
|
|
|
|||
|
|
@ -1,20 +1,16 @@
|
|||
from collections.abc import Mapping, Callable
|
||||
import os
|
||||
import shutil
|
||||
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
import pytest
|
||||
import openmc.data
|
||||
|
||||
from . import needs_njoy
|
||||
|
||||
_TEMPERATURES = [300., 600., 900.]
|
||||
_ENDF_DATA = os.environ['OPENMC_ENDF_DATA']
|
||||
|
||||
# Check if NJOY is available
|
||||
needs_njoy = pytest.mark.skipif(shutil.which('njoy') is None,
|
||||
reason="NJOY not installed")
|
||||
|
||||
|
||||
@pytest.fixture(scope='module')
|
||||
def pu239():
|
||||
|
|
|
|||
|
|
@ -2,19 +2,16 @@ from collections.abc import Callable
|
|||
from math import exp
|
||||
import os
|
||||
import random
|
||||
import shutil
|
||||
|
||||
import numpy as np
|
||||
import pytest
|
||||
import openmc.data
|
||||
|
||||
from . import needs_njoy
|
||||
|
||||
|
||||
_ENDF_DATA = os.environ['OPENMC_ENDF_DATA']
|
||||
|
||||
# Check if NJOY is available
|
||||
needs_njoy = pytest.mark.skipif(shutil.which('njoy') is None,
|
||||
reason="NJOY not installed")
|
||||
|
||||
|
||||
@pytest.fixture(scope='module')
|
||||
def h2o():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue