All Surface Results
Posted: Tue Dec 01, 2020 6:27 pm
I'm using the get_all_surface _results() method of ResultsReader to extract internal temperature results as showed below:
surfaces = body.get_surfaces()
for surface in surfaces:
prop = surface.get_properties()
areas = surface.get_areas()
aps_handle = prop['aps_handle']
int_surf_temp = rr_file.get_all_surface_results(id, aps_handle, 'Int surface temperature')
I have noticed however it doesn't work on internal partitions, nor fully glazed surfaces. Why? How Can I fix it?
Thanks
surfaces = body.get_surfaces()
for surface in surfaces:
prop = surface.get_properties()
areas = surface.get_areas()
aps_handle = prop['aps_handle']
int_surf_temp = rr_file.get_all_surface_results(id, aps_handle, 'Int surface temperature')
I have noticed however it doesn't work on internal partitions, nor fully glazed surfaces. Why? How Can I fix it?
Thanks