RuntimeError when Accessing Exodus II Data

Hi all,
I'm trying to access Exodus II Data from a [MOOSE](https://mooseframework.inl.gov/) application. I'm following the instructions provided [here](http://yt-project.org/doc/examining/loading_data.html#exodus-ii-data). My particular script is follows:
```python import yt
file_name = "results.e" ds = yt.load(file_name, step=-1) time = float(ds.current_time) ad = ds.all_data() ad["connect1", "rho"] ``` where ("connect1", "rho") is a valid field. This script fails on the last line with a traceback and the following error message:
``` RuntimeError: Region right edge[0] < left edge: width = 0.0 ```
The particular MOOSE simulation consists of two, 1D meshes. Would anyone know why I'm getting this error and how to overcome it?
Thanks in advance, Andrew

Hi Andrew,
Any chance you can share results.e for debugging purposes?
Nathan
On Fri, Jan 11, 2019 at 3:57 PM andfranklin3@gmail.com wrote:
Hi all,
I'm trying to access Exodus II Data from a [MOOSE]( https://mooseframework.inl.gov/) application. I'm following the instructions provided [here]( http://yt-project.org/doc/examining/loading_data.html#exodus-ii-data). My particular script is follows:
import yt file_name = "results.e" ds = yt.load(file_name, step=-1) time = float(ds.current_time) ad = ds.all_data() ad["connect1", "rho"]
where ("connect1", "rho") is a valid field. This script fails on the last line with a traceback and the following error message:
RuntimeError: Region right edge[0] < left edge: width = 0.0
The particular MOOSE simulation consists of two, 1D meshes. Would anyone know why I'm getting this error and how to overcome it?
Thanks in advance, Andrew _______________________________________________ yt-users mailing list -- yt-users@python.org To unsubscribe send an email to yt-users-leave@python.org

Hi Nathan,
Thanks for the response! Unfortunately I cannot share "results.e".
However, I might be able to reproduce the error with a MOOSE app where I can share the results. This might take me a while, so please bare with me.
-- Andrew
participants (2)
-
andfranklin3@gmail.com
-
Nathan Goldbaum