-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_file.m
62 lines (55 loc) · 1.85 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
% third column is the amount of meshing points of the layer
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%substrate=GaAs; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%GaAs 10 20
%InGaAs20 10 30
%GaAs 10 10
%];
%substrate=GaAs; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%AlGaAs40 5 20
%GaAs 5 25
%AlGaAs40 5 10
%];
% Sirtori, PRB, 50, 8663 (1994)
%substrate=InP; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%AlInAs 6 20
%InGaAs 5.2 15
%AlInAs 6 10
%];
% Sirtori, PRB, 50, 8663 (1994)
%substrate=InP; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%AlInAs 6 20
%InGaAs 5.9 15
%AlInAs 1.3 5
%InGaAs 2.4 7
%AlInAs 6 10
%];
% Sirtori, PRB, 50, 8663 (1994)
substrate=InP; % Important for the Strain model (GaAs, InP, InAs, GaSb)
M=[
AlInAs 6 10
InGaAs 4.6 70
AlInAs 1.0 5
InGaAs 2.0 6
AlInAs 1.0 35
InGaAs 1.9 40
AlInAs 6 10
];
%substrate=InP; % Important for the Strain model (GaAs, InP, InAs, GaSb)
%M=[
%GaAsSb 10 20
%InGaAs 10 33
%GaAsSb 10 10
%];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%