-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Radiative saturation current in "diode equation" #125
Comments
Fantastic discusion! Just to confirm, you're refering to both:
right? |
The first part of equation (30) in the paper is correct. But it does not result in the equation written in the radiative current calculation in the 2-diode solver. |
@all-contributors please add @AndiPOz for bug |
I've put up a pull request to add @AndiPOz! 🎉 |
The radiative saturation current in the diode equation module is currently implemented incorrectly.
The radiative saturation current is an interface property and depends on the smaller of the optical density of states either side of the interface. Therefore, to calculate the radiative saturation current of a junction one needs to know the refractive index of the material above and below as well as the refractive index of the junction itself.
There are essentially four relevant cases for the pre-factors of the integral:
1.) 2 pi/(h^3 c^2) for a junction in radiative contact with air and a back mirror.
2.) (n_i^2+1) 2 pi/(h^3 c^2) for junction i in radiative contact with air and a material (junction or substrate) with equal or higher refractive index.
3.) (n_(i+1)^2+1) 2 pi/(h^3 c^2) for junction i in radiative contact with air and junction or substrate I+1 with refractive index smaller than n_i.
4.) (2 n^_i^2) 2 pi/(h^3 c^2) for junction i in radiative contact with junction above and substrate or junction below with same refractive index.
Note that a bottom junction in a multi-junction stack can still be considered to be in radiative contact with air because all the junctions above are transparent to the emission from the bottom junction. Case 4 arises only if two junctions or more are made from the same absorber (relevant for monochromatic energy conversion).
Because new arguments need to be introduced into the function, this requires care when fixing in order not to break dependent functions.
The text was updated successfully, but these errors were encountered: