11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
% 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.
% %%
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
% structure,eqnfile)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.4 1996/09/12 19:28:11 peter
% %% Added defaults (with no constitutive relationship)
% %%
% %% 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.
% %%
|
48
49
50
51
52
53
54
55
56
57
58
59
60
|
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;
|
|
|
51
52
53
54
55
56
57
58
59
60
61
62
63
|
inbond = bond_number;
else % default if no cr: unit cr on each port
incause = bonds(outport,1);
inport = outport;
inbond = outnumber;
end;
eqn = equation("R",name,cr,args,outnumber,outcause,outport, ...
inbond,incause,inport);
fprintf(eqnfile, '%s',eqn);
end;
|