Cell

class keysight.ads.de.Cell
__init__(library: Library, cell_name: str) None

__init__ is deprecated, and will be removed in the 2025 Update 2 release. Use Cell.get(library, cell_name) or library.cell(cell_name).

property cell_name: str
static create(library: Library, cell_name: str) Cell
create_view(view_name: str, view_type_name: str) View
delete_design_variables() None
delete_dm_data() None
delete_view(view_name: str) None
dm_data(mode: str) DMData
static get(library: Library, cell_name: str) Cell
get_view_if_exists(view_name: str) View | None
property has_dm_data: bool
property lib_name: str
property library: Library
property model_def: ModelDefBase | None
module_name() str

Return the full name of the Python module for this Cell.

Will raise an exception if this Cell does not have a Python module.

property name: str
property path: Path
read_design_variables() list[tuple[str, str]]
view(view_name: str) View
view_exists(view_name: str) bool
property views: NamedItemCollectionAbc[View]

The collection of views in this cell.

A view may be accessed by using the [] operator, indexed by the view name.

write_design_variables(variables: list[tuple[str, str]]) None
On this page