Solving the 1D Poisson equation for a MOS device

AI Thread Summary
The discussion focuses on developing a 1D Poisson Solver for a MOS device using the Finite Volume Method, but issues arise with the boundary conditions affecting the potential distribution. The solver calculates charge density using established equations, yet the potential decreases slowly after the oxide-silicon interface, indicating a potential boundary condition problem. Participants suggest plotting fixed lattice charge, electron, and hole concentrations to diagnose the issue, while emphasizing the importance of accurately modeling the surface potential at the oxide-silicon interface. The conversation also references the complexities of doping profiles and the historical context of MOSFET modeling, highlighting the need for precise boundary conditions to ensure accurate simulation results.
luidgi93
Messages
2
Reaction score
0
TL;DR Summary
A question regarding the boundary conditions for the 1D Poisson equation of a MOS devics (Al - SiO2-Si)
Hey everyone,

I'm currently working on a 1D Poisson Solver for a MOS device (Al-Si-SiO2). Therefore, I programmed a Poisson Solver which is appling a boxintegration (Finite Volume Method) through the structure from φ(0) at the metal-oxide interface and φ(x_bulk = 20 nm) in in the silicon bulk. It is solving the equation system numerically with a Newton Solver. The solver is working properly. ρ is calculated through:
ρ = q0 * (Nd - Na - n + p)
with
n = ni * exp(- φ / (kb [eV] * T)) and p = ni * exp( φ/ (kb [eV] * T))

The current solution is for φ (top) and ρ (bottom):

Vg=0.5 example.png

After the oxide-silicon interface at x_ox = 2nm, φ decreases very slowly and doesn't reflect the depletion region. I think that there is a problem with the boundary conditions which are for the moment (with V = 0.5 applied gate voltage in the image):

φ(0) = V - Φm + Φs
with Φm beeing the workfunktion of Al and Φs = χ_si + Eg_si/2 + kb [eV]*T*log(Na/ni)
φ(x_bulk) = 0

I used eps_Si and eps_SiO2 in the box integration for the area of the semiconductor and the oxide. (T = 300 K)

I also tried some variations adding φ_bi (built-in potential) to the boundaries. Could someone please help me and tell me where my mistake is? Is there an interface condition at the SiO2 - Si interface I need to apply?

Thank you very much!
 
Engineering news on Phys.org
Why is rho decreasing linearly in the silicon after the Si interface? I suggest you plot out the fixed latice charge(Nd-Na), n, and p all separately so you can see what's going on.
 
Thanks for your answer.
I did all that before and it didn’t help me. I can either modify the boundary conditions or the used equations. I checked the calculation of n and p before and they seem reasonable. The values are correct. Na and Nd are fix with Na>Nd. So I really think the problem is in either the equation in the linear system or the boundaries. Could you please answer my question on the boundary conditions?
 
So the way you normally derive a MOSFET from "first principles" is embodied in the SPICE level 3 model. Sadly that was one of the last models that was so derived. Since then most modeling is done with curve-fits of "inferior level-3-like models" as a multivariate regression over W and L. This is basically what the Berkeley BSIM family of models do.

The problem behind all of this being that you can not measure doping profiles with any certainty in any process smaller than 10 microns so you can not know the rho value of a Poisson equation. You have to assume with a hand-wave. Otherwise you have somehow assume a profile which can never be proven.

So Level 3 is derived this way:
  1. Write a Gauss' law equation from gate metal to channel surface
  2. Optionally include charge for things like floating gate MOSFETs
  3. Solve/integrate over z for the voltage/potential at the interface between oxide and silicon channel aka the surface potential. You do this for a dx piece of channel.
The reason for needing this voltage is that all of the phenomena of depletion, accumulation and inversion are dependent upon that surface voltage.

This equation then needs to be integration along the channel length though there's an extra piece of information: the charge distribution in that axis. This is an unknown because there's a circular relation between the ensemble of states of the channel, the surface potential and the formation of the state at distance into the channel from the source - one too many unknowns vs. equations so Level 3 punts and allocates charge in thirds.

There are newer models from MIT that may have solved this though it's merely done with yet another empirical variable to indirectly allocate the charge. I'd recommend looking that MIT model as well as historic documentation about the derivation of Level 3.

The key thing: the phenomenology of the gate is different from the channel and that voltage at the surface is key. Not taking that into account is problematic.
 
Very basic question. Consider a 3-terminal device with terminals say A,B,C. Kirchhoff Current Law (KCL) and Kirchhoff Voltage Law (KVL) establish two relationships between the 3 currents entering the terminals and the 3 terminal's voltage pairs respectively. So we have 2 equations in 6 unknowns. To proceed further we need two more (independent) equations in order to solve the circuit the 3-terminal device is connected to (basically one treats such a device as an unbalanced two-port...
suppose you have two capacitors with a 0.1 Farad value and 12 VDC rating. label these as A and B. label the terminals of each as 1 and 2. you also have a voltmeter with a 40 volt linear range for DC. you also have a 9 volt DC power supply fed by mains. you charge each capacitor to 9 volts with terminal 1 being - (negative) and terminal 2 being + (positive). you connect the voltmeter to terminal A2 and to terminal B1. does it read any voltage? can - of one capacitor discharge + of the...
Thread 'Weird near-field phenomenon I get in my EM simulation'
I recently made a basic simulation of wire antennas and I am not sure if the near field in my simulation is modeled correctly. One of the things that worry me is the fact that sometimes I see in my simulation "movements" in the near field that seems to be faster than the speed of wave propagation I defined (the speed of light in the simulation). Specifically I see "nodes" of low amplitude in the E field that are quickly "emitted" from the antenna and then slow down as they approach the far...
Back
Top