From 18b469bfa5cc4b4d1280655e9166c997db267481 Mon Sep 17 00:00:00 2001 From: stevendargaville Date: Thu, 13 Feb 2020 14:44:53 +0000 Subject: [PATCH] Removed new variables from the statepoint python file as they are no longer read out --- openmc/statepoint.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/openmc/statepoint.py b/openmc/statepoint.py index 0d78bf68d..a8e13efd2 100644 --- a/openmc/statepoint.py +++ b/openmc/statepoint.py @@ -77,10 +77,6 @@ class StatePoint(object): Number of batches n_inactive : int Number of inactive batches - n_max_lost_particles : int - Number of max lost particles - relative_max_lost_particles : float - Number of max lost particles, relative to the total number of particles n_particles : int Number of particles per generation n_realizations : int @@ -316,10 +312,6 @@ class StatePoint(object): else: return None - @property - def n_max_lost_particles(self): - return self._f['n_max_lost_particles'][()] - @property def relative_max_lost_particles(self): return self._f['relative_max_lost_particles'][()]