WarningEntry#
- class pyedb.workflows.utilities.siwave_log_parser.WarningEntry#
Single warning message from the simulation log.
- Attributes:
- timestamp
datetime When the warning occurred.
- category
str Warning category:
'SHORT'for electrical shorts or'OTHER'for other warnings.- net1
str First net involved (for SHORT warnings).
- net2
str Second net involved (for SHORT warnings).
- layer
str Layer name where the issue occurred.
- x
float X-coordinate in millimeters.
- y
float Y-coordinate in millimeters.
- message
str Complete warning message text.
- timestamp
Examples
>>> from datetime import datetime >>> warning = WarningEntry( ... timestamp=datetime(2025, 11, 10, 9, 15, 30), ... category="SHORT", ... net1="VCC", ... net2="GND", ... layer="TOP", ... x=12.5, ... y=34.8, ... message="Nets are electrically shorted", ... ) >>> warning.category 'SHORT'
Overview#
Import detail#
from pyedb.workflows.utilities.siwave_log_parser import WarningEntry
Attribute detail#
- WarningEntry.timestamp: datetime.datetime#