From 9aa2c61ddbba4ce69f69bd667fb7d95c0e2af50c Mon Sep 17 00:00:00 2001 From: Adam Cheng <52572642+adamchengtkc@users.noreply.github.com> Date: Fri, 5 Jul 2024 12:49:10 +0200 Subject: [PATCH] Update resqpy_helpers.py --- warmth/resqpy_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/warmth/resqpy_helpers.py b/warmth/resqpy_helpers.py index c32eb6a..f39f5ca 100644 --- a/warmth/resqpy_helpers.py +++ b/warmth/resqpy_helpers.py @@ -53,7 +53,7 @@ def read_mesh_resqml(epcfilename, meshTitle = 'tetramesh'): assert layerID_prop.indexable_element() == 'cells' # print( layerID_prop.array_ref().shape, layerID_prop.array_ref()[0:10] ) # .array_ref() exposes the values as numpy array - titles=['Temperature', 'Age', 'LayerID', 'Porosity_initial', 'Porosity_decay', 'Density_solid', 'insulance_thermal', 'Radiogenic_heat_production'] + titles=['Temperature', 'Age', 'LayerID', 'Porosity_initial', 'Porosity_decay', 'Density_solid', 'thermal_conductivity', 'Radiogenic_heat_production'] for title in titles: prop_uuid = model.uuid(title = title) prop = rqp.Property(model, uuid = prop_uuid)