Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
cc875b2a3e389e803f94a46a89a58882 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-08 16:38:50 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-08
| ||
18:06:18 | Unified file naming scheme check-in: aeb605b914 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:38:50 | Initial revision check-in: cc875b2a3e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:38:19 | Changed to filenumer type of fprintf check-in: af4dbd7721 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/comp/simple/juneqn.m version [ecb065f1f5].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | function juneqn(bond_number,bonds,direction,cr,args,jun,eqnfile) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Equations for both effort and flow on either zero or one junctions if nargin<7 eqnfile = 'stdout'; end; % Same causality as junction column = (3-jun)/2; [causing_bond,n,other_bonds,m] = getindex(bonds(:,column),jun); for i=other_bonds' oneeqn(bond_number(i), jun, bond_number(causing_bond), jun, '', '',eqnfile); end; % Opposite causality to junction column = (3+jun)/2; [caused_bond,n,other_bonds,m] = getindex(bonds(:,column),jun); fprintf(eqnfile, '%s\t:= \n', varname(bond_number(caused_bond),-jun)); for i=other_bonds' term_sign = -direction(caused_bond,column)*direction(i,column); fprintf(eqnfile, '\t\t%s %s\n', sign2name(term_sign), ... varname(bond_number(i),-jun)); end; fprintf(eqnfile, ';\n'); |