-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathid_tune_pe.m
442 lines (388 loc) · 14.6 KB
/
id_tune_pe.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
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
function id_tune_pe(flag,t,y_norm,t_id,y_id,id_backup)
global ptv_str_lang
if(flag == 's0' )
% Close yet opened ID_TUNE figures
%
close(findobj('Tag','ptt_id_tune'))
close(findobj('Tag','ptt_id_tune2'))
if (y_norm(end) < 0)
% XXX
% tang_temp = tang(1,:);
% tang(1,:) = tang(2,:);
% tang(2,:) = tang_temp;
end
% Figure
%
hf1 = figure;
%
size_fig = get(hf1,'Position');
size_fig(3) = size_fig(3) + 250;
set(hf1,'Position',size_fig);
set(hf1,'Tag','ptt_id_tune')
set(hf1,'Color','white')
%
plot(t,y_norm,t_id,y_id)
%
% AXIS
%
ax_y_min = min(y_norm);
ax_y_min = ax_y_min(1);
ax_y_max = max(y_norm);
ax_y_max = ax_y_max(1);
axis([t(1) t(end) ax_y_min*1.05 ax_y_max*1.05])
% OK
%
b1 = uicontrol('Style','push',...
'Units','Normalized',...
'Position',[0.02 0.5 0.06 0.06],...
'Fontweight','bold',...
'String',ptg_string(3,1,ptv_str_lang),...
'CallBack','close,close(findobj(''Tag'',''ptt_plot'')),close(findobj(''Tag'',''ptt_id_tune2'')),naspat=''id_param'';global K T_km ksi_km D_km;[K,M] = get_tf(2,ksi_km,K,T_km); param_km; typ_i2 = 2;id_param');
set(b1,'Tag','ptt_data_pe')
% BACK
%
b2 = uicontrol('Style','push',...
'Units','Normalized',...
'Position',[0.02 0.4 0.06 0.06],...
'String',ptg_string(3,2,ptv_str_lang),...
'CallBack','close,close(findobj(''Tag'',''ptt_plot'')),close(findobj(''Tag'',''ptt_id_tune2'')),K=id_backup(1);T_km=id_backup(2);ksi_km=id_backup(3);D_km=id_backup(4);param_km;typ_i2 = 2;id_param');
% PREC+
%
b3 = uicontrol('Style','push',...
'Units','Normalized',...
'Position',[0.02 0.3 0.06 0.06],...
'String',ptg_string(3,25,ptv_str_lang),...
'CallBack','slider_step = get(findobj(''Tag'',''ptt_s1''),''Sliderstep'');slider_step=slider_step/10;set(findobj(''Tag'',''ptt_s1''),''Sliderstep'',slider_step),set(findobj(''Tag'',''ptt_s2''),''Sliderstep'',slider_step);');
% Initial Values of the structure DATA_PE
%
[y_max, y_min, t_max, t_min, t_D] = ptf_min_max_data_pe(t,y_norm);
data_pe.y_max = y_max;
data_pe.y_min = y_min;
data_pe.t_max = t_max;
data_pe.t_min = t_min;
data_pe.t_D = t_D;
set(findobj('Tag','ptt_data_pe'),'userdata')
sliderstep = 0.005;
ax = axis;
% Y_MAX
%
s1 = uicontrol('Tag','ptt_s1',...
'Units','Normalized',...
'Position',[0.92 0.07 0.03 0.9],...
'Style','Slider',...
'Min',min([ax(3),ax(4)]),'Max',max([ax(3),ax(4)]),...
'Sliderstep',[sliderstep, sliderstep*10],...
'CallBack','id_tune_pe(''s1'',t,y_norm,t_id,y_id,id_backup)');
set(findobj('Tag','ptt_s1'),'Value',data_pe.y_max)
% Y_MIN
%
s2 = uicontrol('Tag','ptt_s2',...
'Units','Normalized',...
'Position',[0.96 0.07 0.03 0.9],...
'Style','Slider',...
'Min',min([ax(3),ax(4)]),'Max',max([ax(3),ax(4)]),...
'Sliderstep',[sliderstep, sliderstep*10],...
'CallBack','id_tune_pe(''s2'',t,y_norm,t_id,y_id,id_backup)');
set(findobj('Tag','ptt_s2'),'Value',data_pe.y_min)
% T_MAX
%
s3 = uicontrol('Tag','ptt_s3',...
'Units','Normalized',...
'Position',[0.11 0.005 0.82 0.03],...
'Style','Slider',...
'Min',t(1),'Max',t(end),...
'Sliderstep',[sliderstep, sliderstep*10],...
'CallBack','id_tune_pe(''s3'',t,y_norm,t_id,y_id,id_backup)');
set(findobj('Tag','ptt_s3'),'Value',data_pe.t_max)
% T_MIN
%
s4 = uicontrol('Tag','ptt_s4',...
'Units','Normalized',...
'Position',[0.11 0.035 0.82 0.03],...
'Style','Slider',...
'Min',t(1),'Max',t(end),...
'Sliderstep',[sliderstep, sliderstep*10],...
'CallBack','id_tune_pe(''s4'',t,y_norm,t_id,y_id,id_backup)');
set(findobj('Tag','ptt_s4'),'Value',data_pe.t_min)
% TIME DELAY
%
s5 = uicontrol('Tag','ptt_s5',...
'Units','Normalized',...
'Position',[0.11 0.94 0.82 0.05],...
'Style','Slider',...
'Min',t(1),'Max',t(end),...
'Sliderstep',[sliderstep, sliderstep*10],...
'CallBack','id_tune_pe(''s5'',t,y_norm,t_id,y_id,id_backup)');
set(findobj('Tag','ptt_s5'),'Value',data_pe.t_D)
t1 = uicontrol('Style','text',...
'Tag','ptt_t1',...
'Position',[0 size_fig(4)-25 50 18],...
'String',data_pe.y_max,...
'BackgroundColor',get(gcf,'Color'));
t1_y = uicontrol('Style','text',...
'Tag','ptt_t1_y',...
'Position',[0 size_fig(4)-55 50 18],...
'String',data_pe.y_max,...
'BackgroundColor',get(gcf,'Color'));
t2 = uicontrol('Style','text',...
'Tag','ptt_t2',...
'Position',[0 30 50 18],...
'String',data_pe.y_max,...
'BackgroundColor',get(gcf,'Color'));
t2_y = uicontrol('Style','text',...
'Tag','ptt_t2_y',...
'Position',[0 0 50 18],...
'String',data_pe.y_max,...
'BackgroundColor',get(gcf,'Color'));
% FIGURE 2 - square error evaluation
%
hf2 = figure;
set(hf2,'Tag','ptt_id_tune2')
set(hf2,'Position',[size_fig(1) size_fig(2)-size_fig(4)/2-55 size_fig(3) size_fig(4)/2]);
set(gcf,'Color','white')
xlabel(ptg_string(10,3,ptv_str_lang))
ylabel(ptg_string(10,19,ptv_str_lang))
%
bar(t,(y_norm - y_id),'r');
xlabel(ptg_string(10,3,ptv_str_lang))
ylabel(ptg_string(10,19,ptv_str_lang))
%
% AXIS
%
ax_y_min = min((y_norm - y_id));
ax_y_min = ax_y_min(1);
ax_y_max = max((y_norm - y_id));
ax_y_max = ax_y_max(1);
axis([t(1) t(end) ax_y_min*1.05-1e-8 ax_y_max*1.05+1e-8])
% Square Error
%
% Initial value of square error SE
%
se = (y_norm - y_id)'*(y_norm - y_id)/(sum(y_norm.^2));
%
t3 = uicontrol('Style','text',...
'Tag','ptt_t3',...
'Units','Normalized',...
'Position',[0.75 0.8 0.15 0.08],...
'String',num2str(se),...
'BackgroundColor',get(gcf,'Color'));
% Set value of square error
%
set(findobj('Tag','ptt_t3'),'String',num2str(se));
else
if(flag == 's1')
%
data_pe = get(findobj('Tag','ptt_data_pe'),'userdata');
%
% Load New Values
%
y_max = get(findobj('Tag','ptt_s1'),'Value');
y_min = get(findobj('Tag','ptt_s2'),'Value');
%
% Chek New Values
%
if ( (y_id(end) > 0) & (y_min < y_max) ) | ...
( (y_id(end) < 0) & (y_min > y_max) )
%
% Set New Valid Values
%
data_pe.y_max = get(findobj('Tag','ptt_s1'),'Value');
data_pe.y_min = get(findobj('Tag','ptt_s2'),'Value');
data_pe.t_max = get(findobj('Tag','ptt_s3'),'Value');
data_pe.t_min = get(findobj('Tag','ptt_s4'),'Value');
data_pe.t_D = get(findobj('Tag','ptt_s5'),'Value');
set(findobj('Tag','ptt_data_pe'),'userdata',data_pe);
else
%
% Set Last Valid Values
%
set(findobj('Tag','ptt_s1'),'Value',data_pe.y_max);
set(findobj('Tag','ptt_s2'),'Value',data_pe.y_min);
end
elseif(flag == 's2')
%
data_pe = get(findobj('Tag','ptt_data_pe'),'userdata');
%
% Load New Values
%
y_max = get(findobj('Tag','ptt_s1'),'Value');
y_min = get(findobj('Tag','ptt_s2'),'Value');
%
% Chek New Values
%
if ( (y_id(end) > 0) & (y_min < y_max) ) | ...
( (y_id(end) < 0) & (y_min > y_max) )
%
% Set New Valid Values
%
data_pe.y_max = get(findobj('Tag','ptt_s1'),'Value');
data_pe.y_min = get(findobj('Tag','ptt_s2'),'Value');
data_pe.t_max = get(findobj('Tag','ptt_s3'),'Value');
data_pe.t_min = get(findobj('Tag','ptt_s4'),'Value');
data_pe.t_D = get(findobj('Tag','ptt_s5'),'Value');
set(findobj('Tag','ptt_data_pe'),'userdata',data_pe);
else
%
% Set Last Valid Values
%
set(findobj('Tag','ptt_s1'),'Value',data_pe.y_max);
set(findobj('Tag','ptt_s2'),'Value',data_pe.y_min);
end
elseif(flag == 's3')
%
data_pe = get(findobj('Tag','ptt_data_pe'),'userdata');
%
% Load New Values
%
t_max = get(findobj('Tag','ptt_s3'),'Value');
t_min = get(findobj('Tag','ptt_s4'),'Value');
t_D = get(findobj('Tag','ptt_s5'),'Value');
%
% Chek New Values
%
if(t_D < t_max) & (t_max < t_min)
%
% Set New Valid Values
%
data_pe.t_max = get(findobj('Tag','ptt_s3'),'Value');
data_pe.t_min = get(findobj('Tag','ptt_s4'),'Value');
data_pe.t_D = get(findobj('Tag','ptt_s5'),'Value');
data_pe.y_max = get(findobj('Tag','ptt_s1'),'Value');
data_pe.y_min = get(findobj('Tag','ptt_s2'),'Value');
set(findobj('Tag','ptt_data_pe'),'userdata',data_pe);
else
%
% Set Last Valid Values
%
set(findobj('Tag','ptt_s3'),'Value',data_pe.t_max);
set(findobj('Tag','ptt_s4'),'Value',data_pe.t_min);
set(findobj('Tag','ptt_s5'),'Value',data_pe.t_D);
end
elseif(flag == 's4')
%
data_pe = get(findobj('Tag','ptt_data_pe'),'userdata');
%
% Load New Values
%
t_max = get(findobj('Tag','ptt_s3'),'Value');
t_min = get(findobj('Tag','ptt_s4'),'Value');
t_D = get(findobj('Tag','ptt_s5'),'Value');
%
% Chek New Values
%
if(t_D < t_max) & (t_max < t_min)
%
% Set New Valid Values
%
data_pe.y_max = get(findobj('Tag','ptt_s1'),'Value');
data_pe.y_min = get(findobj('Tag','ptt_s2'),'Value');
data_pe.t_max = get(findobj('Tag','ptt_s3'),'Value');
data_pe.t_min = get(findobj('Tag','ptt_s4'),'Value');
data_pe.t_D = get(findobj('Tag','ptt_s5'),'Value');
set(findobj('Tag','ptt_data_pe'),'userdata',data_pe);
else
%
% Set Last Valid Values
%
set(findobj('Tag','ptt_s3'),'Value',data_pe.t_max);
set(findobj('Tag','ptt_s4'),'Value',data_pe.t_min);
set(findobj('Tag','ptt_s5'),'Value',data_pe.t_D);
end
elseif(flag == 's5')
%
data_pe = get(findobj('Tag','ptt_data_pe'),'userdata');
%
% Load New Values
%
t_max = get(findobj('Tag','ptt_s3'),'Value');
t_min = get(findobj('Tag','ptt_s4'),'Value');
t_D = get(findobj('Tag','ptt_s5'),'Value');
%
% Chek New Values
%
if(t_D < t_max) & (t_max < t_min)
%
% Set New Valid Values
%
data_pe.y_max = get(findobj('Tag','ptt_s1'),'Value');
data_pe.y_min = get(findobj('Tag','ptt_s2'),'Value');
data_pe.t_max = get(findobj('Tag','ptt_s3'),'Value');
data_pe.t_min = get(findobj('Tag','ptt_s4'),'Value');
data_pe.t_D = get(findobj('Tag','ptt_s5'),'Value');
set(findobj('Tag','ptt_data_pe'),'userdata',data_pe);
else
%
% Set Last Valid Values
%
set(findobj('Tag','ptt_s3'),'Value',data_pe.t_max);
set(findobj('Tag','ptt_s4'),'Value',data_pe.t_min);
set(findobj('Tag','ptt_s5'),'Value',data_pe.t_D);
end
end
% Load Values for Identification
%
data_pe.y_max = get(findobj('Tag','ptt_s1'),'Value');
data_pe.y_min = get(findobj('Tag','ptt_s2'),'Value');
data_pe.t_max = get(findobj('Tag','ptt_s3'),'Value');
data_pe.t_min = get(findobj('Tag','ptt_s4'),'Value');
data_pe.t_D = get(findobj('Tag','ptt_s5'),'Value');
% Set Text
%
set(findobj('Tag','ptt_t1'),'String',get(findobj('Tag','ptt_s3'),'Value'));
set(findobj('Tag','ptt_t1_y'),'String',get(findobj('Tag','ptt_s1'),'Value'));
set(findobj('Tag','ptt_t2'),'String',get(findobj('Tag','ptt_s4'),'Value'));
set(findobj('Tag','ptt_t2_y'),'String',get(findobj('Tag','ptt_s2'),'Value'));
% Identification
%
global K T_km ksi_km D_km
% [K,T_km,ksi_km,D_km] = km_sustavy(t0,t_D,t1,t2,y_0,y_max,y_min,y_nek,u_0,u_nek,cas_simulacie)
[K,T_km,ksi_km,D_km] = km_sustavy(t(1),data_pe.t_D,data_pe.t_max,data_pe.t_min,y_norm(1),data_pe.y_max,data_pe.y_min,y_norm(end),0,1,t(end));
[num,den] = get_tf(2,ksi_km,K,T_km);
sys = tf(num,den,'ioDelay',D_km);
[y_id,t_id] = step(sys,t);
y_id = [y_id];
t_id = t;
% Odoslanie identifikovanych udajov do okna PROCESS MODEL
%
if (isempty(findobj('Tag','ppt_id_param')) ~= 0)
set(findobj('Tag','ptt_K'),'String',num2str(K));
set(findobj('Tag','ptt_T_km'),'String',num2str(T_km));
set(findobj('Tag','ptt_ksi_km'),'String',num2str(ksi_km));
set(findobj('Tag','ptt_D_km'),'String',num2str(D_km));
end
figure(gcf)
% XXX
% plot(t,y_norm,[t(1);t(end)],[bound_pe(1);bound_pe(1)]/10,'-.',[t(1);t(end)],[bound_pe(2);bound_pe(2)]/10,':',t_id,y_id);
plot(t,y_norm,t_id,y_id);
axis([t(1) t(end) min(y_norm)*1.05 max(y_norm)*1.05])
% SQARE ERROR
%
hf2 = findobj('Tag','ptt_id_tune2');
if(isempty(hf2) ~= 1)
% Square error calcualtion
%
se_old = get(findobj('Tag','ptt_t3'),'String');
se_old = str2num(se_old);
se = (y_norm - y_id)'*(y_norm - y_id)/(sum(y_norm.^2));
% Backgroundcolor of square error
%
if(se > se_old)
set(findobj('Tag','ptt_t3'),'BackgroundColor','red');
elseif(se < se_old)
set(findobj('Tag','ptt_t3'),'BackgroundColor','green');
else
set(findobj('Tag','ptt_t3'),'BackgroundColor',get(gcf,'Color'));
end
% Set value of square error
%
set(findobj('Tag','ptt_t3'),'String',num2str(se));
% Figure PTT_ID_TUNE2
%
figure(hf2)
bar(t,(y_norm - y_id),'r');
xlabel(ptg_string(10,3,ptv_str_lang))
ylabel(ptg_string(10,19,ptv_str_lang))
axis([t(1) t(end) min((y_norm - y_id))*1.05 max((y_norm - y_id))*1.05])
end
end
end