update#

SubstrateDataBlock.update() bool#

Push the current state of this substrate data block to AEDT.

Use this method to apply changes after setting one or more properties with auto_update set to False, or to force a refresh at any time.

Returns:
bool

True when successful.

References

>>> oModule.EditSubstrateDataBlock

Examples

Batch update several parameters at once:

>>> sub = cir.substrate.all["MySub"]
>>> sub.auto_update = False
>>> sub.metal_material = "aluminum"
>>> sub.metal_thickness = "1mil"
>>> sub.roughness = "2pm"
>>> sub.auto_update = True
>>> sub.update()