Cable file#

The cable configuration file allows you to create a cable geometry with shielding from a JSON file.

This file can be created using the following command:

from pyaedt import Hfss
from pyaedt.modules.CableModeling import Cable
from pyaedt.generic.DataHandlers import json_to_dict
hfss = Hfss()
cable = Cable(hfss,"set_cable_properties.json"))
cable.create_cable()
hfss.release_desktop()

File structure example:

Cable example

For a practical demonstration, see the Cable API example.