STA之Concepts (1)

  Static Timing Analysis is one of the many techniques available to verify the timing of a digital design. An alternate approach used to verify the timing is the timing simulation which can verify the functionality as well as the timing of the design. The term timing analysis is used to refer to either of these two methods - static timing analysis, or the timing simulation.

1  Propagation delay

   Consider a CMOS inverter cell and its input and output waveforms. The propagation delay of the cell is defined with respect to some measurement points on the switching waveforms.

  

  

  Consider the example inverter cell and the waveforms at its pins shown following. The propagation delays are represented as:

  - Output fall delay (Tf)

  - Output rise delay (Tr)

  

  If we were looking at ideal waveforms, propagation delay would simply be the delay between the two edges.

    

1 # Threshold point of an input falling edge:
2 input_threshold_pct_fall : 50.0;
3 # Threshold point of an input rising edge:
4 input_threshold_pct_rise : 50.0;
5 # Threshold point of an output falling edge:
6 output_threshold_pct_fall : 50.0;
7 # Threshold point of an output rising edge:
8 output_threshold_pct_rise : 50.0;

2  Slew of a Waveform

  A slew rate is defined as a rate of change. In static timing analysis, the rising or falling waveforms are measured in terms of whether the transition is slow or fast. The slew is typically measured in terms of the transition time.

1 # Falling edge thresholds:
2 slew_lower_threshold_pct_fall : 30.0;
3 slew_upper_threshold_pct_fall : 70.0;
4 # Rising edge thresholds:
5 slew_lower_threshold_pct_rise : 30.0;
6 slew_upper_threshold_pct_rise : 70.0;
1 # Falling edge thresholds:
2 slew_lower_threshold_pct_fall : 20.0;
3 slew_upper_threshold_pct_fall : 80.0;
4 # Rising edge thresholds:
5 slew_lower_threshold_pct_rise : 10.0;
6 slew_upper_threshold_pct_rise : 90.0;
时间: 2024-08-25 12:43:38

STA之Concepts (1)的相关文章

STA之Concepts (2)

3 Skew between signals Skew is the difference in timing between two or more signals, maybe data, clock or both. Clock latency is the total time it takes from the clock source to an end point. Clock skew is the difference in arrival times at the end p

Java Object Oriented Programming concepts

Introduction This tutorial will help you to understand about Java OOP'S concepts with examples. Let's discuss about what are the features of Object Oriented Programming. Writing object-oriented programs involves creating classes, creating objects fro

Introduction and Basic concepts

1 Network Edge The device such as computers and mobiles connect to the Internet. So they are referred as end systems(who run the application programs) sitting at the edge of the Internet. And we use host and end system interchangeably, that is host=e

jQuery学习--Code Organization Concepts

jQuery官方文档:  http://learn.jquery.com/code-organization/concepts/ Code Organization Concepts(代码组织概念) 当你不再只是用jQuery为你的网站增添一些简单的功能,转向做一些成熟的客户端应用,那你就需要考虑如何组织你的代码.这章,我们将简要地介绍jQuery应用中几种常用的代码组织模式,探究RequireJS依赖管理以及构建系统. When you move beyond adding simple en

[BZOJ1131][POI2008] Sta 树的深度

Description 给出一个N个点的树,找出一个点来,以这个点为根的树时,所有点的深度之和最大 Input 给出一个数字N,代表有N个点.N<=1000000 下面N-1条边. Output 输出你所找到的点,如果具有多个解,请输出编号最小的那个. Sample Input81 45 64 56 76 82 43 4 Sample Output7 题解: 都说是裸树形DP,其实我做的时候就是把它当成搜索去做了,当然是一个意思.假设当前的根为1,先求出每棵子树的大小,以及所有点的深度之和.考虑

1131: [POI2008]Sta

1131: [POI2008]Sta Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 783  Solved: 235[Submit][Status] Description 给出一个N个点的树,找出一个点来,以这个点为根的树时,所有点的深度之和最大 Input 给出一个数字N,代表有N个点.N<=1000000 下面N-1条边. Output 输出你所找到的点,如果具有多个解,请输出编号最小的那个. Sample Input 8 1 4 5 6

CFNetwork概念(CFNetwork Concepts )

CFNetwork是一个低级别高性能的框架,使你能够精细的控制协议栈.它是BSD套接字的扩展,标准套接字抽象API提供对象来简化任务,例如与FTP和HTTP服务器或解析DNS主机.CFNetwork物理上和理论上都基于BSD套接字. 正如CFNetwork依赖与BSD套接字,有大量的Cocoa类依赖CFNetwork(例如,NSURL).此外,Cocoa类的web工具包用来在窗口显示网页内容.这两个类是高层级并实现大部分的网络协议.一次,软件层的结构如图1-1所示. 图1-1 OS X上CFNe

【转载】STA 4273H Winter 2015 - Lectures

STA4273H Home   Lecture Schedule/Notes Assignments/Project Computing   Ruslan Salakhutdinov Homepage http://www.cs.toronto.edu/~rsalakhu/   STA 4273H Winter 2015 - Lectures Video Archive here. Lecture Schedule Lecture 1 -- Machine Learning:Introducti

iOS Drawing Concepts[iOS 绘画概念]

iOS Drawing Concepts https://developer.apple.com/library/ios/documentation/2DDrawing/Conceptual/DrawingPrintingiOS/GraphicsDrawingOverview/GraphicsDrawingOverview.html High-quality graphics are an important part of your app’s user interface. Providin