BatchInfo#
- class pyedb.workflows.utilities.siwave_log_parser.BatchInfo#
Batch simulation run metadata.
- Attributes:
- path
str Full path to the project file.
- started
datetime Simulation start timestamp.
- stopped
datetime Simulation stop timestamp.
- run_by
str Username who executed the simulation.
- temp_dir
str Temporary directory used during simulation.
- project_dir
str Project working directory.
- status
str,optional Simulation completion status such as
'Normal Completion'or'Aborted'. The default is"".
- path
Examples
>>> from datetime import datetime >>> batch = BatchInfo( ... path="C:\project\design.siw", ... started=datetime(2025, 11, 10, 9, 0, 0), ... stopped=datetime(2025, 11, 10, 10, 30, 0), ... run_by="engineer", ... temp_dir="C:\temp", ... project_dir="C:\project", ... status="Normal Completion", ... ) >>> batch.status 'Normal Completion'
Overview#
Import detail#
from pyedb.workflows.utilities.siwave_log_parser import BatchInfo
Attribute detail#
- BatchInfo.started: datetime.datetime#
- BatchInfo.stopped: datetime.datetime#