create_network_object#

Icepak.create_network_object(name=None, props=None, create=False)[source]#

Create a thermal network.

Parameters:
namestr, optional

Name of the network object. The default is None, in which case the name is generated autotmatically.

propsdict, optional

Dictionary with information required by the oModule.AssignNetworkBoundary object. The default is None.

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.

Returns:
pyaedt.modules.Boundary.BoundaryNetwork

Boundary network object when successful or None when failed.

References

>>> oModule.AssignNetworkBoundary

Examples

>>> from pyaedt import Icepak
>>> app = Icepak()
>>> network = app.create_network_object()