-
Notifications
You must be signed in to change notification settings - Fork 1
/
input_file.m
46 lines (39 loc) · 1.58 KB
/
input_file.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%% Layers Structure %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% first column is the material used from the "library"
% second column is the length of the layer in nm = 1e-9m
% third column is the doping of the layer in 1e18 cm-3
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
substrate=InP;
F0=0;%6e6;%0; % Electric field [Volt/meter]
M=[
AlInAs 5 0
AlInAs 1 7
AlInAs 5 0
InGaAs 6 0
AlInAs 5 0
InGaAs 7 0
AlInAs 5 0
AlInAs 1 5
AlInAs 5 0
];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% substrate=GaAs; % Important for the Strain model (Si, GaAs, InP, InAs, GaSb)
% F0=0;%6e6;%0; % Electric field [Volt/meter]
% M=[
% GaAs 10 0.5
% InGaAs20 15 0
% GaAs 10 0.5
% ];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% substrate=GaAs; % Important for the Strain model (Si, GaAs, InP, InAs, GaSb)
% F0=0;%16e6;%0; % Electric field [Volt/meter]
% M=[
% AlGaAs40 5 2
% GaAs 10 0
% AlGaAs40 5 2
% ];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%