Hi, I have issues with extracting the specific values of the Power Balance into Python. I've tried 2 methods so far with both a different error.
simulation_extractor = simulation.Results()
em_sensor_extractor = simulation_extractor["Overall Field"]
inputs = em_sensor_extractor.Outputs["Power Balance"]
inputs.Update()
print(inputs.Data.DataSimpleDataCollection.FieldAxisValue(0))
Gives me this error:
Changing that last line into
print(inputs.Data.DataSimpleDataCollection.FieldValue("Pin"))
Gives another error
Also AttributeSimpleDataCollection instead of DataSimpleDataCollection gives the same errors.
What is the best way to get the radiated power? Thanks