Hello,
I am having some difficulty finding answers on this elsewhere online and have not found any helpful forum posts on this either so here I am. I am trying to communicate with the POP with the python ZOSAPI with the program in interactive mode. Currently I have tried this little code snippit to set the surface desired to 2 and pull the irradiance with not much luck. Python more or less yells at me with an error saying “IAS_ object has no attribute ‘EndSurface’ I am not having the best of luck finding a solution to this problem in the help document. Please Help! :)
FYI: See code snippit below
TheAnalyses = TheSystem.Analyses
POP = TheAnalyses.New_Analysis(ZOSAPI.Analysis.AnalysisIDM.PhysicalOpticsPropagation)
POP_set = POP.GetSettings()
POP_set.DataType = ZOSAPI.Analysis.PhysicalOptics.POPDataTypes.Irradiance
POP_set.EndSurface.SetSurfaceNumber(2)
POP.ApplyAndWaitForCompletion()
POP_result = POP.GetResults()
Irr = float(POP_result.DataGrids(1).Values)
Cheers,
Armand