ControlFileSetup#
- class pyedb.grpc.database.control_file.ControlFileSetup(name: str)#
Represents a simulation setup.
- Parameters:
- name
str Setup name.
- name
Overview#
Add a frequency sweep. |
|
Add a mesh operation. |
Import detail#
from pyedb.grpc.database.control_file import ControlFileSetup
Attribute detail#
- ControlFileSetup.mesh_operations: List[ControlFileMeshOp] = []#
- ControlFileSetup.sweeps: List[ControlFileSweep] = []#
Method detail#
- ControlFileSetup.add_sweep(name: str, start: str, stop: str, step: str, sweep_type: str = 'Interpolating', step_type: str = 'LinearStep', use_q3d: bool = True) ControlFileSweep#
Add a frequency sweep.
- Parameters:
- name
str Sweep name.
- start
str Start frequency.
- stop
str Stop frequency.
- step
str Frequency step/count.
- sweep_type
str,optional Sweep type (“Discrete” or “Interpolating”). Default is “Interpolating”.
- step_type
str,optional Step type (“LinearStep”, “DecadeCount”, or “LinearCount”). Default is “LinearStep”.
- use_q3dbool,
optional Whether to use Q3D for DC point. Default is
True.
- name
- Returns:
ControlFileSweepCreated sweep object.