Merge branch 'release-0.6.1' into develop

This commit is contained in:
Paul Romano 2014-10-13 19:50:36 -04:00
commit 35f0e2b93d
87 changed files with 129 additions and 117 deletions

View file

@ -48,7 +48,7 @@ copyright = u'2011-2014, Massachusetts Institute of Technology'
# The short X.Y version.
version = "0.6"
# The full version, including alpha/beta/rc tags.
release = "0.6.0"
release = "0.6.1"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -4,6 +4,13 @@
State Point Binary File Specifications
======================================
-----------
Revision 12
-----------
Same as revision 11, except **tallies(i) % scatt_order(j)** is now **tallies(i)
% moment_order(j)**.
-----------
Revision 11
-----------
@ -218,13 +225,13 @@ if (run_mode == MODE_EIGENVALUE)
**integer(4) tallies(i) % score_bins(j)**
Values of specified scoring bins (e.g. SCORE_FLUX).
*do j = 1, tallies(i) % n_score_bins*
**integer(4) tallies(i) % scatt_order(j)**
Scattering Order specified scoring bins.
**integer(4) tallies(i) % n_score_bins**
Number of scoring bins without accounting for those added by
@ -265,7 +272,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -295,7 +302,7 @@ if (run_mode == MODE_EIGENVALUE and source_present)
Energy of the i-th source particle.
-----------
Revision 10
Revision 10
-----------
**integer(4) FILETYPE_STATEPOINT**
@ -508,13 +515,13 @@ if (run_mode == MODE_EIGENVALUE)
**integer(4) tallies(i) % score_bins(j)**
Values of specified scoring bins (e.g. SCORE_FLUX).
*do j = 1, tallies(i) % n_score_bins*
**integer(4) tallies(i) % scatt_order(j)**
Scattering Order specified scoring bins.
**integer(4) tallies(i) % n_score_bins**
Number of scoring bins without accounting for those added by
@ -551,7 +558,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -760,13 +767,13 @@ if (run_mode == MODE_EIGENVALUE)
**integer(4) tallies(i) % score_bins(j)**
Values of specified scoring bins (e.g. SCORE_FLUX).
*do j = 1, tallies(i) % n_score_bins*
**integer(4) tallies(i) % scatt_order(j)**
Scattering Order specified scoring bins.
**integer(4) tallies(i) % n_score_bins**
Number of scoring bins without accounting for those added by
@ -803,7 +810,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -1008,13 +1015,13 @@ if (run_mode == MODE_EIGENVALUE)
**integer(4) tallies(i) % score_bins(j)**
Values of specified scoring bins (e.g. SCORE_FLUX).
*do j = 1, tallies(i) % n_score_bins*
**integer(4) tallies(i) % scatt_order(j)**
Scattering Order specified scoring bins.
**integer(4) tallies(i) % n_score_bins**
Number of scoring bins without accounting for those added by
@ -1051,7 +1058,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -1240,13 +1247,13 @@ if (run_mode == MODE_EIGENVALUE)
**integer(4) tallies(i) % score_bins(j)**
Values of specified scoring bins (e.g. SCORE_FLUX).
*do j = 1, tallies(i) % n_score_bins*
**integer(4) tallies(i) % scatt_order(j)**
Scattering Order specified scoring bins.
**integer(4) tallies(i) % n_score_bins**
Number of scoring bins without accounting for those added by
@ -1283,7 +1290,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -1504,7 +1511,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -1713,7 +1720,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -1918,7 +1925,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -2119,7 +2126,7 @@ if (tallies_on > 0)
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the
i-th tally
@ -2240,7 +2247,7 @@ Revision 2
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the i-th
tally
@ -2339,7 +2346,7 @@ Revision 1
*do j = 1, size(tallies(i) % scores, 1)*
**real(8) tallies(i) % scores(j,k) % sum**
Accumulated sum for the j-th score and k-th filter of the i-th
tally

View file

