I need to be able to extract the VOLT DOF from SOLID226 with Keyopt 1 = 101
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:
https://ansyshelp.ansys.com/account/secured?returnurl=/Views/Secured/corp/v232/en/ans_cou/Hlp_G_COU3_piezores.html
Mike