Hello,
 I’m trying to export a Far Field that was previously generated by a Far Field Math script.
 The manual has this entry:
 farFieldData = app.Models[1].Configurations[1].FarFields["FarFields"]  farFieldData:ExportData("temp_farFieldExport",pf.Enums.FarFieldsExportTypeEnum.Directivity,51)  
  I was not able to find something similar for the Math Scripts.
 My code: 
 farFieldData = app.MathScripts[1]  farFieldData:ExportData("temp_farFieldExport",pf.Enums.FarFieldsExportTypeEnum.Directivity,51)  
  Looks like the method does not exist.
 I’m getting the error:
 Attempt to call method ‘ExportData’ (a nil value)
  
 Is there a way to export the Far Field?
 Of course I can do it directly from PostFEKO, but I’d like to do it in a script.
 Thanks