WLM- Wire load Model

在没有物理信息的时候,使用Wire load Model(WLM)模型可以算到net的电容,电阻等数据。所以在DC中会使用WLM模型。

在没有物理信息的时候,使用Wire load Model(WLM)模型可以算到net的电容,电阻等数据。所以在DC中会使用WLM模型。

通常WLM模型会给出下面的一些参数:

单位长度电容
单位长度电阻
单位长度面积
外推斜率

模型例子:

wire_load("90×90") {
    capacitance : 2.0 ; /* C per unit-length */
    resistance :100.0 ; /* R per unit-length */
    area : 0.5 ; /* net-area per unit-length */
    slope : 1.5 ; /* extrapolation slope */
    fanout_length(1,1) ; /* fanout_length pairs */
    fanout_length(2,2.2);
    fanout_length(3,3.3);
    fanout_length(4,4.4);
}

根据fanout的数目可以得到net的长度,再算出相应的电容,电阻,面积等参数。

Leave a Reply

Your email address will not be published. Required fields are marked *