other_components
Component representing miscellaneous hardware parts with fixed FIT rates (LPDDR4).
OtherComponents
Bases: Base
Component representing miscellaneous hardware parts that contribute a fixed FIT rate.
This module encapsulates all non-DRAM components into a single source injection block to simplify the top-level model.
Source code in src/ecc_analyzer/models/lpddr4/other_components.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | |
__init__(name)
Initializes the component and sets the constant source FIT rate.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The descriptive name of the component. |
required |
Source code in src/ecc_analyzer/models/lpddr4/other_components.py
16 17 18 19 20 21 22 23 | |
configure_blocks()
Configures the root block to inject the FIT rate.
Uses a SumBlock as the base container for the fault source (BasicEvent). The fault is injected into the residual path (is_spfm=True).
Source code in src/ecc_analyzer/models/lpddr4/other_components.py
25 26 27 28 29 30 31 | |