Models
Fabrication process model definitions and configurations.
This module automatically discovers and loads all model definitions from Python files in the models/ directory.
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. |
Source code in prefab/models/base.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. |