Overview
| Comment: | Added defaults (with no constitutive relationship) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
cd3a4f00be745fa5dec0ebc38a91da88 |
| User & Date: | gawthrop@users.sourceforge.net on 1996-09-12 19:28:11.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1996-09-12
| ||
| 19:28:55 | Added rcs header. check-in: f5dd5a1e8d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 19:28:11 | Added defaults (with no constitutive relationship) check-in: cd3a4f00be user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 19:26:57 | Initial revision check-in: 800dc2849e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/R_eqn.m
from [b028e7c756]
to [56cc6513ff].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | % structure,eqnfile) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.2 1996/09/12 13:12:04 peter % %% Removed an fprintf that was a mistake. % %% % %% Revision 1.1 1996/09/12 11:00:56 peter % %% Initial revision % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | > > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | % structure,eqnfile) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.3 1996/09/12 16:40:45 peter % %% Now does a default (when no constitutive relationship) with a unit % %% constitutive relationship on each port. % %% % %% Revision 1.2 1996/09/12 13:12:04 peter % %% Removed an fprintf that was a mistake. % %% % %% Revision 1.1 1996/09/12 11:00:56 peter % %% Initial revision % %% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| ︙ | ︙ | |||
36 37 38 39 40 41 42 |
for outport = 1:ports
outcause = -bonds(outport,1);
outnumber = bond_number(outport);
if length(cr)>0
incause = bonds(:,1);
| | | | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
for outport = 1:ports
outcause = -bonds(outport,1);
outnumber = bond_number(outport);
if length(cr)>0
incause = bonds(:,1);
inport = 1:ports;
inbond = bond_number;
else % default if no cr: unit cr on each port
incause = bonds(outport,1);
inport = outport;
inbond = outnumber;
end;
eqn = equation(name,cr,args,outnumber,outcause,outport, ...
inbond,incause,inport);
fprintf(eqnfile, '%s',eqn);
end;
|