Added IPython notebook with post-processing examples.

Since the notebook shows an example of how to histogram relative errors from a
statepoint, we don't really need the openmc-statepoint-histogram utility, so
it's been deleted. The user's guide section on post processing has been updated
as well.
This commit is contained in:
Paul Romano 2015-09-19 07:38:33 +07:00
parent c57b2c22d9
commit 42032210fb
9 changed files with 1207 additions and 318 deletions

View file

@ -16,5 +16,4 @@ as debugging.
styleguide
workflow
xml-parsing
voxel
docbuild

View file

@ -1,52 +0,0 @@
.. _devguide_voxel:
=====================================
Voxel Plot Binary File Specifications
=====================================
The current revision of the voxel plot binary file is 1.
**integer(4) n_voxels_x**
Number of voxels in the x direction
**integer(4) n_voxels_y**
Number of voxels in the y direction
**integer(4) n_voxels_z**
Number of voxels in the z direction
**real(8) width_voxel_x**
Width of voxels in the x direction
**real(8) width_voxel_y**
Width of voxels in the y direction
**real(8) width_voxel_z**
Width of voxels in the z direction
**real(8) lower_left_x**
Lower left x point of the voxel grid
**real(8) lower_left_y**
Lower left y point of the voxel grid
**real(8) lower_left_z**
Lower left z point of the voxel grid
*do x = 1, n_voxels_x*
*do y = 1, n_voxels_y*
*do z = 1, n_voxels_z*
**integer(4) id**
Cell or material id number at this voxel center. Set to -1 when
cell not_found.