@ -17,7 +17,7 @@ the problem at hand (mostly on the number of nuclides in the problem).
New Features
------------
- Coarse mesh finite difference acceleration no longer requires PETSc
- Coarse mesh finite difference (CMFD) acceleration no longer requires PETSc
- Statepoint file numbering is now zero-padded
- Python scripts now compatible with Python 2 or 3
- Ability to run particle restarts in fixed source calculations
@ -38,6 +38,7 @@ Bug Fixes
- 01178b_: Fix metastables nuclides in NNDC cross_sections.xml file
- 62ec43_: Don't read tallies.xml when OpenMC is run in plotting mode
- 2a95ef_: Prevent segmentation fault on "current" score without mesh filter
- 93e482_: Check for negative values in probability tables
.. _03e890: https://github.com/mit-crpg/openmc/commit/03e890
.. _4439de: https://github.com/mit-crpg/openmc/commit/4439de
@ -48,6 +49,7 @@ Bug Fixes
.. _01178b: https://github.com/mit-crpg/openmc/commit/01178b
.. _62ec43: https://github.com/mit-crpg/openmc/commit/62ec43
.. _2a95ef: https://github.com/mit-crpg/openmc/commit/2a95ef
.. _93e482: https://github.com/mit-crpg/openmc/commit/93e482
------------
Contributors

View file

@ -1092,10 +1092,10 @@ The ``<tally>`` element accepts the following sub-elements:
all of the harmonic moments of order 0 to N. N must be between 0 and 10.
:total-YN:
Spherical harmonic expansion of the incoming particle's direction of
motion :math:`\left(\Omega\right)` of the total flux. This score will
tally all of the harmonic moments of order 0 to N. N must be between 0
and 10.
The total reaction rate expanded via spherical harmonics about the
direction of motion of the neutron, :math:`\Omega`.
This score will tally all of the harmonic moments of order 0 to N. N must
be between 0 and 10.
:current:
Partial currents on the boundaries of each cell in a mesh.

View file

@ -239,20 +239,22 @@ the root directory of the source code:
.. code-block:: sh
cd src
mkdir src/build
cd src/build
cmake ..
make
sudo make install
make install
This will build an executable named ``openmc`` and install it (by default in
/usr/local/bin). If you do not have administrative privileges, you can install
OpenMC locally by replacing the last command with:
OpenMC locally by specifying an install prefix when running cmake:
.. code-block:: sh
make install -e prefix=$HOME/.local
cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local ..
The ``prefix`` variable can be changed to any path for which you have
write-access.
The ``CMAKE_INSTALL_PREFIX`` variable can be changed to any path for which you
have write-access.
Compiling on Windows
--------------------
@ -326,7 +328,7 @@ Testing Build
-------------
If you have ENDF/B-VII.1 cross sections from NNDC_ you can test your build.
Make sure the **CROSS_SECTIONS** environmental variable is set to the
Make sure the **CROSS_SECTIONS** environmental variable is set to the
*cross_sections.xml* file in the *data/nndc* directory.
There are two ways to run tests. The first is to use the Makefile present in
the source directory and run the following:

View file

@ -261,7 +261,8 @@ install(FILES ../LICENSE DESTINATION "share/doc/${program}/copyright")
find_package(PythonInterp)
if(PYTHONINTERP_FOUND)
install(CODE "execute_process(
COMMAND ${PYTHON_EXECUTABLE} setup.py install --user
COMMAND ${PYTHON_EXECUTABLE} setup.py install
--prefix=${CMAKE_INSTALL_PREFIX}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/utils)")
endif()

View file

@ -8,7 +8,7 @@ module constants
! OpenMC major, minor, and release numbers
integer, parameter :: VERSION_MAJOR = 0
integer, parameter :: VERSION_MINOR = 6
integer, parameter :: VERSION_RELEASE = 0
integer, parameter :: VERSION_RELEASE = 1
! Revision numbers for binary files
integer, parameter :: REVISION_STATEPOINT = 12

View file

@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='statepoint',
version='0.6.0',
version='0.6.1',
description='OpenMC StatePoint',
author='Paul Romano',
author_email='paul.k.romano@gmail.com',

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import particle restart
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import particle_restart as pr
# read in particle restart file

View file

@ -3,7 +3,7 @@
import sys
# import particle restart
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import particle_restart as pr
# read in particle restart file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -4,7 +4,7 @@ import sys
import numpy as np
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file

View file

@ -3,7 +3,7 @@
import sys
# import statepoint
sys.path.append('../../src/utils')
sys.path.insert(0, '../../src/utils')
import statepoint
# read in statepoint file