Overview
| Comment: | Complete rewrite |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
99eaa00ae684936f0a7265a6ac49fe7a |
| User & Date: | gawthrop@users.sourceforge.net on 2002-05-14 15:43:41.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-05-14
| ||
| 20:19:06 | Fixed some memory leaks. check-in: 17f786bed8 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 15:43:41 | Complete rewrite check-in: 99eaa00ae6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2002-05-13
| ||
| 22:46:30 | Plant can now have multiple inputs. check-in: faa8358236 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/rep/nppp_rep.make
from [ad1e223858]
to [ca75fec30a].
1 2 3 4 5 6 | 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 | + + - + + + + - - + + - - - - - - - + + + + + + + + + + + + + + + - - - + + + + + - - - + + + + + + - + - - + - + - - + - + - - + - + - - + - - - + + + + + - - - + + + + + - - + + + - + - + - - + - + - - + - + - - + - + - - + - + - - + - + - - + - + + + + |
# -*-makefile-*-
# Makefile for representation nppp
# File nppp_rep.make
#Copyright (C) 2000,2001,2002 by Peter J. Gawthrop
model_reps = ${SYS}_sympar.m ${SYS}_simpar.m ${SYS}_state.m\
${SYS}_numpar.m ${SYS}_input.m ${SYS}_ode2odes.m\
|
Modified mttroot/mtt/lib/rep/nppp_rep.sh
from [dd3ac0c981]
to [55671a0d9d].
1 2 3 4 5 6 7 8 9 10 | 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 | - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - | #! /bin/sh ## nppp_rep.sh ## DIY representation "nppp" for mtt # Copyright (C) 2002 by Peter J. Gawthrop sys=$1 rep=nppp lang=$2 mtt_parameters=$3 |
| ︙ | |||
62 63 64 65 66 67 68 | 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 | - - - - - - - |
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]';
|
| ︙ | |||
159 160 161 162 163 164 165 166 167 168 169 170 171 172 | 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 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + |
system("gv ${sys}_y.eps&");
system("gv ${sys}_u.eps&");
endif
endfunction
EOF
}
make_nppp_numpar() {
echo Creating ${nppp_numpar_file}
cat > ${sys}_nppp_numpar.m <<EOF
function [last, ppp_names, par_names, A_u, A_w, w, Q, extras] = ${sys}_nppp_numpar
## usage: [last, ppp_names, par_names, A_u, A_w, w, Q, extras] = ${sys}_nppp_numpar ()
##
##
## Last time of run
last = 10;
## Specify basis functions
A_w = zeros(1,1);
n_ppp = ${nu};
A_u = ppp_aug(A_w,laguerre_matrix(n_ppp-1,2.0));
## Names of ppp parameters
ppp_names = "";
for i=1:n_ppp
name = sprintf("ppp_%i", i);
ppp_names = [ppp_names; name];
endfor
## Estimated parameters
par_names = [];
## Weights
Q = ones(${ny},1);
## Setpoint
w = zeros(${ny},1); w(1) = 1;
## Set up optional parameters
extras.criterion = 1e-3;
extras.emulate_timing = 0;
extras.max_iterations = 15;
extras.simulate = 1;
extras.v = 1e-6;
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'
|
| ︙ | |||
193 194 195 196 197 198 199 | 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 | + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + |
## 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() {
|