@User if you set a transistor, say
nfet_1v8
with
W=1000
,
L=0.15
and
nf=100
you are creating a transistor with 100 fingers, 10um long each, for a total W=1000, and aspect ratio is 1000/0.15 so >> 1000.
There is a limit in the sky130 models for maximum width, so that's the reason nf is used.
Xschem_sky130 provides also a set of transistors (pfet_01v8_lvt`_nf`.sym, pfet_01v8_lvt`_nf`.sym, nfet_01v8`_nf`.sym, and so on , see the
_nf
suffix), where the W parameter is the single finger width, so if you specify W=10 and nf=100 the total width will be 10 * 100 = 1000. Different users have different preferences, use the transistor type that you like more.
Regarding the '`mult`' parameter this just specifies the number of parallel devices you want. Setting
mult=10
is equivalent to placing 10 transistors in parallel. Simulation will be faster since ngspice needs to evaluate only one transistor instance and multiply current / capacitances / charges by
mult
.