create_network_object#
- Icepak.create_network_object(name=None, props=None, create=False)[source]#
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.AssignNetworkBoundary
object. 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.BoundaryNetwork
Boundary network object when successful or
None
when failed.
References
>>> oModule.AssignNetworkBoundary
Examples
>>> from ansys.aedt.core import Icepak >>> app = Icepak() >>> network = app.create_network_object()