Nets¶
-
class
ipkiss3.pcell.netlist.net.
Net
(**kwargs)¶ Base class for objects describing connectivity: optical link, electrical net, …
Parameters: domain: __Domain__, required
terms: list and List with type restriction, allowed types: <class ‘ipkiss3.pcell.netlist.term.Term’>, required
name: optional
-
get_inst_terms
()¶ retrieves the InstanceTerms connecting to this net
Returns: list of InstanceTerms
-
get_terms
()¶ retrieves the terms which are not InstanceTerms, which connect to tis net
Returns: list of Terms
-
is_internal
()¶ checks if this net is internal: if it only connects instances within a certain cell and does not connect to terms of the cell or to global terms
Returns: bool: True if this is an internal net, False if this is not an internal net
-