$ EE130 Fall 2005 MOSFET Project: MEDICI DECK $ This is the device simulation deck for MEDICI. In here you will ramp $ drain and gate voltages and plot IV characteristics. Some of the initial $ statements to start the simulations have been provided to you. You will $ be required to fill in the rest. $ load the TSUPREM4 file mesh infile=EE130nmos.str tsuprem4 $ specify contact materials, we're using n+ poly gate contact name=drain neutral contact name=gate n.poly contact name=source neutral contact name=substrate neutral $ load the appropriate models models lsmmob fldmob fermidir $ Begin solve statements $ solve the equillibrium state of the device with no carriers symbolic carriers=0 solve initial $ now begin to ramp gate and drain biases $ both electron and hole current will be solved symbolic newton carriers=2 $ insert rest of solve statements to generate IV curve desired $solve v(gate)=0 $ -- Problem A1 -- $plot.1d doping x.start=0 print device=x outfile="prob_a11.dat" $plot.1d doping y.start=0.001 print device=x outfile="prob_a12.dat" $ -- Problem B1 -- $solve v(drain)=0 elec=drain vstep=0.05 nstep=16 $log out.file="data_b12.dat" $solve v(gate)=0 elec=gate vstep=0.05 nstep=16 $log close $plot.1d y.axis=i(drain) x.axis=v(gate) infile="data_b12.dat" print device=x outfile="prob_b12.dat" $ -- Problem B2 -- $solve v(drain)=0 elec=drain vstep=0.05 nstep=16 $log out.file="data_b2.dat" $solve v(gate)=0 elec=gate vstep=0.01 nstep=80 $log close $plot.1d y.axis=i(drain) x.axis=v(gate) infile="data_b2.dat" print device=x outfile="prob_b2.dat" $ -- Problem B6 -- $solve v(gate)=0 elec=gate vstep=0.003 nstep=41 $plot.2d depletion device=postscript $contour holes log min=15 max=18 del=1 line=0 $ -- Problem C1 -- $solve v(gate)=0 elec=gate vstep=0.05 nstep=16 $log out.file="data_c12.dat" $solve v(drain)=0 elec=drain vstep=0.05 nstep=16 $log close $plot.1d y.axis=i(drain) x.axis=v(drain) infile="data_c12.dat" print device=x outfile="prob_c12.dat" $ -- Problem C3 -- $solve v(drain)=0 elec=drain vstep=0.05 nstep=16 $solve v(gate)=0 elec=gate vstep=0.05 nstep=16 $plot.1d ele.vel y.start=0.001 print device=x outfile="prob_c4.dat" $ -- Problem D1 -- $solve v(gate)=0 elec=gate vstep=0.05 nstep=16 $solve v(drain)=0 elec=drain vstep=0.05 nstep=16 $plot.1d potential y.start=0.0005 print device=x outfile="prob_d13.dat" $ -- Problem D3 -- solve v(gate)=0 elec=gate vstep=0.003 nstep=41 solve v(drain)=0 elec=drain vstep=0.05 nstep=16 plot.1d potential y.start=0.0005 print device=x outfile="prob_d32.dat" $ insert some plot statements for plotting IV or plotting cutlines $ for potential across device $plot.1d y.axis=i(drain) x.axis=v(gate) infile=curve1.dat print device=x outfile="plotdata1.dat" $plot.1d potential x.start=0 print device=x outfile="potential.dat" $plot.1d potential y.start=0 print device=x outfile="potential.dat" $plot.2d junction depletion quit