create_network_object#
- Icepak.create_network_object(name=None, props=None, create=False)#
Create a thermal network.
- Parameters:
- name
str,optional Name of the network object. The default is
None, in which case the name is generated autotmatically.- props
dict,optional Dictionary with information required by the
oModule.AssignNetworkBoundaryobject. The default isNone.- createbool,
optional Whether to create immediately the network inside AEDT. The default is
False, which means the network can be modified from PyAEDT functions and the network created only afterwards.
- name
- Returns:
ansys.aedt.core.modules.boundary.icepak_boundary.NetworkObjectBoundary network object when successful or
Nonewhen failed.
References
>>> oModule.AssignNetworkBoundary
Examples
>>> from ansys.aedt.core import Icepak >>> app = Icepak() >>> network = app.create_network_object()