Overview
Comment: | Replaced e_ by f_ s_ by p_ |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1633562f682cf11823185dd5ba8a5192 |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-07 15:00:04 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-07
| ||
15:01:09 | Named ports correctely f --> 1, p --> 2 check-in: 4d864723bb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:00:04 |
Replaced e_ by f_ s_ by p_ check-in: 1633562f68 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-07-04
| ||
11:38:51 | Version 3.0-- (Seascale) check-in: c29376bb27 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/FP_eqn.m from [c0c217a96a] to [61ef987daa].
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.1 1998/06/29 09:53:22 peterg % %% Initial revision % %% % %% Revision 1.3 1998/03/27 10:59:43 peterg % %% Zapped t_0 again ... % %% % %% Revision 1.2 1998/02/25 16:59:56 peterg | > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.2 1998/06/29 09:54:16 peterg % %% Changed name from ES to FP % %% % %% Revision 1.1 1998/06/29 09:53:22 peterg % %% Initial revision % %% % %% Revision 1.3 1998/03/27 10:59:43 peterg % %% Zapped t_0 again ... % %% % %% Revision 1.2 1998/02/25 16:59:56 peterg |
︙ | ︙ | |||
43 44 45 46 47 48 49 | ports = 2; if check_bonds(bonds,ports,'FP')==0 return end % There are 2 ports; extract the information | | | | | | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | ports = 2; if check_bonds(bonds,ports,'FP')==0 return end % There are 2 ports; extract the information f_bond = bonds(1,:); p_bond = bonds(2,:); % The efforts are the same - but the enthalpy side has relative T if f_bond(1)==1 %effort imposed on the enthalpy bond % fprintf(eqnfile,'%s := %s + t_0;\n' , ... fprintf(eqnfile,'%s := %s;\n' , ... varname(name,bond_number(2), 1), ... varname(name,bond_number(1), 1) ); else %effort imposed on the entropy bond % fprintf(eqnfile,'%s := %s - t_0;\n' , ... fprintf(eqnfile,'%s := %s;\n' , ... varname(name,bond_number(1), 1), ... varname(name,bond_number(2), 1) ); end; % The flows need to be converted - use the absolute temp on the % entropy side if f_bond(2)==-1 %flow imposed on the enthalpy bond fprintf(eqnfile,'%s := %s/%s;\n' , ... varname(name,bond_number(2), -1), ... varname(name,bond_number(1), -1), ... varname(name,bond_number(2), 1) ); else % flow imposed on the entropy bond fprintf(eqnfile,'%s := %s*%s;\n' , ... varname(name,bond_number(1), -1), ... varname(name,bond_number(2), -1), ... varname(name,bond_number(2), 1) ); end; |