SimSettings#
- class pyedb.workflows.utilities.siwave_log_parser.SimSettings#
Simulation settings and configuration.
- Attributes:
- design_type
str Type of design being simulated.
- allow_off_corebool
Whether off-core solving is enabled.
- manual_settingsbool
Whether manual settings are being used.
- two_levelbool
Whether two-level solving is enabled.
- distribution_types
listofstr Distribution types configured for the simulation.
- machines
listofstr Machine specifications (RAM, cores, etc.).
- design_type
Examples
>>> settings = SimSettings( ... design_type="SIwave", ... allow_off_core=True, ... manual_settings=False, ... two_level=True, ... distribution_types=["Local"], ... machines=["localhost RAM: 32GB"], ... ) >>> settings.allow_off_core True
Overview#
Import detail#
from pyedb.workflows.utilities.siwave_log_parser import SimSettings