Project

General

Profile

Delay calculation and SI » History » Version 1

jun chen, 02/13/2025 12:11 AM

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