Hi, everyone. I want to know if there is a way to export the efficiency map result (speed, torque, efficiency) into an outside file so that I can do some analyze. I can only find the API to export a figure, but what I need is the data result, not a picture. Here is my code used, and can only export a figure.
import ansys.motorcad.core as pymotorcad
if __name__ == "__main__":
mcad = pymotorcad.MotorCAD()
mcad.load_from_file(R"case.mot")
mcad.set_motorlab_context()
mcad.clear_model_build_lab()
mcad.build_model_lab()
mcad.set_variable("EmagneticCalcType_Lab", 1)
mcad.calculate_magnetic_lab()
mcad.export_figure_lab("Electromagnetic", "Efficiency", "EfficiencyMap.png")
Does the pymortorcad support export data result of lab results?