Simulation of capacitance in Xschem

Ming Sun

Ming Sun / November 07, 2022

6 min read––– views

Cell name: SIM_cap
PDK: Skywater130
Schematic capture: Xschem
Simulator: Ngspice

Schematic

The following components from Skywater130 PDK are used in this simulation:

  • cap_mim_m3_2.sym: mim cap
  • cap_var_lvt.sym: varactor cap
  • nfet_01v8_lvt.sym: 1.8V LVT NMOS

The end goal is to compare the effective capacitance of mim cap, varactor cap and 1.8V LVT NMOS cap with an ideal capacitor.

The completed schematic is as shown in Fig. 1.

Completed schematic
Fig. 1Completed schematic

Theory

For a capacitor, we have:

`I*t = C*V`
(1)

Eq. (1) can be rewritten as:

`C={I*t}/{V}={I}/{deriv(V)}`
(2)

Where,

`deriv(V) = {dV}/dt`
(3)

From Eq. (2)~(3), to simulate the effective capacitance of mim, varator and MOSFET, the idea is that we source (inject) a constant current into its gate. From the simulation, we plot the corresponding gate voltage. Then we take the derivative of the gate voltage. The effective capacitance can be found out through Eq. (2) afterwards.

Components used in schematic

The following are some key components and the corresponding properties used in the SIM_cap.sch test bench.

  • isource.sym: current pwl from xschem_library/devices.
name=I0 value="pwl(0 0 1u 0 1.001u 0.25u)"
  • code_shown.sym: stimulus
code_shown.sym
name=NGSPICE
only_toplevel=true
value="
.control
save all
tran 1n 10u
* plot vc_ideal vc_mim vc_var vc_mos
* plot '100n/deriv(g)' vs v(vc_ideal) ylimit 0 0.3p
* plot '100n/deriv(g1)' vs v(vc_mim) ylimit 0 0.3p
write SIM_cap.raw

.endc
" 
  • launcher.sym: load/unload simulation data into waveform graph
launcher.sym
name=h1 
descr="Select arrow and 
Ctrl-Left-Click to load/unload waveforms" 
tclcommand="
xschem raw_read $netlist_dir/[file tail [file rootname [xschem get current_name]]].raw tran
"
  • waveform graph: waveform viewer.
"Ideal; 0.25e-6 vc_ideal deriv0() /"
"mim; 0.25e-6 vc_mim deriv0() /"
"varactor; 0.25e-6 vc_var deriv0() /"
"LVT-NMOS; 0.25e-6 vc_mos deriv0() /"
Completed schematic
Fig. 1Completed schematic

Notice that in the Sweep properties, we have to set the corresponding voltage so that we can have the plot of capaictance vs. gate voltage.

sweep_properties
vc_ideal vc_mim vc_var vc_mos

Conclusion

  • mim cap basically have the same capacitance behavior as the ideal cap. This is expected since mim is the effective capacitance of between metal layers.

  • varactor: varactor cap is majority carrier device. Varactor cap can reach to its full capacitance with ~500mV gate voltage.

  • LVT-NMOS: in order to reach to the full capacitance, the gate voltage has to be sufficiently high so that the inversion layer can be formed beneath the gate.

Cap density

mim: 4.1µF/mm2

varactor: 8.2µF/mm2

1.8V LVT NMOS: 7.9µF/mm2

References and materials

[1] SIM_cap schematic svg

[2] SIM_cap.sch - download

[3] SIM_cap.pdf - download


HomeWikis
SnippetsAbout
Google ScholarLinkedIn