Overview
Comment: | Changed name from ES to FP |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8d3e80c89bfaea6c27f7eaac63a27be2 |
User & Date: | gawthrop@users.sourceforge.net on 1998-06-29 09:56:03 |
Other Links: | branch diff | manifest | tags |
Context
1998-06-29
| ||
09:56:24 | Changed name to FP from ES check-in: 0c864405c8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:56:03 | Changed name from ES to FP check-in: 8d3e80c89b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:56:02 | Initial revision check-in: 19705ae149 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/FP_eqn.m from [d3b833050d] to [c0c217a96a].
|
| | | | | > > > | 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 | function structure = FP_eqn(name,bond_number,bonds,direction,cr,args, ... structure,eqnfile); % FP_eqn - equations for FP component % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function FP_eqn % FP_eqn(name,bond_number,bonds,direction,cr,args, ... % structure,eqnfile); % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% 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 % %% Corrected enthalpy-entropy conversion -- use temp on the entropy side. % %% % %% Revision 1.1 1998/02/25 15:03:51 peterg |
︙ | ︙ | |||
34 35 36 37 38 39 40 | if nargin<6 eqnfile = 'stdout'; end; % Check that there are exactly two bonds. ports = 2; | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | if nargin<6 eqnfile = 'stdout'; end; % Check that there are exactly two bonds. ports = 2; if check_bonds(bonds,ports,'FP')==0 return end % There are 2 ports; extract the information e_bond = bonds(1,:); s_bond = bonds(2,:); |
︙ | ︙ |