parse_array_info_from_csv#

ComponentArray.parse_array_info_from_csv(input_file)[source]#

Parse component array information from the CSV file.

Parameters:
input_filestr

Name of the CSV file.

Returns:
dict

Ordered dictionary of the properties of the component array.

Examples

>>> from pyaedt import Hfss
>>> aedtapp = Hfss(projectname="Array.aedt")
>>> array_names = aedtapp.component_array_names[0]
>>> array = aedtapp.component_array[array_names[0]]
>>> array_csv = array.export_array_info()
>>> array_info = array.array_info_parser(array_csv)