Search found 1 match

by RobertoCoraci
Tue Dec 01, 2020 6:27 pm
Forum: VE Python API
Topic: All Surface Results
Replies: 1
Views: 62268

All Surface Results

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 ...