Project

General

Profile

Delay calculation and SI » History » Version 2

jun chen, 03/04/2025 12:32 AM

1 1 jun chen
# Delay calculation and SI
2
-----------------------------
3
4
## 新增内容
5
6
### DCSI 概览
7
8
### Driver modeling 梳理
9
10 2 jun chen
----------------------------
11
12 1 jun chen
## 基本概念
13
14
### delay 基本概念, trans, stage, path, gpa/pba
15
16
Static Timing Analysis for Nanometer Design A Pratical Approach.pdf (集成电路静态时序分析与建模前两章)
17
18
### ccsd
19
20
ccs_timing_char_guide_v3.4.pdf
21
22
### ccsn
23
24
ccsn_characterization_guideline_v1.4.pdf
25
26
### liberty
27
28
Liberty_User_Guides_and_Reference_Manual_Suite_Version_2017.06.pdf
29
集成电路静态时序分析与建模第四章
30
31 2 jun chen
----------------------------------------------
32
33 1 jun chen
## 计算方法
34
35
### 常用数值计算方法
36
37
Numerical Analysis-Burden Faires 9th 数值分析.pdf
38
Tming.pdf
39
40
### Effective cap
41
42
Gate_Delay_Estimation_With_Library_Compatible_Current_Source_Models_and_Effective_Capacitance.pdf
43
Modeling thee Effective capacitance for the RC interconnect of CMOS gates.pdf
44
Study on modeling techniques for CMOS gate delay calculation in VLSI timing analysis.pdf
45
46
### Elmore delay and slew
47
48
ic-interconnect-analysis-2002.pdf
49
code: lpRLCTree::CalcElmoreDelay and CalcElmoreDlyNSlew
50
51
### Nodel analysis and MNA
52
53
Circult Simulation.pdf
54
Timing.pdf
55
56
### ROM and PRIMA
57
58
ic-interconnect-analysis-2002.pdf
59
paper: Arnoldi_Silveira.pdf
60
paper: PRIMA.pdf
61
62
### Solve CCSD
63
64
delay calculation.pptx
65
66
### Solve CCB
67
68
delay calculation.pptx
69
70
### convelution and rec-convolution
71
72
ic-interconnect-analysis-2002.pdf
73
code: ccsWaveform.cpp
74
75
### waveform  solve eff trans
76
77
code: GetWARangeIndex and CalcWaveformAnalysisSlew
78 2 jun chen
79
---------------------------------------------------------
80 1 jun chen
81
## 专题介绍
82
83
### SI delay 快速方法
84
85
code: siQF.cpp
86
87
Paper: Improved crosstalk modeling for noise constrained interconnect optimization.pdf
88
static-crosstalknoise-analysis-2004.pdf chapter4
89
90
### SI ccsn 计算方法
91
92
code: siCCS.cpp
93
94
### noise ccsn 计算方法
95
96
code: siNoise.cpp
97
98
### Driver delay flow using NLDM and ccsd table
99
100
code: cdcDrDelay.cpp
101
102
### Wire delay flow using elmore and arnoldi
103
104
code: cdcArnoldi.cpp
105
106
### Basic stage flow (戴维南等效方法)
107
108
code: cdcStageBasic.cpp
109
110
### Advanced stage flow (ccsd + arnoldi)
111
112
code: cdcStageCCS.cpp