Delta-Depletion Model
Delta-Depletion Model
THEORY:
The total charge contributed in various region of operation using delta-depletion approximation
is given below,
(a) Accumulation Region – In this region the applied gate voltage, 𝑉 ≤ 0 for p-type
substrate. Thus, a positive charge is accumulated at the oxide-semiconductor interface
which is approximated as 𝑄 = 𝑄 = −𝐶 𝑉 .
(b) Depletion Region − In this region the applied gate voltage, 0 ≤ 𝑉 ≤ 𝑉 for p-type
substrate. Thus, a negative charge is accumulated at the oxide-semiconductor interface
which is approximated as 𝑄 = 𝑄 = 1− 1+ .
(c) Inversion Region − In this region the applied gate voltage, 𝑉 ≥ 𝑉 for p-type substrate.
Thus, a negative charge is accumulated at the oxide-semiconductor interface which is
approximated as 𝑄 = 𝑄 + 𝑄 = 4𝑞𝜖 𝑁 𝜓 + 𝐶 𝑉 − 𝑉
Threshold voltage, 𝑉 = + 2𝜓
Oxide Capacitance, 𝐶 =
Oxide thickness, 𝑡 = 7 𝑛𝑚
Acceptor doping concentration, 𝑁 = 10 /𝑐𝑚
𝜖 = 11.8𝜖
𝜖 = 3.9𝜖
𝜖 = 8.85 × 10 𝐹/𝑐𝑚
𝑞 = 1.6 × 10 𝐶
𝑁
𝜓 = 𝑉 ln
𝑛
𝑉 = 0.026 𝑉
𝑛 = 1.5 × 10 /𝑐𝑚
RESULT AND CONCLUSION:
The plot of approximated total charge with respect to applied gate voltage is given below,
The charge profile obtained using delta-depletion approximation is close with the results
obtained using analytical method.
CODE:
%%%% ASSIGNMENT 2 : MOSCAP Charge vs. Gate Voltage Profile %%%%%
psi_s = zeros(1,length(V_g));
for k = 1:length(V_g)
V = V_g(1,k);
if V >= 0
x = 0.01;
else
x = -0.01;
end
for i = 1:1000
g = 2*q*epsilon_Si*epsilon_0*V_t*(N_a*(exp(-x/V_t)-1)+(n_i^2/N_a)*(exp(x/V_t)-
1)+(N_a*x)/V_t);
e = 2*q*epsilon_Si*epsilon_0*(-N_a*exp(-x/V_t)+(n_i^2/N_a)*exp(x/V_t)+N_a);
m = C_ox*(V-x);
f = g-m^2;
f_1 = e - 2*C_ox^2*(x-V);
x = x - (f/f_1);
end
psi_s(1,k) = x;
end
Q_s = sqrt(2*q*epsilon_Si*epsilon_0*V_t*(N_a*(exp(-psi_s/V_t)-
1)+(n_i^2/N_a)*(exp(psi_s/V_t)-1)+(N_a*psi_s)/V_t));
Q_s(1,round((5/h)+1)) = 0; % No charge for zero gate voltage