Overview
Comment: | Reinstated the infofilenum parameter. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
de9e58a6eb494046ae5af600243a2fca |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-08 12:33:51 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-08
| ||
14:42:52 |
Removed the annoying info message - it causes problems with big systems check-in: 9f2973998a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:33:51 | Reinstated the infofilenum parameter. check-in: de9e58a6eb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:33:54 | Replace mtt_info by mtt_error when appropriate check-in: 10131d4ff7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/cbg2ese.m from [6933fd7ec1] to [e65d13a9be].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | function structure = cbg2ese(system_name, system_type, system_cr, ... system_args, full_name, full_name_repetition, ... repetition,... |
︙ | |||
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 36 | + + + + | % Structure matrix [states,nonstates,inputs,outputs,zero_outputs] % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.22 1998/07/04 07:10:27 peterg % %% Don't evaluate alias if no constitutive relationship or args and write % %% message. % %% % %% Revision 1.21 1998/07/03 18:58:58 peterg % %% Put arg alias stuff within function alias_args % %% Called recursively to handle arithmetic expressions % %% % %% Revision 1.20 1998/07/03 14:39:09 peterg % %% Added info messages a bit busy now! % %% |
︙ | |||
162 163 164 165 166 167 168 | 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | - + - + | % Set up the counters for the labelled SS. These are, by definition, % encountered first and so the counters will not be messed up by subsystems. local_u_index = 0; local_y_index = 0; if (length(system_args)==0) mtt_info(sprintf("No arguments given so no argument aliasing done for system %s(%s)",\ |
︙ | |||
217 218 219 220 221 222 223 | 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | - + | ports = length(bond_list); if repetitions>1 port_pairs = ports/2; if round(port_pairs)~=port_pairs; mtt_info(['Repeated component ', comp_name, ... |
︙ | |||
255 256 257 258 259 260 261 | 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 | - + | name_r = full_name_repetition; eqn_name = [comp_type, '_eqn'] if exist(eqn_name)~=2 % Try a compound component disp('---PUSH---'); structure = cbg2ese(comp_name, comp_type, cr, args, ... full_name, full_name_repetition, ... |
︙ |