blob: 5349e0f1013f614f6882e0c06b77196e3fdbc8ce (
plain)
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
|
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: vaux.eps
%%CreationDate: 09/15/ 0 09:46:39
%%DocumentNeededFonts: Times-Roman
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Extensions: CMYK
%%Pages: 1
%%BoundingBox: 40 191 547 615
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
/rm /rmoveto ldef
/rl /rlineto ldef
/s /show ldef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def
/landscapeMode 1 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {
/FontSize xstore %save size off stack
findfont
[FontSize 0 0 FontSize neg 0 0]
makefont
setfont
}bdef
/reencode {
exch dup where
{pop load} {pop StandardEncoding} ifelse
exch
dup 3 1 roll
findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def
currentdict
end
definefont pop
} bdef
/isroman {
findfont /CharStrings get
/Agrave known
} bdef
/FMSR {
3 1 roll 1 index
dup isroman
{reencode} {pop pop} ifelse
exch FMS
} bdef
/csm {
1 dpi2point div -1 dpi2point div scale
neg translate
landscapeMode eq {90 rotate} if
} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {
lineto
stroke
} bdef
/MP {
3 1 roll moveto
1 sub {rlineto} repeat
} bdef
/AP {
{rlineto} repeat
} bdef
/PP {
closepath eofill
} bdef
/DP {
closepath stroke
} bdef
/MR {
4 -2 roll moveto
dup 0 exch rlineto
exch 0 rlineto
neg 0 exch rlineto
closepath
} bdef
/FR {
MR stroke
} bdef
/PR {
MR fill
} bdef
/L1i {
{ currentfile picstr readhexstring pop } image
} bdef
/tMatrix matrix def
/MakeOval {
newpath
tMatrix currentmatrix pop
translate scale
0 0 1 0 360 arc
tMatrix setmatrix
} bdef
/FO {
MakeOval
stroke
} bdef
/PO {
MakeOval
fill
} bdef
/PD {
currentlinecap 1 setlinecap 3 1 roll 2 copy moveto lineto stroke setlinecap
} bdef
/FA {
newpath
tMatrix currentmatrix pop
translate scale
0 0 1 5 -2 roll arc
tMatrix setmatrix
stroke
} bdef
/PA {
newpath
tMatrix currentmatrix pop
translate 0 0 moveto scale
0 0 1 5 -2 roll arc
closepath
tMatrix setmatrix
fill
} bdef
/FAn {
newpath
tMatrix currentmatrix pop
translate scale
0 0 1 5 -2 roll arcn
tMatrix setmatrix
stroke
} bdef
/PAn {
newpath
tMatrix currentmatrix pop
translate 0 0 moveto scale
0 0 1 5 -2 roll arcn
closepath
tMatrix setmatrix
fill
} bdef
/vradius 0 def
/hradius 0 def
/lry 0 def
/lrx 0 def
/uly 0 def
/ulx 0 def
/rad 0 def
/MRR {
/vradius xdef
/hradius xdef
/lry xdef
/lrx xdef
/uly xdef
/ulx xdef
newpath
tMatrix currentmatrix pop
ulx hradius add uly vradius add translate
hradius vradius scale
0 0 1 180 270 arc
tMatrix setmatrix
lrx hradius sub uly vradius add translate
hradius vradius scale
0 0 1 270 360 arc
tMatrix setmatrix
lrx hradius sub lry vradius sub translate
hradius vradius scale
0 0 1 0 90 arc
tMatrix setmatrix
ulx hradius add lry vradius sub translate
hradius vradius scale
0 0 1 90 180 arc
tMatrix setmatrix
closepath
} bdef
/FRR {
MRR stroke } bdef
/PRR {
MRR fill } bdef
/MlrRR {
/lry xdef
/lrx xdef
/uly xdef
/ulx xdef
/rad lry uly sub 2 div def
newpath
tMatrix currentmatrix pop
ulx rad add uly rad add translate
rad rad scale
0 0 1 90 270 arc
tMatrix setmatrix
lrx rad sub lry rad sub translate
rad rad scale
0 0 1 270 90 arc
tMatrix setmatrix
closepath
} bdef
/FlrRR {
MlrRR stroke } bdef
/PlrRR {
MlrRR fill } bdef
/MtbRR {
/lry xdef
/lrx xdef
/uly xdef
/ulx xdef
/rad lrx ulx sub 2 div def
newpath
tMatrix currentmatrix pop
ulx rad add uly rad add translate
rad rad scale
0 0 1 180 360 arc
tMatrix setmatrix
lrx rad sub lry rad sub translate
rad rad scale
0 0 1 0 180 arc
tMatrix setmatrix
closepath
} bdef
/FtbRR {
MtbRR stroke } bdef
/PtbRR {
MtbRR fill } bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 40 191 547 615
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0216 7344 csm
270 -40 6078 5083 MR c np
91 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5186 PR
6 w
0 4225 5355 0 0 -4225 899 4614 4 MP
PP
-5355 0 0 4225 5355 0 0 -4225 899 4614 5 MP stroke
4 w
DO
0 sg
899 4614 mt 899 389 L
899 389 mt 899 389 L
1792 4614 mt 1792 389 L
1792 389 mt 1792 389 L
2684 4614 mt 2684 389 L
2684 389 mt 2684 389 L
3577 4614 mt 3577 389 L
3577 389 mt 3577 389 L
4469 4614 mt 4469 389 L
4469 389 mt 4469 389 L
5362 4614 mt 5362 389 L
5362 389 mt 5362 389 L
6254 4614 mt 6254 389 L
6254 389 mt 6254 389 L
899 4614 mt 6254 4614 L
6254 4614 mt 6254 4614 L
899 3910 mt 6254 3910 L
6254 3910 mt 6254 3910 L
899 3206 mt 6254 3206 L
6254 3206 mt 6254 3206 L
899 2502 mt 6254 2502 L
6254 2502 mt 6254 2502 L
899 1797 mt 6254 1797 L
6254 1797 mt 6254 1797 L
899 1093 mt 6254 1093 L
6254 1093 mt 6254 1093 L
899 389 mt 6254 389 L
6254 389 mt 6254 389 L
SO
6 w
899 4614 mt 6254 4614 L
899 389 mt 6254 389 L
899 4614 mt 899 389 L
6254 4614 mt 6254 389 L
899 4614 mt 6254 4614 L
899 4614 mt 899 389 L
899 4614 mt 899 4560 L
899 389 mt 899 443 L
%%IncludeResource: font Times-Roman
/Times-Roman /ISOLatin1Encoding 180 FMSR
854 4810 mt
(1) s
1792 4614 mt 1792 4560 L
1792 389 mt 1792 443 L
1680 4810 mt
(1.5) s
2684 4614 mt 2684 4560 L
2684 389 mt 2684 443 L
2639 4810 mt
(2) s
3577 4614 mt 3577 4560 L
3577 389 mt 3577 443 L
3465 4810 mt
(2.5) s
4469 4614 mt 4469 4560 L
4469 389 mt 4469 443 L
4424 4810 mt
(3) s
5362 4614 mt 5362 4560 L
5362 389 mt 5362 443 L
5250 4810 mt
(3.5) s
6254 4614 mt 6254 4560 L
6254 389 mt 6254 443 L
6209 4810 mt
(4) s
899 4614 mt 953 4614 L
6254 4614 mt 6200 4614 L
639 4678 mt
(0.7) s
899 3910 mt 953 3910 L
6254 3910 mt 6200 3910 L
549 3974 mt
(0.75) s
899 3206 mt 953 3206 L
6254 3206 mt 6200 3206 L
639 3270 mt
(0.8) s
899 2502 mt 953 2502 L
6254 2502 mt 6200 2502 L
549 2566 mt
(0.85) s
899 1797 mt 953 1797 L
6254 1797 mt 6200 1797 L
639 1861 mt
(0.9) s
899 1093 mt 953 1093 L
6254 1093 mt 6200 1093 L
549 1157 mt
(0.95) s
899 389 mt 953 389 L
6254 389 mt 6200 389 L
774 453 mt
(1) s
899 4614 mt 6254 4614 L
899 389 mt 6254 389 L
899 4614 mt 899 389 L
6254 4614 mt 6254 389 L
gs 899 389 5356 4226 MR c np
/c8 { 0.000000 0.000000 1.000000 sr} bdef
c8
45 -6 44 -5 45 -5 44 -5 45 -6 45 -5 44 -6 45 -6
45 -6 44 -6 45 -6 44 -6 45 -6 45 -7 44 -6 45 -7
45 -7 44 -7 45 -7 44 -7 45 -7 45 -8 44 -7 45 -8
45 -8 44 -8 45 -9 44 -8 45 -9 45 -9 44 -9 45 -9
45 -10 44 -9 45 -10 44 -10 45 -10 45 -11 44 -11 45 -11
45 -11 44 -11 45 -12 44 -12 45 -13 45 -12 44 -13 45 -13
45 -14 44 -14 45 -14 44 -15 45 -15 45 -15 44 -16 45 -16
45 -16 44 -17 45 -17 44 -18 45 -19 45 -18 44 -20 45 -19
45 -21 44 -20 45 -22 45 -22 44 -23 45 -23 44 -24 45 -24
45 -26 44 -26 45 -26 44 -28 45 -28 45 -30 44 -30 45 -31
45 -32 44 -33 45 -34 44 -35 45 -36 45 -37 44 -39 45 -39
45 -41 44 -43 45 -43 44 -45 45 -47 45 -48 44 -50 45 -52
45 -53 44 -55 45 -57 1836 2695 100 MP stroke
44 -59 45 -61 45 -64 44 -65 45 -68 45 -71 44 -73 45 -75
44 -79 45 -81 45 -84 44 -88 45 -90 45 -94 44 -98 45 -101
44 -106 45 -109 45 -113 44 -118 45 -122 899 4514 22 MP stroke
gr
c8
0 sg
%%IncludeResource: font Symbol
/Symbol /ISOLatin1Encoding 180 FMSR
3519 4989 mt
(a) s
%%IncludeResource: font Times-Roman
/Times-Roman /ISOLatin1Encoding 180 FMSR
494 2899 mt -90 rotate
(|V) s
90 rotate
%%IncludeResource: font Times-Roman
/Times-Roman /ISOLatin1Encoding 144 FMSR
584 2734 mt -90 rotate
(max) s
90 rotate
404 2734 mt -90 rotate
(aux) s
90 rotate
%%IncludeResource: font Times-Roman
/Times-Roman /ISOLatin1Encoding 180 FMSR
494 2487 mt -90 rotate
(| \(pu\)) s
90 rotate
2397 169 mt
(Maximum Output Voltage |V) s
%%IncludeResource: font Times-Roman
/Times-Roman /ISOLatin1Encoding 144 FMSR
4485 259 mt
(aux) s
%%IncludeResource: font Times-Roman
/Times-Roman /ISOLatin1Encoding 180 FMSR
4692 169 mt
(|) s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
|