11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
+
+
+
+
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.286 2000/12/01 14:18:44 peterg
## -partition now partially works up to cse.m
## but need to think about indexing, struc files etc for subsystems.
##
## Revision 1.285 2000/11/27 11:51:21 peterg
## Fixed a few pdf /fig bugs
##
## Revision 1.284 2000/11/27 10:33:35 peterg
## -pdf option now coerces ps-->pdf
##
## Revision 1.283 2000/11/24 15:11:50 peterg
|
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
|
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
|
-
+
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
$1_csex.r: $1_cse.r
touch $1_csex.r
$1_cseo.r: $1_cse.r
touch $1_cseo.r
#$1_cse.m: $1_def.r $1_cse.r $1_sympar.r $1_subs.r
# cse_r2m $1; matlab_tidy $1_cse.m
${sys}_cse.m: ${Subsystem}_def.r ${Subsystem}_cse.r ${Subsystem}_sympar.txt
${sys}_cse.m: ${Subsystem}_def.r ${Subsystem}_cse.r ${sys}_sympars.txt
ifneq ($partition,)
echo Doing subsystems
## mtt_cp_subrep ${sys} sympar txt
mtt_cp_subrep ${sys} sympars txt
mtt_make_subsystems ${sys} cse m
endif
mtt_r2m -parameters ${Subsystem} cse;# matlab_tidy $1_cse.m; matlab_tidy $1_cseo.m;
$1_csex.m: $1_def.r $1_csex.r $1_sympars.txt
mtt_r2m $1 csex
$1_cseo.m: $1_def.r $1_cseo.r $1_sympars.txt
mtt_r2m $optimise -parameters $1 cseo;# matlab_tidy $1_cse.m; matlab_tidy $1_cseo.m;
mtt_r2m ${Subsystem} cse;# matlab_tidy $1_cse.m; matlab_tidy $1_cseo.m;
${sys}_cseo.m: ${Subsystem}_def.r ${Subsystem}_cseo.r ${sys}_sympars.txt
ifneq ($partition,)
echo Doing subsystems
mtt_cp_subrep ${sys} sympars txt
mtt_make_subsystems ${sys} cseo m
endif
mtt_r2m ${Subsystem} cseo
${sys}_csex.m: ${Subsystem}_def.r ${Subsystem}_csex.r ${sys}_sympars.txt
ifneq ($partition,)
echo Doing subsystems
mtt_cp_subrep ${sys} sympars txt
mtt_make_subsystems ${sys} csex m
endif
mtt_r2m ${Subsystem} csex
$1_cse.tex: $1_cse.r $1_sympar.r $1_simp.r
cse_r2tex $1 $2; latex_tidy $1_cse.tex
#SUMMARY scse sensitivity constrained-state equations (r)
#SUMMARY scse sensitivity constrained-state equations (tex)
#SUMMARY scse sensitivity constrained-state equations (ps)
|