Could some Aestimo guru please help:
The 'sample_pn.py' contains:
# REGIONS
# Region input is a two-dimensional list input.
# An example:
# Si p-n diode. Firstly lets picturize the regional input.
#| Thickness (nm) | Material | Alloy fraction | Doping(cm^-3) | n or p type |
# Layer 0 | 250.0 | Si | 0 | 1e16 | n |
# Layer 1 | 250.0 | Si | 0 | 1e16 | p |
But right after that:
material1 =[[3140.5, 'Si', 0.0, 0.0, 0.7e+17, 'p','b'],
[3140.5, 'Si', 0.0, 0.0, 0.7e+16, 'n','b']]
material =[[500, 'Si', 0.0, 0.0, 1e+19, 'p','b'],
[500, 'Si', 0.0, 0.0,1e+19, 'n','b']]
Could you please explain:
1. what the extra 0.0 right after the alloy fraction is for ?
2. is the 'b' supposed to mean, right after the doping type n|p ?
Thanks in advance.