Added unit r and c values with m2 minwidth incorporated to match CACTI params

This commit is contained in:
Hunter Nichols
2021-08-01 00:23:59 -07:00
parent 54cbef1aff
commit 1b89533d7b
3 changed files with 9 additions and 7 deletions
+2 -1
View File
@@ -17,7 +17,8 @@ class wire_spice_model():
def cal_wire_c(self, wire_length, wire_width):
from tech import spice
total_c = spice["wire_unit_c"] * wire_length * wire_width
# Convert the F/um^2 to fF/um^2 then multiple by width and length
total_c = (spice["wire_unit_c"]*1e12) * wire_length * wire_width
wire_c = total_c / self.lump_num
return wire_c