I just started using Java to simulate solar panel's performance, however the single diode model requires lots of calculations:
basically, each function is a function of the other, all of them of the variable of Rs, a. two equations are available from f, f1. how can i get the value of Rs, a. I can extract Rs, a from the equations and take it to the equation of f, f1. however, the equation will be of great difficulty to solve, as it has exp(), multi-times of the variable and ln().. is there any library to use to calculate the value of variables by given constraint?
the equations are basically like this:
v = 3.5a
ff0= 5/v+ln(5/v+0.7)/(5/v+1)
ffs = ff0*(1-Rs*1.1)+(Rs*8)^2
....
...
..
f: 9=constant1-ffs*((exp(v-4/Rs))-1)-(15+8*Rs)*a
f1: 9=15*(ffs*.....)
thank you.