mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 13:15:39 -04:00
Address comments from @gridley
This commit is contained in:
parent
95177d8888
commit
e7aab41c62
4 changed files with 9 additions and 10 deletions
|
|
@ -49,12 +49,11 @@ Installing on Linux/Mac/Windows with Docker
|
|||
OpenMC can be easily deployed using `Docker <https://www.docker.com/>`_ on any
|
||||
Windows, Mac, or Linux system. With Docker running, execute the following command
|
||||
in the shell to download and run a `Docker image`_ with the most recent release
|
||||
of OpenMC from `DockerHub <https://hub.docker.com/>`_ called
|
||||
``openmc/openmc:v0.10.0``:
|
||||
of OpenMC from `DockerHub <https://hub.docker.com/>`_:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
docker run openmc/openmc:v0.10.0
|
||||
docker run openmc/openmc:latest
|
||||
|
||||
This will take several minutes to run depending on your internet download speed.
|
||||
The command will place you in an interactive shell running in a `Docker
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ Bug Fixes
|
|||
- `Fix bug related to logging of particle restarts <https://github.com/openmc-dev/openmc/pull/1649>`_
|
||||
- `Examine if region exists before removing redundant surfaces <https://github.com/openmc-dev/openmc/pull/1650>`_
|
||||
- `Fix plotting of individual universe levels <https://github.com/openmc-dev/openmc/pull/1651>`_
|
||||
- `Mixed materials should inhereit depletable attribute <https://github.com/openmc-dev/openmc/pull/1657>`_
|
||||
- `Mixed materials should inherit depletable attribute <https://github.com/openmc-dev/openmc/pull/1657>`_
|
||||
- `Fix typo in energy units in dose coefficients <https://github.com/openmc-dev/openmc/pull/1659/files>`_
|
||||
- `Fixes for large tally cases <https://github.com/openmc-dev/openmc/pull/1666>`_
|
||||
- `Fix verification of volume calculation results <https://github.com/openmc-dev/openmc/pull/1677>`_
|
||||
|
|
|
|||
|
|
@ -49,12 +49,11 @@ Installing on Linux/Mac/Windows with Docker
|
|||
OpenMC can be easily deployed using `Docker <https://www.docker.com/>`_ on any
|
||||
Windows, Mac, or Linux system. With Docker running, execute the following
|
||||
command in the shell to download and run a `Docker image`_ with the most recent
|
||||
release of OpenMC from `DockerHub <https://hub.docker.com/>`_ called
|
||||
``openmc/openmc:v0.10.0``:
|
||||
release of OpenMC from `DockerHub <https://hub.docker.com/>`_:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
docker run openmc/openmc:v0.10.0
|
||||
docker run openmc/openmc:latest
|
||||
|
||||
This will take several minutes to run depending on your internet download speed.
|
||||
The command will place you in an interactive shell running in a `Docker
|
||||
|
|
|
|||
|
|
@ -251,7 +251,7 @@ For a full list of all classes related to statistical distributions, see
|
|||
File-based Sources
|
||||
------------------
|
||||
|
||||
OpenMC can use a pregenerated HDF5 source file by specfying the ``filename``
|
||||
OpenMC can use a pregenerated HDF5 source file by specifying the ``filename``
|
||||
argument to :class:`openmc.Source`::
|
||||
|
||||
settings.source = openmc.Source(filename='source.h5')
|
||||
|
|
@ -262,8 +262,9 @@ source file can be manually generated with the :func:`openmc.write_source_file`
|
|||
function. This is particularly useful for coupling OpenMC with another program
|
||||
that generates a source to be used in OpenMC.
|
||||
|
||||
A source file based on particles that cross one or surfaces can be generated
|
||||
during a simulation using the :attr:`Settings.surf_source_write` attribute::
|
||||
A source file based on particles that cross one or more surfaces can be
|
||||
generated during a simulation using the :attr:`Settings.surf_source_write`
|
||||
attribute::
|
||||
|
||||
settings.surf_source_write = {
|
||||
'surfaces_ids': [1, 2, 3],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue