-
Notifications
You must be signed in to change notification settings - Fork 0
/
GEDAEMPF.PAS
executable file
·296 lines (284 loc) · 6.07 KB
/
GEDAEMPF.PAS
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
program gedaempfteSchwingung;
uses crt,graph;
var
k,treiber,modus:integer;
alpha,delta1,i1,zeit,dL,dC,dR,taus,dt0,i,i0,R,C,L,t,dt,x0,y0,delta,omega,omega0,x,y:real;
wahl:char;
ortx6,ortx1,ortx2,ortx3,ortx4,ortx5:string;
procedure graphik;
begin
treiber:=detect;
initgraph(treiber,modus,'');
setbkcolor(1);
setcolor(15);
line(10,40,630,40);
line(10,420,630,420);
line(10,40,10,420);
line(630,40,630,420);
outtextxy(250,25,'Ged„mpfte Schwingung');
outtextxy(65,435,'R vergrӇern (R) L vergrӇern (L) C vergrӇern (C)');
outtextxy(65,450,' verkleinern (r) verkleinern (l) verkleinern (c)');
outtextxy(25,465,'dR vergrӇern (g) / verkleinern (k) beenden (b)');
setcolor(9);
outtextxy(320,70,'Imax verdoppeln (I) / halbieren (i)');
setcolor(15);
end;
procedure rechnung;
begin
taus:=100000*t;
delta:=R/2/L;
omega0:=1/L/C;
if omega0>delta*delta then
begin
omega:=sqrt(omega0-delta*delta);
zeit:=2*pi/omega;
i:=i0*exp(-delta*t)*cos(sqrt(omega0-delta*delta)*t+alpha);
putpixel(100+round(taus),250-round(-i0*exp(-delta*t)),9);
putpixel(100+round(taus),250-round(i0*exp(-delta*t)),9);
putpixel(100+round(taus),250-round(i),14);
end
else
begin
delta1:=delta-sqrt(delta*delta-omega0);
i:=i0*exp(-delta1*t)*cos(alpha);
zeit:=0;
putpixel(100+round(taus),250-round(i),12);
end;
end;
procedure setz;
begin
t:=0;
line(100,90,100,410);
line(95,100,105,100);
outtextxy(55,95,'Imax');
line(95,400,105,400);
outtextxy(40,395,'- Imax');
line(100,250,610,250);
line(200,245,200,255);
outtextxy(198,265,'1 ');
line(300,245,300,255);
outtextxy(298,265,'2 ');
line(400,245,400,255);
outtextxy(398,265,'3 ');
line(500,245,500,255);
outtextxy(498,265,'5 ');
line(600,245,600,255);
outtextxy(585,265,'6 ms');
setcolor(9);
str(R:4:0,ortx1);
outtextxy(230,405,ortx1);
outtextxy(200,405,'R = Ohm');
str(L*1000:4:0,ortx2);
outtextxy(380,405,ortx2);
outtextxy(350,405,'L = mH');
str(C*1000000:4:2,ortx3);
outtextxy(530,405,ortx3);
outtextxy(500,405,'C = æF');
str(dR:4:0,ortx5);
outtextxy(370,465,ortx5);
outtextxy(340,465,'dR = Ohm');
setcolor(15);
repeat
t:=t+dt;
rechnung;
until taus>=510;
if omega0>delta*delta then
begin
setcolor(14);
str(zeit*1000:4:3,ortx4);
outtextxy(480,380,ortx4);
outtextxy(450,380,'T = ms');
outtextxy(200,90,'I(t) = Imax * exp(-d*t) * cos(w*t + alpha)');
end
else
begin
setcolor(12);
outtextxy(460,380,'Kriechfall');
outtextxy(200,90,'I(t) = Imax * cos(alpha) * exp(- dø*t) ');
end;
setcolor(9);
str(k:4,ortx6);
outtextxy(90,60,ortx6);
outtextxy(40,60,'alpha = * pi/10 alpha vergrӇern (A) / verkleinern (a)');
end;
procedure loesch;
begin
t:=0;
setcolor(1);
outtextxy(230,405,ortx1);
outtextxy(380,405,ortx2);
outtextxy(530,405,ortx3);
outtextxy(270,380,ortx6);
repeat
t:=t+dt;
rechnung;
putpixel(100+round(taus),250-round(-i0*exp(-delta*t)),1);
putpixel(100+round(taus),250-round(i0*exp(-delta*t)),1);
putpixel(100+round(taus),250-round(i),1);
until taus>=510;
if omega0>delta*delta then
begin
str(zeit*1000:4:3,ortx4);
outtextxy(480,380,ortx4);
outtextxy(450,380,'T = ms');
outtextxy(200,90,'I(t) = Imax * exp(-d*t) * cos(w*t + alpha)');
end
else
begin
outtextxy(460,380,'Kriechfall');
outtextxy(200,90,'I(t) = Imax * cos(alpha) * exp(- dø*t) ');
end;
str(k:4,ortx6);
outtextxy(90,60,ortx6);
outtextxy(40,60,'alpha = * pi/10');
setcolor(15);
end;
procedure ausgabe;
begin
i0:=150;
dt0:=0.0001;
dt:=1/30*dt0;
t:=0;
R:=50;
L:=0.035;
C:=0.0000005;
dR:=10;
dL:=0.001;
dC:=0.00000001;
alpha:=0;
k:=0;
setz;
wahl:=' ';
repeat
if keypressed then wahl:=readkey;
case wahl of
'a':
begin
loesch;
k:=k-1;
alpha:=alpha-0.1*pi;
setz;
wahl:=' ';
end;
'A':
begin
loesch;
k:=k+1;
alpha:=alpha+0.1*pi;
setz;
wahl:=' ';
end;
'g':
begin
setcolor(1);
str(dR:4:0,ortx5);
outtextxy(370,465,ortx5);
dR:=dR+1;
str(dR:4:0,ortx5);
setcolor(9);
outtextxy(370,465,ortx5);
wahl:=' ';
end;
'k':
begin
if dR>=2 then
begin
setcolor(1);
str(dR:4:0,ortx5);
outtextxy(370,465,ortx5);
dR:=dR-1;
setcolor(9);
str(dR:4:0,ortx5);
outtextxy(370,465,ortx5);
end;
wahl:=' ';
end;
'r':
begin
if R>=dR then
begin
loesch;
R:=R-dR;
setz;
wahl:=' ';
end
else
begin
R:=R;
wahl:=' ';
end;
end;
'R':
begin
loesch;
R:=R+dR;
setz;
wahl:=' ';
end;
'i':
begin
loesch;
I0:=I0/2;
setz;
wahl:=' ';
end;
'I':
begin
loesch;
I0:=I0*2;
setz;
wahl:=' ';
end;
'c':
begin
if C>=2*dC then
begin
loesch;
C:=C-dC;
setz;
wahl:=' ';
end
else
begin
C:=C;
wahl:=' ';
end;
end;
'C':
begin
loesch;
C:=C+dC;
setz;
wahl:=' ';
end;
'l':
begin
if L>=2*dL then
begin
loesch;
L:=L-dL;
setz;
wahl:=' ';
end
else
begin
L:=L;
wahl:=' ';
end;
end;
'L':
begin
loesch;
L:=L+dL;
setz;
wahl:=' ';
end;
'p':wahl:=readkey;
end;
until wahl='b';
end;
{Main}
begin
graphik;
ausgabe;
end.