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
|
## Some names
target=${sys}_${rep}.${lang}
def_file=${sys}_def.r
dat2_file=${sys}_nppp.dat2
dat2s_file=${sys}_nppps.dat2
nppp_numpar_file=${sys}_nppp_numpar.m
## Get system information
if [ -f "${def_file}" ]; then
echo Using ${def_file}
else
mtt -q ${sys} def r
fi
ny=`mtt_getsize $1 y`
nu=`mtt_getsize $1 u`
## Help documentation
help_short() {
cat<<EOF
Nonlinear predictive pole placement
EOF
}
help_long() {
cat<<EOF
Details go here
EOF
}
## Make the _nppp.m file
make_nppp() {
filename=${sys}_${rep}.m
echo Creating ${filename}
cat > ${filename} <<EOF
|
>
|
|
|
|
<
<
|
>
|
<
<
<
>
>
<
|
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
|
## Some names
target=${sys}_${rep}.${lang}
def_file=${sys}_def.r
dat2_file=${sys}_nppp.dat2
dat2s_file=${sys}_nppps.dat2
nppp_numpar_file=${sys}_nppp_numpar.m
option_file=${sys}_nppp_mtt_options.txt
## Get system information
if [ -f "${def_file}" ]; then
echo Using ${def_file}
else
mtt -q ${sys} def r
fi
ny=`mtt_getsize $1 y`
nu=`mtt_getsize $1 u`
check_new_options() {
if [ -f "${option_file}" ]; then
old_options=`cat ${option_file}`
if [ "${mtt_options}" != "${old_options}" ]; then
echo ${mtt_options} > ${option_file}
fi
else
echo ${mtt_options} > ${option_file}
fi
}
## Make the _nppp.m file
make_nppp() {
filename=${sys}_${rep}.m
echo Creating ${filename}
cat > ${filename} <<EOF
|
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
printf("Open-loop interval %3.2f \n", simpar.last);
printf(" -- using info in ${sys}_simpar.txt\n");
printf("PPP optimisation from %3.2f to %3.2f\n", simpars.first, simpars.last);
printf(" -- using info in s${sys}_simpar.txt\n");
endif
t_horizon = [simpars.first+simpars.dt:simpars.dt:simpars.last]';
w_s = ones(size(t_horizon))*w';
## Setup the indices of the adjustable stuff
if nargin<2
i_ppp = []
else
i_ppp = ppp_indices (ppp_names,sympar,sympars); # Parameters
endif
|
|
|
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
printf("Open-loop interval %3.2f \n", simpar.last);
printf(" -- using info in ${sys}_simpar.txt\n");
printf("PPP optimisation from %3.2f to %3.2f\n", simpars.first, simpars.last);
printf(" -- using info in s${sys}_simpar.txt\n");
endif
t_horizon = [simpars.first+simpars.dt:simpars.dt:simpars.last]';
w_s = ones(length(t_horizon)-1,1)*w';
## Setup the indices of the adjustable stuff
if nargin<2
i_ppp = []
else
i_ppp = ppp_indices (ppp_names,sympar,sympars); # Parameters
endif
|
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
|
j=[];
for i = 1:length(T_open)
j = [j; find(T_open(i)*ones(size(t))==t)];
endfor
y_open = y(j,:);
u_open = u(j,:);
if extras.visual
## Plots
gset grid; xlabel "Time (sec)"; title "${sys}"
ty = [t y] ;
tu = [t u];
ty_open = [T_open y_open];
tu_open = [T_open u_open];
gplot tu \
title "u", tu_open with impulses title "Sample times"
figfig("${sys}_u","eps");
gplot ty \
title "y", ty_open with impulses title "Sample times"
figfig("${sys}_y","eps");
system("gv ${sys}_y.eps&");
system("gv ${sys}_u.eps&");
endif
endfunction
EOF
}
make_nppp_numpar() {
echo Creating ${nppp_numpar_file}
|
|
|
|
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
|
j=[];
for i = 1:length(T_open)
j = [j; find(T_open(i)*ones(size(t))==t)];
endfor
y_open = y(j,:);
u_open = u(j,:);
##if extras.visual
## Plots
gset grid; xlabel "Time (sec)"; title "${sys}"
ty = [t y] ;
tu = [t u];
ty_open = [T_open y_open];
tu_open = [T_open u_open];
gplot tu \
title "u", tu_open with impulses title "Sample times"
figfig("${sys}_u","eps");
gplot ty \
title "y", ty_open with impulses title "Sample times"
figfig("${sys}_y","eps");
system("gv ${sys}_y.eps&");
system("gv ${sys}_u.eps&");
##endif
endfunction
EOF
}
make_nppp_numpar() {
echo Creating ${nppp_numpar_file}
|
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
|
extras.verbose = 0;
extras.visual = 0;
endfunction
EOF
}
make_model() {
echo "Making sensitivity simulation for system ${sys} (lang ${lang})"
if [ "${lang}" = "oct" ]; then
oct='-oct'
fi
## System
mtt -q ${mtt_parameters} -stdin ${sys} sympar m
mtt -q ${mtt_parameters} -stdin ${sys} simpar m
mtt -q ${mtt_parameters} -stdin ${oct} ${sys} state ${lang}
mtt -q ${mtt_parameters} -stdin ${oct} ${sys} numpar ${lang}
mtt -q ${mtt_parameters} -stdin ${oct} ${sys} input ${lang}
mtt -q ${mtt_parameters} -stdin ${oct} ${sys} ode2odes ${lang}
mtt -q ${mtt_parameters} -stdin ${sys} sim m
## Sensitivity system
mtt -q ${mtt_parameters} -stdin -s s${sys} sympar m
mtt -q ${mtt_parameters} -stdin -s s${sys} simpar m
mtt -q ${mtt_parameters} -stdin ${oct} -s s${sys} state ${lang}
mtt -q ${mtt_parameters} -stdin ${oct} -s s${sys} numpar ${lang}
mtt -q ${mtt_parameters} -stdin ${oct} -s s${sys} input ${lang}
mtt -q ${mtt_parameters} -stdin ${oct} -s s${sys} ode2odes ${lang}
mtt -q ${mtt_parameters} -stdin -s s${sys} ssim m
## Additional system reps for PPP
mtt -q ${mtt_parameters} -stdin ${sys} sm m
mtt -q ${mtt_parameters} -stdin ${sys} def m
mtt -q ${mtt_parameters} -stdin -s s${sys} def m
}
make_dat2() {
## Inform user
echo Creating ${dat2_file}
## Use octave to generate the data
octave -q <<EOF
[last, ppp_names, par_names, A_u, A_w, w, Q, extras] = ${sys}_nppp_numpar;
[y,u,t] = ${sys}_nppp(last, ppp_names, par_names, A_u, A_w, w, Q, extras);
data = [t,y,u];
save -ascii ${dat2_file} data
EOF
}
case ${lang} in
help_short)
help_short
;;
help_long)
help_long
;;
numpar.m)
## Make the numpar stuff
make_nppp_numpar;
;;
m)
## Make the code
make_nppp;
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
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
|
extras.verbose = 0;
extras.visual = 0;
endfunction
EOF
}
make_dat2() {
## Inform user
echo Creating ${dat2_file}
## Use octave to generate the data
octave -q <<EOF
[last, ppp_names, par_names, A_u, A_w, w, Q, extras] = ${sys}_nppp_numpar;
[y,u,t] = ${sys}_nppp(last, ppp_names, par_names, A_u, A_w, w, Q, extras);
data = [t,y,u];
save -ascii ${dat2_file} data
EOF
}
case ${lang} in
numpar.m)
## Make the numpar stuff
make_nppp_numpar;
;;
m)
## Make the code
make_nppp;
|
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
gdat2fig ${sys}_${rep}
;;
ps)
fig2dev -Leps ${sys}_${rep}.fig > ${sys}_${rep}.ps
;;
view)
;;
*)
echo Language ${lang} not supported by nppp representation
exit 3
esac
|
|
>
|
|
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
gdat2fig ${sys}_${rep}
;;
ps)
fig2dev -Leps ${sys}_${rep}.fig > ${sys}_${rep}.ps
;;
view)
echo Viewing ${sys}_${rep}.ps
gv ${sys}_${rep}.ps&
;;
*)
echo Language ${lang} not supported by ${rep} representation
exit 3
esac
|