Can we get VOLT dof results using DPF
Jim Kosloski
Member, Employee Posts: 28
✭✭✭✭
Answers
-
Hi @Jim Kosloski
Try:result_file = r"file.rst" my_data_sources = dpf.DataSources() my_data_sources.set_result_file_path(result_file) my_model = dpf.Model(my_data_sources) electric_potential = my_model.results.electric_potential.on_first_time_freq() last_time_volt = electric_potential.eval() my_model.metadata.meshed_region.plot(last_time_volt)
I changed the 2D example from here to 3D with Solid226 and got the result:
Mike
0