Open
Description
The documentation for the PDD solver states that the output is provided as a nested dictionary. However, that is not correct: it is provided as a State
object with the different keys accesible as attributes. For example:
solar_cell[junction_index]['QE']['EQE']
should be:
solar_cell[junction_index].qe.EQE
The examples are incorrect and so is the description of the dictionary at the end.