Skip to content
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

Quasi3D solver improvement #34

Open
ilomdez opened this issue Mar 12, 2019 · 2 comments
Open

Quasi3D solver improvement #34

ilomdez opened this issue Mar 12, 2019 · 2 comments

Comments

@ilomdez
Copy link

ilomdez commented Mar 12, 2019

As I am not sure of how important this may be to the Solcore community I'll write a general idea of how the quasi3D solver could be improved in my opinion. If something is of particular interest a more accurate issue can be opened.

General improvements:

  • Allow defining the height and the width of each row and column to improve accuracy/speed
  • Allow saving the outputs(.out and .raw). In my experience, it is important to keep these files or at least set an option to make solcore save them. The .out might have some warnings, so as long as they are not errors the simulation will run without the user noticing the warning. Allowing the .raw to be saved opens the possibility for the user to use their own data reader/plotter.
  • Allow sweeping a variable. Of course, this can be done in python, sweeping a variable and then executing the quasi3D. However, it is usually faster to let Spice do this, as it has the circuit already built and it does not have to be completely rebuilt for each iteration
  • Avoid printing the nodes voltages as default. Printing the values take a lot of time for large circuit and it is unnecessary when only the I-V curve is needed.
  • Allow to get the current going through a device in particular (e.g. current going through J01 diodes)
  • Allow to get the voltage difference of a junction. This will allow to obtain the EL or PL of a junction straightforward.

Stand-alone Improvements:

The integration of the Spice solver with the rest of the modules is awesome and really useful. However, it set some constraints that limit the quasi3D potential and developing a quasi3D that does not depends on the rest of the solcore structure might be useful as well.
Of particular importance would be to allow user-defined circuits to:

  • Take into account non-homogeneous effects (such as the perimeter recombination)
  • Allow the use of other devices (capacitors, reverse breakdown diodes) that are usually not needed to model the standard behavior of a solar cell, but that may be useful for certain scenarios (EQE measurement simulation for instance)
  • I think (not sure though) that luminescence coupling is not implemented in the quasi3D. The use of user-defined voltage dependent current sources will allow it.
  • Simplify circuits - for instance, you don't need lateral resistances at the edges of each junction in a multijunction solar cell under certain circumstances. This allows to speed up the spice solver and to solve much bigger circuits.

Again, if this is not of particular importance for solcore, please let me know and I'll try to find an open issue that suits me.

Thank you

@dalonsoa
Copy link
Collaborator

I think it is a really useful feature for the PV community, specially for those working at higher, full solar cell level - maybe not so much for those in semiconductor physics. So, in summary, anything that makes the Solcore/SPICE interface faster and more versatile, is more than welcome.

I specially like - and I'm sure @iclned would agree - the possibility of including luminescence coupling. I know it could be done with dependent current sources (I think that it'll be current dependent current sources, actually) but never got time to implement it. That will be an excellent improvement!

Keeping aside all the other enhancements - that I think are all excellent - whatever is changed should keep backwards compatibility, so the solver can be used in its simplified way, as it is now, if needed.

@ilomdez
Copy link
Author

ilomdez commented Mar 13, 2019

Great, that's good to know!

Regarding the current sources, I think you can actually use both depending on how elegant you want to be. I mean, subcell luminescence depends on exp(V*q/kT -1), so you can use the voltage and calculate the exponential or use the current through the J01 diode (which will follow the same exponential presumably). Probably the current option is faster while the voltage is slightly better if you are going to mess with the circuit devices. Anyway, changing the type of current source should be easy enough, so we do not need to worry about that yet.

I'll keep an eye on the backwards compatibility while thinking how the enhancements can be added to solcore.

@dalonsoa dalonsoa added this to To do in 2-diode model and Spice via automation Mar 27, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

No branches or pull requests

3 participants