File tree 6 files changed +590
-0
lines changed
6 files changed +590
-0
lines changed Original file line number Diff line number Diff line change
1
+ program Project1;
2
+
3
+ uses
4
+ Forms,
5
+ Unit1 in ' Unit1.pas' { Form1} ;
6
+
7
+ { $R *.res}
8
+
9
+ begin
10
+ Application.Initialize;
11
+ Application.CreateForm(TForm1, Form1);
12
+ Application.Run;
13
+ end .
Original file line number Diff line number Diff line change
1
+ object Form1: TForm1
2
+ Left = 69
3
+ Top = 6
4
+ Width = 900
5
+ Height = 700
6
+ Caption = ' 0'
7
+ Color = clBtnFace
8
+ Font.Charset = DEFAULT_CHARSET
9
+ Font.Color = clWindowText
10
+ Font.Height = -11
11
+ Font.Name = ' MS Sans Serif'
12
+ Font.Style = []
13
+ OldCreateOrder = False
14
+ OnCreate = FormCreate
15
+ PixelsPerInch = 96
16
+ TextHeight = 13
17
+ object Image1: TImage
18
+ Left = 8
19
+ Top = 0
20
+ Width = 697
21
+ Height = 417
22
+ end
23
+ object Label2: TLabel
24
+ Left = 548
25
+ Top = 421
26
+ Width = 61
27
+ Height = 13
28
+ Caption = ' choose case'
29
+ end
30
+ object Label4: TLabel
31
+ Left = 613
32
+ Top = 416
33
+ Width = 95
34
+ Height = 13
35
+ Caption = ' WRITE temperature'
36
+ end
37
+ object Label1: TLabel
38
+ Left = 65
39
+ Top = 522
40
+ Width = 3
41
+ Height = 13
42
+ Caption = ' t'
43
+ end
44
+ object Label5: TLabel
45
+ Left = 0
46
+ Top = 520
47
+ Width = 8
48
+ Height = 13
49
+ Caption = ' ik'
50
+ end
51
+ object Button1: TButton
52
+ Left = 28
53
+ Top = 424
54
+ Width = 75
55
+ Height = 25
56
+ Caption = ' Go'
57
+ TabOrder = 0
58
+ OnClick = Button1Click
59
+ end
60
+ object Button3: TButton
61
+ Left = 28
62
+ Top = 488
63
+ Width = 75
64
+ Height = 25
65
+ Caption = ' Exit'
66
+ TabOrder = 1
67
+ OnClick = Button3Click
68
+ end
69
+ object Edit2: TEdit
70
+ Left = 614
71
+ Top = 432
72
+ Width = 82
73
+ Height = 24
74
+ TabOrder = 2
75
+ Text = ' T,K'
76
+ end
77
+ object ListBox1: TListBox
78
+ Left = 15
79
+ Top = 520
80
+ Width = 44
81
+ Height = 17
82
+ ItemHeight = 13
83
+ Items.Strings = (
84
+ ' 1'
85
+ ' 2'
86
+ ' 3'
87
+ ' 4' )
88
+ TabOrder = 3
89
+ end
90
+ object Memo1: TMemo
91
+ Left = 144
92
+ Top = 416
93
+ Width = 401
94
+ Height = 121
95
+ Lines.Strings = (
96
+
97
+ ' Input activation energy and lattice parameter -- case of 1,2,3 ' +
98
+ ' or 4:'
99
+ ' 1 - for Fe Hev=x*250800 J, lattice parameter a=3.4e-10 m'
100
+ ' 2 - for Cu Hev=x*205632 J, lattice parameter a=3.64e-10 m'
101
+ ' 3 - for Na Hev=x*48070 J, lattice parameter a=2.6e-10 m'
102
+
103
+ ' 4 - for diffusion C in Fe Hev=x*80256 J, lattice parameter a=3.' +
104
+ ' 4e-10 m'
105
+
106
+ ' Input temperature in intervals: 1400-1600 K for Fe, 1000-1300' +
107
+ ' K for Cu,'
108
+ ' 300-350 K for Na, 500-600 K for C' )
109
+ TabOrder = 4
110
+ OnClick = Button2Click
111
+ end
112
+ object Button2: TButton
113
+ Left = 28
114
+ Top = 456
115
+ Width = 75
116
+ Height = 25
117
+ Caption = ' Diff b'
118
+ TabOrder = 5
119
+ OnClick = Button2Click
120
+ end
121
+ object Edit1: TEdit
122
+ Left = 614
123
+ Top = 464
124
+ Width = 82
125
+ Height = 24
126
+ TabOrder = 6
127
+ Text = ' 1e-12'
128
+ end
129
+ object Edit3: TEdit
130
+ Left = 614
131
+ Top = 488
132
+ Width = 82
133
+ Height = 24
134
+ TabOrder = 7
135
+ Text = ' 1e-10'
136
+ end
137
+ object RadioGroup2: TRadioGroup
138
+ Left = 552
139
+ Top = 432
140
+ Width = 49
141
+ Height = 105
142
+ ItemIndex = 0
143
+ Items.Strings = (
144
+ ' Fe'
145
+ ' Cu'
146
+ ' Na'
147
+ ' C' )
148
+ TabOrder = 8
149
+ end
150
+ object Edit4: TEdit
151
+ Left = 73
152
+ Top = 518
153
+ Width = 65
154
+ Height = 24
155
+ TabOrder = 9
156
+ Text = ' 0'
157
+ end
158
+ object Timer1: TTimer
159
+ Enabled = False
160
+ Interval = 1
161
+ OnTimer = Timer1Timer
162
+ Left = 8
163
+ Top = 432
164
+ end
165
+ end
You can’t perform that action at this time.
0 commit comments