Re: zero wire load model
Hi Jitendra,
>>please tell me from where we get this zwlm and what are all the information it contains?
Wireload model is something which calculates the net delay based on the fanout of a particular gate. Basically its a statistical based model which gives the prelayout estimation. Wire load model information will be in the liberty files(what we call dotlibs) provided by foundary.
library(myWLM) {
/* zero wire-load */
wire_load("zero") {
resistance : 0;
capacitance : 0;
area : 1;
slope : 1;
fanout_length(1,2000);
}
}
library(2K_6LM) {
wire_load("2K_6LM") {
resistance : 1.2;
capacitance : 0.2;
area : 1;
slope : 1;
fanout_length(1,2000);
fanout_length(2,2500);
fanout_length(3,3000);
fanout_length(4,4000);
fanout_length(5,5000);
fanout_length(6,6000);
fanout_length(7,7000);
fanout_length(6,8000);
}
}
Regards,