.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "generated/gallery/parse_simulation.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_generated_gallery_parse_simulation.py: ================================== Parse and Visualize HYDRAD Results ================================== This example demonstrates how to configure a simple hydrad simulation and read in and visualize the outputs as a function of time and field-aligned spatial coordinate. .. GENERATED FROM PYTHON SOURCE LINES 10-24 .. code-block:: Python import astropy.units as u import pathlib import tempfile from astropy.visualization import ImageNormalize, LogStretch from pydrad.configure import Configure from pydrad.configure.data import get_defaults from pydrad.configure.util import get_clean_hydrad, run_shell_command from pydrad.parse import Strand tmpdir = pathlib.Path(tempfile.mkdtemp()) # Change to wherever you want to save your clean HYDRAD copy .. GENERATED FROM PYTHON SOURCE LINES 25-41 HYDRAD prints all results to the ``Results`` directory in the main code directory. These filenames are in the format ``profile{index}.{ext}`` where ``index`` is the timestep number and ``ext`` can be one of the following filetypes, - ``phy`` – main physics results file containing temperature, density, etc. - ``amr`` – data related to the adaptive mesh - ``trm`` – equation terms at each grid cell Parsing all of these files can be difficult. `pydrad` provides a convenient object, `~pydrad.parse.Strand`, for easily accessing the data associated with a particular HYDRAD run. First, we'll setup a simple HYDRAD run and run the simulation. Grab a new copy of HYDRAD .. GENERATED FROM PYTHON SOURCE LINES 41-44 .. code-block:: Python hydrad_clean = tmpdir / 'hydrad-clean' get_clean_hydrad(hydrad_clean, from_github=True) .. GENERATED FROM PYTHON SOURCE LINES 45-49 We'll start with the default configuration and setup a simple simulation for a 50 Mm loop lasting 500 s in which there are no heating events such that the loop is maintained in static equilibrium. .. GENERATED FROM PYTHON SOURCE LINES 49-56 .. code-block:: Python config = get_defaults() config['general']['total_time'] = 500 * u.s config['general']['output_interval'] = 10 * u.s config['general']['loop_length'] = 50 * u.Mm config['heating']['background']['use_initial_conditions'] = True config['heating']['events'] = [] .. GENERATED FROM PYTHON SOURCE LINES 57-66 To reduce the commputation time and memory footprint of our example simulation, we reduce the degree to which our spatial grid is refined. In general, this is something that should be done cautiously. See `Bradshaw and Cargill (2013) `__ for more details on appropriately resolving gradients in the transition region. This is an especially important consideration in impulsive heating scenarios. .. GENERATED FROM PYTHON SOURCE LINES 66-69 .. code-block:: Python config['grid']['initial_refinement_level'] = 6 config['grid']['maximum_refinement_level'] = 6 .. GENERATED FROM PYTHON SOURCE LINES 70-73 Next, we'll setup and run the simulation. We'll run HYDRAD directly from Python, but this is easily done via the command line as well. This can take a few minutes. .. GENERATED FROM PYTHON SOURCE LINES 73-78 .. code-block:: Python c = Configure(config) hydrad_results = tmpdir / 'steady-run' c.setup_simulation(hydrad_results, hydrad_clean) run_shell_command(hydrad_results / 'HYDRAD.exe') .. rst-class:: sphx-glr-script-out .. code-block:: none WARNING: ../source/misc.cpp: In function ‘void GetConfigurationParameters(PARAMETERS*)’: ../source/misc.cpp:31:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 31 | fscanf( pFile, "%s", pParams->szOutputFilename ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp: In member function ‘void CElement::OpenRangesFile(char*)’: ../../Radiation_Model/source/element.cpp:63:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 63 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:66:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 66 | fscanf( pFile, "%i", &NumTemp ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:67:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 67 | fscanf( pFile, "%i", &NumDen ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:76:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 76 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:85:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 85 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp: In member function ‘void CElement::OpenAbundanceFile(char*)’: ../../Radiation_Model/source/element.cpp:105:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 105 | fscanf( pFile, "%i", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:121:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 121 | fscanf( pFile, "%i", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp: In member function ‘void CElement::OpenEmissivityFile(char*)’: ../../Radiation_Model/source/element.cpp:152:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 152 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:154:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 154 | fscanf( pFile, "%i", &NumIons ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:162:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 162 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:166:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 166 | fscanf( pFile, "%i", &pSpecNum[i] ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:184:15: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 184 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp: In member function ‘void CElement::OpenRatesFile(char*)’: ../../Radiation_Model/source/element.cpp:237:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 237 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:251:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 251 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp: In member function ‘void CRadiation::Initialise(char*)’: ../../Radiation_Model/source/radiation.cpp:92:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 92 | fscanf( pFile, "%s", buffer1 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:96:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 96 | fscanf( pFile, "%s", buffer2 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:99:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 99 | fscanf( pFile, "%s", buffer3 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:103:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 103 | fscanf( pFile, "%s", buffer4 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:106:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 106 | fscanf( pFile, "%i", &NumElements ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:117:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 117 | fscanf( pFile, "%s", buffer1 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:120:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 120 | fscanf( pFile, "%i", &(pZ[i]) ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp: In member function ‘void CRadiation::OpenRangesFile(char*)’: ../../Radiation_Model/source/radiation.cpp:156:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 156 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:159:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 159 | fscanf( pFile, "%i", &NumTemp ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:160:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 160 | fscanf( pFile, "%i", &NumDen ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:169:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 169 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:178:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 178 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp: In member function ‘void CPieceWiseFit::OpenPieceWiseFit(char*)’: ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:49:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | fscanf( pInputFile, "%i", &iPolyOrder ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:51:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 51 | fscanf( pInputFile, "%i", &inumSD ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp: In member function ‘void CPieceWiseFit::GeneratePieceWiseFit(char*, char*)’: ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:92:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 92 | fscanf( pInputFile, "%i", &iPolyOrder ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:99:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 99 | fscanf( pInputFile, "%i", &inumSD ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:106:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 106 | fscanf( pInputFile, "%i", &inumPoints ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/source/file.cpp: In function ‘void ReadDouble(void*, double*)’: ../../Resources/source/file.cpp:24:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 24 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ [pydrad.configure.util] INFO: Calculating initial hydrostatic conditions... Peak heating range = 7.6913e-04 -> 7.7090e-04 erg cm^-3 s^-1 Optimum peak heating rate = 7.6952e-04 erg cm^-3 s^-1 Writing initial conditions file... Done! [pydrad.configure.util] WARNING: ../source/mesh.cpp: In member function ‘void CAdaptiveMesh::CreateInitialMesh()’: ../source/mesh.cpp:84:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 84 | fscanf( pFile, "%i", &iFileNumber ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../source/mesh.cpp:88:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 88 | fscanf( pFile, "%i", &Params.iNumberOfCells ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../source/mesh.cpp:112:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 112 | fscanf( pFile, "%i", &(CellProperties.iRefinementLevel) ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../source/mesh.cpp:114:15: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 114 | fscanf( pFile, "%i", &(CellProperties.iUniqueID[j]) ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../source/eqns.cpp: In member function ‘void CEquations::Initialise()’: ../source/eqns.cpp:131:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 131 | fscanf( pFile, "%s", Params.Profiles ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../source/eqns.cpp:133:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 133 | fscanf( pFile, "%s", Params.GravityFilename ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../source/eqns.cpp:147:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 147 | fscanf( pFile, "%i", &iTemp ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Heating_Model/source/heat.cpp: In member function ‘void CHeat::GetHeatingData()’: ../../Heating_Model/source/heat.cpp:104:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 104 | fscanf( pConfigFile, "%i", &NumActivatedEvents ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp: In member function ‘void CIonFrac::Initialise(CIonFrac*, char*, PRADIATION)’: ../../Radiation_Model/source/ionfrac.cpp:49:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp:52:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 52 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp:55:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 55 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp:58:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 58 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp:61:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 61 | fscanf( pFile, "%i", &NumElements ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp:74:15: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 74 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp:77:15: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 77 | fscanf( pFile, "%i", &(pZ[i]) ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp: In member function ‘void CIonFrac::ReadAllIonFracFromFile(void*)’: ../../Radiation_Model/source/ionfrac.cpp:199:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 199 | fscanf( (FILE*)pFile, "%i", &(pZ[i]) ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/ionfrac.cpp: In member function ‘void CIonFrac::ReadIonFracFromFile(void*, int)’: ../../Radiation_Model/source/ionfrac.cpp:216:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 216 | fscanf( (FILE*)pFile, "%i", &(pZ[i]) ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp: In member function ‘void CElement::OpenRangesFile(char*)’: ../../Radiation_Model/source/element.cpp:63:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 63 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:66:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 66 | fscanf( pFile, "%i", &NumTemp ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:67:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 67 | fscanf( pFile, "%i", &NumDen ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:76:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 76 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:85:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 85 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp: In member function ‘void CElement::OpenAbundanceFile(char*)’: ../../Radiation_Model/source/element.cpp:105:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 105 | fscanf( pFile, "%i", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:121:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 121 | fscanf( pFile, "%i", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp: In member function ‘void CElement::OpenEmissivityFile(char*)’: ../../Radiation_Model/source/element.cpp:152:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 152 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:154:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 154 | fscanf( pFile, "%i", &NumIons ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:162:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 162 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:166:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 166 | fscanf( pFile, "%i", &pSpecNum[i] ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:184:15: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 184 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp: In member function ‘void CElement::OpenRatesFile(char*)’: ../../Radiation_Model/source/element.cpp:237:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 237 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/element.cpp:251:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 251 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp: In member function ‘void CRadiation::Initialise(char*)’: ../../Radiation_Model/source/radiation.cpp:92:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 92 | fscanf( pFile, "%s", buffer1 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:96:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 96 | fscanf( pFile, "%s", buffer2 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:99:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 99 | fscanf( pFile, "%s", buffer3 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:103:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 103 | fscanf( pFile, "%s", buffer4 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:106:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 106 | fscanf( pFile, "%i", &NumElements ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:117:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 117 | fscanf( pFile, "%s", buffer1 ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:120:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 120 | fscanf( pFile, "%i", &(pZ[i]) ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp: In member function ‘void CRadiation::OpenRangesFile(char*)’: ../../Radiation_Model/source/radiation.cpp:156:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 156 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:159:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 159 | fscanf( pFile, "%i", &NumTemp ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:160:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 160 | fscanf( pFile, "%i", &NumDen ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:169:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 169 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Radiation_Model/source/radiation.cpp:178:11: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 178 | fscanf( pFile, "%c", &buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp: In member function ‘void CPieceWiseFit::OpenPieceWiseFit(char*)’: ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:49:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | fscanf( pInputFile, "%i", &iPolyOrder ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:51:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 51 | fscanf( pInputFile, "%i", &inumSD ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp: In member function ‘void CPieceWiseFit::GeneratePieceWiseFit(char*, char*)’: ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:92:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 92 | fscanf( pInputFile, "%i", &iPolyOrder ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:99:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 99 | fscanf( pInputFile, "%i", &inumSD ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/Utils/generatePieceWiseFit/source/piecewisefit.cpp:106:23: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 106 | fscanf( pInputFile, "%i", &inumPoints ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../Resources/source/file.cpp: In function ‘void ReadDouble(void*, double*)’: ../../Resources/source/file.cpp:24:7: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 24 | fscanf( pFile, "%s", buffer ); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ [pydrad.configure.util] INFO: Processing the initial conditions... Solving... model-time elapsed = 9.7295e+00 s; dt = 9.6230e-03 s wall-time elapsed = 2.4102e-01 s; ~ wall-time remaining = 1.2145e+01 s wall-time/1000 steps = 2.4102e-01 s; wall-time/second = 2.4772e-02 s refinement level = 6/6; total grid cells = 202 model-time elapsed = 1.7188e+01 s; dt = 7.4613e-03 s wall-time elapsed = 4.9456e-01 s; ~ wall-time remaining = 1.3892e+01 s wall-time/1000 steps = 2.5353e-01 s; wall-time/second = 2.8773e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 2.6604e+01 s; dt = 9.5936e-03 s wall-time elapsed = 7.3888e-01 s; ~ wall-time remaining = 1.3148e+01 s wall-time/1000 steps = 2.4431e-01 s; wall-time/second = 2.7773e-02 s refinement level = 6/6; total grid cells = 199 model-time elapsed = 3.5142e+01 s; dt = 8.1328e-03 s wall-time elapsed = 9.9569e-01 s; ~ wall-time remaining = 1.3171e+01 s wall-time/1000 steps = 2.5680e-01 s; wall-time/second = 2.8333e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 4.4588e+01 s; dt = 9.6099e-03 s wall-time elapsed = 1.2414e+00 s; ~ wall-time remaining = 1.2679e+01 s wall-time/1000 steps = 2.4570e-01 s; wall-time/second = 2.7842e-02 s refinement level = 6/6; total grid cells = 201 model-time elapsed = 5.4048e+01 s; dt = 9.6104e-03 s wall-time elapsed = 1.4905e+00 s; ~ wall-time remaining = 1.2298e+01 s wall-time/1000 steps = 2.4907e-01 s; wall-time/second = 2.7577e-02 s refinement level = 6/6; total grid cells = 204 model-time elapsed = 6.2897e+01 s; dt = 8.4814e-03 s wall-time elapsed = 1.7370e+00 s; ~ wall-time remaining = 1.2071e+01 s wall-time/1000 steps = 2.4649e-01 s; wall-time/second = 2.7616e-02 s refinement level = 6/6; total grid cells = 202 model-time elapsed = 6.6458e+01 s; dt = 3.5413e-03 s wall-time elapsed = 1.9850e+00 s; ~ wall-time remaining = 1.2949e+01 s wall-time/1000 steps = 2.4797e-01 s; wall-time/second = 2.9868e-02 s refinement level = 6/6; total grid cells = 206 model-time elapsed = 7.5786e+01 s; dt = 9.2695e-03 s wall-time elapsed = 2.2398e+00 s; ~ wall-time remaining = 1.2537e+01 s wall-time/1000 steps = 2.5478e-01 s; wall-time/second = 2.9554e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 8.2707e+01 s; dt = 7.0021e-03 s wall-time elapsed = 2.4927e+00 s; ~ wall-time remaining = 1.2577e+01 s wall-time/1000 steps = 2.5296e-01 s; wall-time/second = 3.0139e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 8.8024e+01 s; dt = 5.3248e-03 s wall-time elapsed = 2.7398e+00 s; ~ wall-time remaining = 1.2823e+01 s wall-time/1000 steps = 2.4704e-01 s; wall-time/second = 3.1125e-02 s refinement level = 6/6; total grid cells = 206 model-time elapsed = 9.7415e+01 s; dt = 9.5935e-03 s wall-time elapsed = 2.9846e+00 s; ~ wall-time remaining = 1.2335e+01 s wall-time/1000 steps = 2.4485e-01 s; wall-time/second = 3.0639e-02 s refinement level = 6/6; total grid cells = 200 model-time elapsed = 1.0470e+02 s; dt = 7.6888e-03 s wall-time elapsed = 3.2595e+00 s; ~ wall-time remaining = 1.2306e+01 s wall-time/1000 steps = 2.7488e-01 s; wall-time/second = 3.1132e-02 s refinement level = 6/6; total grid cells = 226 model-time elapsed = 1.0806e+02 s; dt = 3.3808e-03 s wall-time elapsed = 3.5098e+00 s; ~ wall-time remaining = 1.2731e+01 s wall-time/1000 steps = 2.5026e-01 s; wall-time/second = 3.2481e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 1.1737e+02 s; dt = 9.5405e-03 s wall-time elapsed = 3.7544e+00 s; ~ wall-time remaining = 1.2240e+01 s wall-time/1000 steps = 2.4460e-01 s; wall-time/second = 3.1988e-02 s refinement level = 6/6; total grid cells = 201 model-time elapsed = 1.2045e+02 s; dt = 3.0809e-03 s wall-time elapsed = 4.0261e+00 s; ~ wall-time remaining = 1.2686e+01 s wall-time/1000 steps = 2.7172e-01 s; wall-time/second = 3.3425e-02 s refinement level = 6/6; total grid cells = 224 model-time elapsed = 1.2986e+02 s; dt = 9.2240e-03 s wall-time elapsed = 4.2627e+00 s; ~ wall-time remaining = 1.2150e+01 s wall-time/1000 steps = 2.3658e-01 s; wall-time/second = 3.2825e-02 s refinement level = 6/6; total grid cells = 199 model-time elapsed = 1.3564e+02 s; dt = 5.8349e-03 s wall-time elapsed = 4.5175e+00 s; ~ wall-time remaining = 1.2134e+01 s wall-time/1000 steps = 2.5468e-01 s; wall-time/second = 3.3304e-02 s refinement level = 6/6; total grid cells = 211 model-time elapsed = 1.4500e+02 s; dt = 9.5374e-03 s wall-time elapsed = 4.7552e+00 s; ~ wall-time remaining = 1.1642e+01 s wall-time/1000 steps = 2.3775e-01 s; wall-time/second = 3.2794e-02 s refinement level = 6/6; total grid cells = 195 model-time elapsed = 1.5396e+02 s; dt = 9.2297e-03 s wall-time elapsed = 5.0166e+00 s; ~ wall-time remaining = 1.1275e+01 s wall-time/1000 steps = 2.6141e-01 s; wall-time/second = 3.2583e-02 s refinement level = 6/6; total grid cells = 214 model-time elapsed = 1.6334e+02 s; dt = 9.2271e-03 s wall-time elapsed = 5.2598e+00 s; ~ wall-time remaining = 1.0841e+01 s wall-time/1000 steps = 2.4315e-01 s; wall-time/second = 3.2202e-02 s refinement level = 6/6; total grid cells = 199 model-time elapsed = 1.7263e+02 s; dt = 7.5570e-03 s wall-time elapsed = 5.5197e+00 s; ~ wall-time remaining = 1.0468e+01 s wall-time/1000 steps = 2.5987e-01 s; wall-time/second = 3.1974e-02 s refinement level = 6/6; total grid cells = 213 model-time elapsed = 1.8204e+02 s; dt = 9.2832e-03 s wall-time elapsed = 5.7755e+00 s; ~ wall-time remaining = 1.0088e+01 s wall-time/1000 steps = 2.5584e-01 s; wall-time/second = 3.1726e-02 s refinement level = 6/6; total grid cells = 210 model-time elapsed = 1.9148e+02 s; dt = 9.2872e-03 s wall-time elapsed = 6.0308e+00 s; ~ wall-time remaining = 9.7170e+00 s wall-time/1000 steps = 2.5528e-01 s; wall-time/second = 3.1496e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 2.0066e+02 s; dt = 7.9648e-03 s wall-time elapsed = 6.2865e+00 s; ~ wall-time remaining = 9.3778e+00 s wall-time/1000 steps = 2.5564e-01 s; wall-time/second = 3.1329e-02 s refinement level = 6/6; total grid cells = 211 model-time elapsed = 2.0996e+02 s; dt = 9.2965e-03 s wall-time elapsed = 6.5402e+00 s; ~ wall-time remaining = 9.0348e+00 s wall-time/1000 steps = 2.5370e-01 s; wall-time/second = 3.1150e-02 s refinement level = 6/6; total grid cells = 212 model-time elapsed = 2.1294e+02 s; dt = 2.8148e-03 s wall-time elapsed = 6.8267e+00 s; ~ wall-time remaining = 9.2028e+00 s wall-time/1000 steps = 2.8653e-01 s; wall-time/second = 3.2059e-02 s refinement level = 6/6; total grid cells = 235 model-time elapsed = 2.1851e+02 s; dt = 5.3649e-03 s wall-time elapsed = 7.0794e+00 s; ~ wall-time remaining = 9.1198e+00 s wall-time/1000 steps = 2.5268e-01 s; wall-time/second = 3.2398e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 2.2806e+02 s; dt = 9.5348e-03 s wall-time elapsed = 7.3436e+00 s; ~ wall-time remaining = 8.7569e+00 s wall-time/1000 steps = 2.6419e-01 s; wall-time/second = 3.2201e-02 s refinement level = 6/6; total grid cells = 205 model-time elapsed = 2.3543e+02 s; dt = 7.8471e-03 s wall-time elapsed = 7.6087e+00 s; ~ wall-time remaining = 8.5505e+00 s wall-time/1000 steps = 2.6511e-01 s; wall-time/second = 3.2318e-02 s refinement level = 6/6; total grid cells = 205 model-time elapsed = 2.4106e+02 s; dt = 5.5086e-03 s wall-time elapsed = 7.8833e+00 s; ~ wall-time remaining = 8.4677e+00 s wall-time/1000 steps = 2.7456e-01 s; wall-time/second = 3.2702e-02 s refinement level = 6/6; total grid cells = 207 model-time elapsed = 2.5039e+02 s; dt = 9.5164e-03 s wall-time elapsed = 8.1215e+00 s; ~ wall-time remaining = 8.0964e+00 s wall-time/1000 steps = 2.3820e-01 s; wall-time/second = 3.2436e-02 s refinement level = 6/6; total grid cells = 193 model-time elapsed = 2.5978e+02 s; dt = 9.5650e-03 s wall-time elapsed = 8.3744e+00 s; ~ wall-time remaining = 7.7441e+00 s wall-time/1000 steps = 2.5286e-01 s; wall-time/second = 3.2237e-02 s refinement level = 6/6; total grid cells = 211 model-time elapsed = 2.6920e+02 s; dt = 9.5749e-03 s wall-time elapsed = 8.6385e+00 s; ~ wall-time remaining = 7.4064e+00 s wall-time/1000 steps = 2.6414e-01 s; wall-time/second = 3.2090e-02 s refinement level = 6/6; total grid cells = 205 model-time elapsed = 2.7860e+02 s; dt = 9.5291e-03 s wall-time elapsed = 8.8883e+00 s; ~ wall-time remaining = 7.0634e+00 s wall-time/1000 steps = 2.4974e-01 s; wall-time/second = 3.1903e-02 s refinement level = 6/6; total grid cells = 205 model-time elapsed = 2.8794e+02 s; dt = 9.4606e-03 s wall-time elapsed = 9.1354e+00 s; ~ wall-time remaining = 6.7278e+00 s wall-time/1000 steps = 2.4706e-01 s; wall-time/second = 3.1726e-02 s refinement level = 6/6; total grid cells = 202 model-time elapsed = 2.9499e+02 s; dt = 7.4052e-03 s wall-time elapsed = 9.3944e+00 s; ~ wall-time remaining = 6.5291e+00 s wall-time/1000 steps = 2.5904e-01 s; wall-time/second = 3.1847e-02 s refinement level = 6/6; total grid cells = 214 model-time elapsed = 3.0429e+02 s; dt = 9.1575e-03 s wall-time elapsed = 9.6464e+00 s; ~ wall-time remaining = 6.2044e+00 s wall-time/1000 steps = 2.5197e-01 s; wall-time/second = 3.1702e-02 s refinement level = 6/6; total grid cells = 207 model-time elapsed = 3.1358e+02 s; dt = 9.1357e-03 s wall-time elapsed = 9.8956e+00 s; ~ wall-time remaining = 5.8829e+00 s wall-time/1000 steps = 2.4914e-01 s; wall-time/second = 3.1557e-02 s refinement level = 6/6; total grid cells = 204 model-time elapsed = 3.2280e+02 s; dt = 9.4335e-03 s wall-time elapsed = 1.0132e+01 s; ~ wall-time remaining = 5.5620e+00 s wall-time/1000 steps = 2.3646e-01 s; wall-time/second = 3.1388e-02 s refinement level = 6/6; total grid cells = 196 model-time elapsed = 3.2650e+02 s; dt = 3.5984e-03 s wall-time elapsed = 1.0398e+01 s; ~ wall-time remaining = 5.5259e+00 s wall-time/1000 steps = 2.6645e-01 s; wall-time/second = 3.1849e-02 s refinement level = 6/6; total grid cells = 224 model-time elapsed = 3.3575e+02 s; dt = 9.4910e-03 s wall-time elapsed = 1.0652e+01 s; ~ wall-time remaining = 5.2113e+00 s wall-time/1000 steps = 2.5396e-01 s; wall-time/second = 3.1727e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 3.4059e+02 s; dt = 4.7552e-03 s wall-time elapsed = 1.0927e+01 s; ~ wall-time remaining = 5.1139e+00 s wall-time/1000 steps = 2.7423e-01 s; wall-time/second = 3.2081e-02 s refinement level = 6/6; total grid cells = 225 model-time elapsed = 3.4993e+02 s; dt = 9.5490e-03 s wall-time elapsed = 1.1177e+01 s; ~ wall-time remaining = 4.7933e+00 s wall-time/1000 steps = 2.5003e-01 s; wall-time/second = 3.1940e-02 s refinement level = 6/6; total grid cells = 208 model-time elapsed = 3.5927e+02 s; dt = 8.5863e-03 s wall-time elapsed = 1.1433e+01 s; ~ wall-time remaining = 4.4782e+00 s wall-time/1000 steps = 2.5601e-01 s; wall-time/second = 3.1822e-02 s refinement level = 6/6; total grid cells = 211 model-time elapsed = 3.6865e+02 s; dt = 9.2120e-03 s wall-time elapsed = 1.1686e+01 s; ~ wall-time remaining = 4.1640e+00 s wall-time/1000 steps = 2.5371e-01 s; wall-time/second = 3.1701e-02 s refinement level = 6/6; total grid cells = 209 model-time elapsed = 3.7798e+02 s; dt = 9.2230e-03 s wall-time elapsed = 1.1940e+01 s; ~ wall-time remaining = 3.8545e+00 s wall-time/1000 steps = 2.5314e-01 s; wall-time/second = 3.1588e-02 s refinement level = 6/6; total grid cells = 208 model-time elapsed = 3.8113e+02 s; dt = 3.0907e-03 s wall-time elapsed = 1.2207e+01 s; ~ wall-time remaining = 3.8073e+00 s wall-time/1000 steps = 2.6751e-01 s; wall-time/second = 3.2029e-02 s refinement level = 6/6; total grid cells = 222 model-time elapsed = 3.9012e+02 s; dt = 8.5546e-03 s wall-time elapsed = 1.2462e+01 s; ~ wall-time remaining = 3.5101e+00 s wall-time/1000 steps = 2.5499e-01 s; wall-time/second = 3.1944e-02 s refinement level = 6/6; total grid cells = 211 model-time elapsed = 3.9954e+02 s; dt = 9.2698e-03 s wall-time elapsed = 1.2703e+01 s; ~ wall-time remaining = 3.1940e+00 s wall-time/1000 steps = 2.4093e-01 s; wall-time/second = 3.1794e-02 s refinement level = 6/6; total grid cells = 201 model-time elapsed = 4.0739e+02 s; dt = 8.0274e-03 s wall-time elapsed = 1.2962e+01 s; ~ wall-time remaining = 2.9467e+00 s wall-time/1000 steps = 2.5931e-01 s; wall-time/second = 3.1818e-02 s refinement level = 6/6; total grid cells = 212 model-time elapsed = 4.1686e+02 s; dt = 9.3299e-03 s wall-time elapsed = 1.3205e+01 s; ~ wall-time remaining = 2.6335e+00 s wall-time/1000 steps = 2.4223e-01 s; wall-time/second = 3.1676e-02 s refinement level = 6/6; total grid cells = 198 model-time elapsed = 4.2373e+02 s; dt = 6.4363e-03 s wall-time elapsed = 1.3475e+01 s; ~ wall-time remaining = 2.4255e+00 s wall-time/1000 steps = 2.7019e-01 s; wall-time/second = 3.1801e-02 s refinement level = 6/6; total grid cells = 212 model-time elapsed = 4.3321e+02 s; dt = 9.6550e-03 s wall-time elapsed = 1.3730e+01 s; ~ wall-time remaining = 2.1167e+00 s wall-time/1000 steps = 2.5484e-01 s; wall-time/second = 3.1693e-02 s refinement level = 6/6; total grid cells = 195 model-time elapsed = 4.4269e+02 s; dt = 9.6101e-03 s wall-time elapsed = 1.4004e+01 s; ~ wall-time remaining = 1.8129e+00 s wall-time/1000 steps = 2.7390e-01 s; wall-time/second = 3.1633e-02 s refinement level = 6/6; total grid cells = 204 model-time elapsed = 4.5212e+02 s; dt = 9.5712e-03 s wall-time elapsed = 1.4254e+01 s; ~ wall-time remaining = 1.5094e+00 s wall-time/1000 steps = 2.5073e-01 s; wall-time/second = 3.1528e-02 s refinement level = 6/6; total grid cells = 199 model-time elapsed = 4.5653e+02 s; dt = 4.7959e-03 s wall-time elapsed = 1.4516e+01 s; ~ wall-time remaining = 1.3822e+00 s wall-time/1000 steps = 2.6202e-01 s; wall-time/second = 3.1797e-02 s refinement level = 6/6; total grid cells = 220 model-time elapsed = 4.6537e+02 s; dt = 7.2209e-03 s wall-time elapsed = 1.4756e+01 s; ~ wall-time remaining = 1.0980e+00 s wall-time/1000 steps = 2.3953e-01 s; wall-time/second = 3.1708e-02 s refinement level = 6/6; total grid cells = 197 model-time elapsed = 4.7470e+02 s; dt = 9.4958e-03 s wall-time elapsed = 1.5016e+01 s; ~ wall-time remaining = 8.0047e-01 s wall-time/1000 steps = 2.6007e-01 s; wall-time/second = 3.1633e-02 s refinement level = 6/6; total grid cells = 207 model-time elapsed = 4.8396e+02 s; dt = 9.2760e-03 s wall-time elapsed = 1.5272e+01 s; ~ wall-time remaining = 5.0628e-01 s wall-time/1000 steps = 2.5577e-01 s; wall-time/second = 3.1556e-02 s refinement level = 6/6; total grid cells = 210 model-time elapsed = 4.9343e+02 s; dt = 9.3480e-03 s wall-time elapsed = 1.5509e+01 s; ~ wall-time remaining = 2.0647e-01 s wall-time/1000 steps = 2.3725e-01 s; wall-time/second = 3.1431e-02 s refinement level = 6/6; total grid cells = 195 Done! [pydrad.configure.util] .. GENERATED FROM PYTHON SOURCE LINES 79-81 To parse the results of a simulation, we create a `~pydard.parse.Strand` object which holds information about the entire simulation. .. GENERATED FROM PYTHON SOURCE LINES 81-84 .. code-block:: Python s = Strand(hydrad_results) print(s) .. rst-class:: sphx-glr-script-out .. code-block:: none WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] HYDrodynamics and RADiation (HYDRAD) Code ----------------------------------------- Results path: /tmp/tmp9ux_xeta/steady-run Time interval: [0.0 s, 500.001 s] Number of profiles: 51 Loop length: 50.000 Mm .. GENERATED FROM PYTHON SOURCE LINES 85-87 We can get basic information about the simulation such as the time and loop length .. GENERATED FROM PYTHON SOURCE LINES 87-90 .. code-block:: Python print(s.time) print(s.loop_length) .. rst-class:: sphx-glr-script-out .. code-block:: none [ 0. 10.0003 20.0006 30.0009 40.0044 50.0083 60.005 70.0082 80.0029 90.008 100.002 110.008 120.003 130.005 140.001 150.008 160.008 170.005 180.003 190.008 200.003 210. 220.007 230.005 240.001 250.003 260.001 270.008 280.006 290.001 300.007 310.005 320.008 330.004 340.002 350.003 360.004 370.002 380.001 390.008 400.005 410.007 420.006 430.002 440.002 450.004 460.009 470.007 480.004 490.002 500.001 ] s WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] 5000000000.0 cm .. GENERATED FROM PYTHON SOURCE LINES 91-94 Indexing the `~pydrad.parse.Strand` object, we get back a `~pydrad.parse.Profile` object which holds information about a single snapshot of the simulation. .. GENERATED FROM PYTHON SOURCE LINES 94-97 .. code-block:: Python p = s[0] print(p) .. rst-class:: sphx-glr-script-out .. code-block:: none WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] HYDRAD Timestep Profile ----------------------- Filename: /tmp/tmp9ux_xeta/steady-run/Results/profile0.amr Time: 0.0 s Timestep #: 0 .. GENERATED FROM PYTHON SOURCE LINES 98-105 The `~pydrad.parse.Profile` object also holds the thermodynamic quantities as a function of spatial coordinate at this particular timestep. Note that the quantity at each time step is stored as a separate 1D array as the spatial grid from one time step to the next need not be the same due to the use of the adaptively refined grid. Note that each profile is a `~astropy.units.Quantity` and can be easily converted to any compatible unit. .. GENERATED FROM PYTHON SOURCE LINES 105-109 .. code-block:: Python print(p.electron_temperature) print(p.hydrogen_density) print(p.velocity) .. rst-class:: sphx-glr-script-out .. code-block:: none [ 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20798.6104 19213.3114 16440.7517 16556.2916 17438.2987 19170.8913 21267.7631 23263.7091 25855.9661 29890.9259 36463.4647 48845.2523 79874.1744 143781.469 180118.62 206425.8 236101.268 267714.727 303543.35 341825.871 385390.725 432009.889 485124.497 542009.211 607042.572 676869.65 756598.148 841786.338 910176.801 967717.34 1017516.85 1061437.44 1100695.86 1136137.09 1168374.93 1197871.1 1224982.73 1249992.32 1273127.49 1294574.58 1314488.09 1332997.66 1350212.95 1366227.74 1381122.67 1394967.52 1407822.95 1419742.02 1430770.94 1440950.5 1450316.9 1458901.95 1466733.46 1473835.92 1480230.83 1485936.97 1490970.67 1495346.01 1499074.98 1502167.6 1504632.09 1506474.91 1507700.83 1508310.45 1508306.1 1507700.98 1506475.15 1504632.44 1502168.05 1499075.52 1495346.66 1490971.42 1485937.83 1480231.79 1473836.99 1466734.64 1458903.24 1450318.31 1440952.03 1430772.46 1419743.51 1407824.45 1394969.04 1381124.24 1366229.32 1350214.55 1332999.28 1314489.91 1294576.5 1273129.5 1249994.4 1224984.9 1197873.35 1168377.29 1136139.63 1100698.66 1061440.54 1017520.29 967721.312 910181.426 841791.994 756605.419 676879.019 607054.645 542024.609 485144.328 432035.478 385423.697 341868.265 303597.995 267785.062 236192.295 206543.39 180271.102 144010.059 80338.6471 48992.318 36529.7638 29915.7872 25881.2589 22147.3636 19226.0896 16976.5598 16433.9347 19211.6163 20800.475 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. 20000. ] K [1.79790804e+13 1.57162717e+13 1.37389400e+13 1.20111886e+13 1.05015025e+13 9.18233680e+12 8.02961910e+12 7.02231377e+12 6.14204058e+12 5.37274084e+12 4.70038519e+12 4.11271798e+12 3.59903359e+12 3.14998090e+12 2.75739216e+12 2.41413354e+12 2.11397432e+12 1.85147267e+12 1.62187581e+12 1.42103272e+12 1.24531791e+12 1.09156485e+12 9.57007779e+11 8.39230902e+11 7.36124010e+11 6.45843730e+11 5.66779694e+11 4.97524985e+11 4.36850348e+11 3.83681658e+11 3.37080266e+11 2.96225823e+11 2.60401301e+11 2.28979905e+11 2.01413650e+11 1.77223395e+11 1.55990132e+11 1.37347388e+11 1.20064836e+11 1.21884349e+11 1.35945915e+11 1.31751589e+11 1.23095759e+11 1.10199129e+11 9.81626547e+10 8.90392578e+10 7.94861081e+10 6.82314258e+10 5.55161363e+10 4.11478222e+10 2.49951898e+10 1.38660042e+10 1.10579366e+10 9.64084088e+09 8.42016448e+09 7.41658492e+09 6.53044933e+09 5.78778615e+09 5.12033370e+09 4.55378229e+09 4.03873566e+09 3.59731940e+09 3.19127336e+09 2.84007253e+09 2.51501772e+09 2.23324745e+09 2.04304830e+09 1.90244084e+09 1.79258904e+09 1.70351338e+09 1.62933085e+09 1.56630315e+09 1.51191838e+09 1.46441400e+09 1.42250960e+09 1.38524855e+09 1.35189901e+09 1.32189006e+09 1.29476861e+09 1.27016986e+09 1.24779651e+09 1.22740336e+09 1.20878632e+09 1.19177417e+09 1.17622219e+09 1.16200722e+09 1.14902425e+09 1.13718295e+09 1.12640518e+09 1.11662351e+09 1.10777982e+09 1.09982380e+09 1.09271198e+09 1.08640686e+09 1.08087625e+09 1.07609272e+09 1.07203312e+09 1.06867823e+09 1.06601245e+09 1.06402357e+09 1.06270258e+09 1.06204632e+09 1.06205103e+09 1.06270247e+09 1.06402340e+09 1.06601221e+09 1.06867792e+09 1.07203273e+09 1.07609226e+09 1.08087571e+09 1.08640624e+09 1.09271128e+09 1.09982301e+09 1.10777894e+09 1.11662255e+09 1.12640413e+09 1.13718180e+09 1.14902312e+09 1.16200612e+09 1.17622109e+09 1.19177307e+09 1.20878516e+09 1.22740218e+09 1.24779531e+09 1.27016862e+09 1.29476711e+09 1.32188841e+09 1.35189723e+09 1.38524660e+09 1.42250749e+09 1.46441166e+09 1.51191579e+09 1.56630013e+09 1.62932720e+09 1.70350891e+09 1.79258351e+09 1.90243356e+09 2.04303844e+09 2.23323291e+09 2.51499392e+09 2.84003337e+09 3.19120971e+09 3.59721653e+09 4.03856919e+09 4.55351017e+09 5.11989191e+09 5.78706260e+09 6.52926540e+09 7.41462490e+09 8.41690227e+09 9.63532791e+09 1.10485494e+10 1.38439363e+10 2.48504665e+10 4.10241755e+10 5.54154394e+10 6.81746940e+10 7.94093741e+10 9.38936435e+10 1.09887654e+11 1.27468944e+11 1.36004604e+11 1.21896682e+11 1.20055404e+11 1.37349035e+11 1.55992002e+11 1.77225520e+11 2.01416065e+11 2.28982651e+11 2.60404424e+11 2.96229376e+11 3.37084309e+11 3.83686260e+11 4.36855588e+11 4.97530954e+11 5.66786493e+11 6.45851479e+11 7.36132842e+11 8.39240972e+11 9.57019262e+11 1.09157795e+12 1.24533285e+12 1.42104977e+12 1.62189528e+12 1.85149490e+12 2.11399969e+12 2.41416252e+12 2.75742527e+12 3.15001872e+12 3.59907681e+12 4.11276736e+12 4.70044163e+12 5.37280536e+12 6.14211434e+12 7.02239811e+12 8.02971554e+12 9.18244709e+12 1.05016286e+13 1.20113329e+13 1.37391051e+13 1.57164605e+13 1.79792642e+13] 1 / cm3 [0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.] cm / s .. GENERATED FROM PYTHON SOURCE LINES 110-112 The `~pydrad.parse.Strand` object also holds an additional `~pydrad.parse.Profile` object for the initial conditions, .. GENERATED FROM PYTHON SOURCE LINES 112-114 .. code-block:: Python print(s.initial_conditions) .. rst-class:: sphx-glr-script-out .. code-block:: none HYDRAD Timestep Profile ----------------------- Filename: /tmp/tmp9ux_xeta/steady-run/Initial_Conditions/profiles/initial.amr Time: 0.0 s Timestep #: 0 .. GENERATED FROM PYTHON SOURCE LINES 115-120 The `~pydrad.parse.Strand` object can also be indexed in more complex ways in the same manner as a `list` or array to get the simulation only over a particular time range or at a particular time cadence. As an example, we can grab only the first 5 time steps or every other time step. .. GENERATED FROM PYTHON SOURCE LINES 120-123 .. code-block:: Python print(s[:5]) print(s[::2]) .. rst-class:: sphx-glr-script-out .. code-block:: none WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] HYDrodynamics and RADiation (HYDRAD) Code ----------------------------------------- Results path: /tmp/tmp9ux_xeta/steady-run Time interval: [0.0 s, 40.0044 s] Number of profiles: 5 Loop length: 50.000 Mm WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] HYDrodynamics and RADiation (HYDRAD) Code ----------------------------------------- Results path: /tmp/tmp9ux_xeta/steady-run Time interval: [0.0 s, 500.001 s] Number of profiles: 26 Loop length: 50.000 Mm .. GENERATED FROM PYTHON SOURCE LINES 124-128 The simplest way to visualize HYDRAD output is to look at a single time step as a function of field-aligned coordinate. The `~pydrad.parse.Profile` object provides a simple quicklook method for this, .. GENERATED FROM PYTHON SOURCE LINES 128-130 .. code-block:: Python p.peek() .. image-sg:: /generated/gallery/images/sphx_glr_parse_simulation_001.png :alt: parse simulation :srcset: /generated/gallery/images/sphx_glr_parse_simulation_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 131-136 Similarly, we can call this method on a `~pydrad.parse.Strand` to overplot every profile at each time step, where the time step is mapped to the colormap. For additional information about what arguments can be passed in here, see the `~pydrad.visualize.plot_profile` documentation. .. GENERATED FROM PYTHON SOURCE LINES 136-138 .. code-block:: Python s.peek() .. image-sg:: /generated/gallery/images/sphx_glr_parse_simulation_002.png :alt: parse simulation :srcset: /generated/gallery/images/sphx_glr_parse_simulation_002.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] .. GENERATED FROM PYTHON SOURCE LINES 139-145 Often we want to visualize the whole loop as a function of time as a "time-distance" plot. The `~pydrad.parse.Strand` object provides a convenience method for this visualization as well. Because of the differences in spatial grids between time steps, the quantities are reinterpolated onto a uniform grid of specified resolution, in this case 0.5 Mm, before plotting. .. GENERATED FROM PYTHON SOURCE LINES 145-147 .. code-block:: Python s.peek_time_distance('electron_temperature', 0.5*u.Mm) .. image-sg:: /generated/gallery/images/sphx_glr_parse_simulation_003.png :alt: parse simulation :srcset: /generated/gallery/images/sphx_glr_parse_simulation_003.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] .. GENERATED FROM PYTHON SOURCE LINES 148-150 This quicklook function is flexible enough to visualize multiple quantities on different colormaps .. GENERATED FROM PYTHON SOURCE LINES 150-160 .. code-block:: Python s.peek_time_distance( ['electron_temperature', 'electron_density', 'velocity'], 0.5*u.Mm, cmap={'velocity': 'RdBu_r'}, labels={'electron_temperature': r'$T_e$', 'electron_density': r'$n_e$'}, norm={'electron_density': ImageNormalize(vmin=1e8, vmax=1e12, stretch=LogStretch())}, time_unit='h', space_unit='Mm', ) .. image-sg:: /generated/gallery/images/sphx_glr_parse_simulation_004.png :alt: parse simulation :srcset: /generated/gallery/images/sphx_glr_parse_simulation_004.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile0.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile1.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile2.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile3.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile4.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile5.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile6.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile7.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile8.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile9.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile10.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile11.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile12.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile13.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile14.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile15.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile16.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile17.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile18.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile19.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile20.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile21.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile22.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile23.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile24.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile25.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile26.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile27.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile28.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile29.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile30.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile31.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile32.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile33.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile34.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile35.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile36.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile37.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile38.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile39.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile40.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile41.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile42.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile43.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile44.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile45.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile46.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile47.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile48.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile49.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.ine not found. Skipping parsing of .ine files. Set read_ine=False to suppress this warning. [pydrad.parse.parse] WARNING: /tmp/tmp9ux_xeta/steady-run/Results/profile50.Hstate not found. Skipping parsing of .hstate files. Set read_hstate=False to suppress this warning. [pydrad.parse.parse] .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 33.193 seconds) .. _sphx_glr_download_generated_gallery_parse_simulation.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: parse_simulation.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: parse_simulation.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: parse_simulation.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_