Overview
| Comment: | Explicit generation of strong-causality equations -- oneequation not used now. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f59877b57ce5c7c5d2ae9290e7d2f066 |
| User & Date: | gawthrop@users.sourceforge.net on 1996-12-05 10:02:45.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1996-12-05
| ||
| 10:05:28 |
Removed the Octave switch: empty_list_elements_ok = 1; This is now in .octaverc check-in: e4caa98b3c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 10:02:45 |
Explicit generation of strong-causality equations -- oneequation not used now. check-in: f59877b57c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 10:00:49 | Initial revision check-in: b535a1196e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/juneqn.m
from [dacd84f5a3]
to [ce2d92c546].
|
| > > > > > > > > > | > > > > > < < > > | > | | | 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 |
function juneqn(name,bond_number,bonds,direction,cr,args,jun,filenumber)
% juneqn - Equations for both effort and flow on either
% zero or one junctions
%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %%%%% Model Transformation Tools %%%%%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Matlab function juneqn
% juneqn(name,bond_number,bonds,direction,cr,args,jun,filenumber)
% Copyright (c) P.J. Gawthrop, 1996.
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.2 1996/08/08 18:09:10 peter
% %% Changed to finenumber format.
% %%
% %% Revision 1.1 1996/08/08 16:38:50 peter
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Same causality as junction
column = (3-jun)/2;
[causing_bond,n,other_bonds,m] = getindex(bonds(:,column),jun);
for i=other_bonds'
fprintf(filenumber, '%s \t:=\t%s;\n', ...
varname(name, bond_number(i),jun), ...
varname(name, bond_number(causing_bond),jun) ...
);
end;
% Opposite causality to junction
column = (3+jun)/2;
[caused_bond,n,other_bonds,m] = getindex(bonds(:,column),jun);
fprintf(filenumber, '%s\t:= \n', varname(name, bond_number(caused_bond),-jun));
for i=other_bonds'
term_sign = -direction(caused_bond,column)*direction(i,column);
fprintf(filenumber, '\t\t%s %s\n', sign2name(term_sign), ...
varname(name, bond_number(i),-jun));
end;
fprintf(filenumber, ';\n');
|