Models
Models for the PreFab library.
Fab
Bases: BaseModel
Represents a fabrication process in the PreFab model library.
Attributes:
Name | Type | Description |
---|---|---|
foundry |
str
|
The name of the foundry where the fabrication process takes place. |
process |
str
|
The specific process used in the fabrication. |
material |
str
|
The material used in the fabrication process. |
technology |
str
|
The technology used in the fabrication process. |
thickness |
int
|
The thickness of the material used, measured in nanometers. |
has_sidewall |
bool
|
Indicates whether the fabrication has angled sidewalls. |
Source code in prefab/models.py
Model
Bases: BaseModel
Represents a model of a fabrication process including versioning and dataset detail.
Attributes:
Name | Type | Description |
---|---|---|
fab |
Fab
|
An instance of the Fab class representing the fabrication details. |
version |
str
|
The version identifier of the model. |
version_date |
date
|
The release date of this version of the model. |
dataset |
str
|
The identifier for the dataset used in this model. |
dataset_date |
date
|
The date when the dataset was last updated or released. |
tag |
str
|
An optional tag for additional categorization or notes. |
Methods:
Name | Description |
---|---|
to_json |
Serializes the model instance to a JSON formatted string. |