Field Data Configuration

Set up the field data configuration table to be used with the measurement method to map to the correct near field or far field data (available under Stored data in the .pfs file).

A fieldDataConfiguration table is used with a FarFields or NearFields attribute. It is only required to specify the label of the stored field and the index of the item in the table maps to the port number in the multiport configuration.
fieldDataConfiguration = {}
-- Specify the Far field data
-- Note the label should match the stored data in the .pfs file.
fieldDataConfiguration["FarFields"] = {}
fieldDataConfiguration["FarFields"][1].Label = "FarField_1"
fieldDataConfiguration["FarFields"][2].Label = "FarField_2"
fieldDataConfiguration["FarFields"][3].Label = "FarField_3"
fieldDataConfiguration["FarFields"][4].Label = "FarField_4"

-- Specify the Near field data
-- Note the label should match the stored data in the .pfs file.
fieldDataConfiguration["NearFields"] = {}
fieldDataConfiguration["NearFields"][1].Label = "NearField_1"
fieldDataConfiguration["NearFields"][2].Label = "NearField_2"
fieldDataConfiguration["NearFields"][3].Label = "NearField_3"
fieldDataConfiguration["NearFields"][4].Label = "NearField_4"