Overview
| Comment: | Now uses __ to delimit subsystems in names. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
c1c164f8882c4dfe72d9f13f481a0cdd |
| User & Date: | gawthrop@users.sourceforge.net on 2003-03-13 15:19:04.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2003-03-13
| ||
| 15:32:37 | Octave m files for generating sorted equations _sese.r check-in: b2e26af53a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 15:19:04 | Now uses __ to delimit subsystems in names. check-in: c1c164f888 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 15:10:26 | Removed redundant final column check-in: edac6dabba user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/abg2cbg.m
from [5a064c61a6]
to [559de756c4].
| ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + + + | ## [bonds,status] = abg2cbg(system_name, system_type, full_name, port_bonds, infofile) ## ############################################################### ## ## Version control history ## ############################################################### ## ## $Id$ ## ## $Log$ ## ## Revision 1.49 2001/07/26 05:02:53 geraint ## ## Now writes cbg.fig when under-causal (again). ## ## ## ## Revision 1.48 2001/07/23 23:20:27 gawthrop ## ## Now only writes to type.sh and cbg.m when causality is completed. ## ## ## ## Revision 1.47 2000/03/20 16:45:26 peterg ## ## *** empty log message *** ## ## ## ## Revision 1.46 2000/02/17 16:14:49 peterg |
| ︙ | |||
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | + + + |
## ## Revision 1.2 1996/08/05 15:41:41 peter
## ## Now recursively does causality on subsystems.
## ##
## ## Revision 1.1 1996/08/04 17:55:55 peter
## ## Initial revision
## ##
## ###############################################################
mtt_info(sprintf("Completing causality for subsystem %s", system_name), infofile);
pc = '%';
sub_delim = "__"; # Subsystem delimiter
if nargin<1
system_name = 'no_name';
end;
if nargin<4
port_bonds = [];
end;
|
| ︙ | |||
224 225 226 227 228 229 230 | 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | - + |
# end;
## Create the (full) system name
if at_top_level
full_name = system_name;
system_type = system_name;
else
|
| ︙ |
Modified mttroot/mtt/bin/trans/m/cbg2ese.m
from [e931fd8820]
to [eb2ffdf046].
| ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + + + | ## Structure matrix [states,nonstates,inputs,outputs,zero_outputs] ## ############################################################### ## ## Version control history ## ############################################################### ## ## $Id$ ## ## $Log$ ## ## Revision 1.48 2003/03/13 15:10:26 gawthrop ## ## Removed redundant final column ## ## ## ## Revision 1.47 2003/02/28 09:12:17 gawthrop ## ## Two more columns in _stuc.txt: causality and subsystem name ## ## ## ## Revision 1.46 2002/08/20 15:51:17 gawthrop ## ## Update to work with ident DIY rep ## ## ## ## Revision 1.45 2002/05/22 09:15:03 gawthrop |
| ︙ | |||
181 182 183 184 185 186 187 188 189 190 191 192 193 194 | 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | + |
## disp("cbg2ese");
## system_name, system_type, full_name, repetition
pc = "%";
sub_delim = "__"; # Subsystem delimiter
unit_error = "Component %s connects inconsistent ports with units %s and %s"
unit_info = "Component %s connects ports with units %s and %s"
## Set up the names corresponding to the structure matrix.
structure_name = [
"state ",
"nonstate ",
|
| ︙ |