-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinput_file.m
62 lines (55 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%% Layers Structure %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% first column is the material used from the "library"
% second column is the length of the layer in nm
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%substrate=GaAs; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%GaAs 10
%InGaAs20 10
%GaAs 10
%];
%substrate=GaAs; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%AlGaAs40 5
%GaAs 5
%AlGaAs40 5
%
%];
% Sirtori, PRB, 50, 8663 (1994)
%substrate=InP; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%AlInAs 6
%InGaAs 5.2
%AlInAs 6
%];
% Sirtori, PRB, 50, 8663 (1994)
%substrate=InP; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%AlInAs 6
%InGaAs 5.9
%AlInAs 1.3
%InGaAs 2.4
%AlInAs 6
%];
% Sirtori, PRB, 50, 8663 (1994)
substrate=InP; % Important for the Strain model (GaAs, InP, InAs, GaSb)
M=[
AlInAs 6
InGaAs 4.6
AlInAs 1.0
InGaAs 2.0
AlInAs 1.0
InGaAs 1.9
AlInAs 6
];
%substrate=InP; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%GaAsSb 10
%InGaAs 10
%GaAsSb 10
%];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%