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
|
function ports = comp_ports(comp_type)
%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %%%%% Model Transformation Tools %%%%%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Matlab function comp_ports
% ports = comp_ports(comp_type)
% Returns the port list for simple components
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 1997/08/02 19:35:47 peterg
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
junctions = '-zero-one-';
one_ports = '-SS-R-C-I-';
two_ports = '-TF-GY-AE-AF-FMR-RS-';
comp_type = ['-', comp_type, '-'];
if length(findstr(comp_type,junctions))==1
ports = ['undefined]'];
elseif length(findstr(comp_type,one_ports))==1
ports = ['in'];
elseif length(findstr(comp_type,two_ports))==1
ports = ['in';'out'];
elseif length(findstr(comp_type,'[-EMTF-]'))==1
ports = ['in';'out';'mod'];
end;
|
|
>
>
>
|
|
>
>
>
>
>
>
>
>
>
>
>
|
|
>
|
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
49
50
51
52
53
54
55
56
|
function ports = comp_ports(comp_type,N)
%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %%%%% Model Transformation Tools %%%%%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Matlab function comp_ports
% ports = comp_ports(comp_type)
% Returns the port list for simple components
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.2 1997/08/28 08:08:24 peterg
% %% Added RS component to the two-port list
% %%
% %% Revision 1.1 1997/08/02 19:35:47 peterg
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
junctions = '-zero-one-';
one_ports = '-SS-';
two_ports = '-TF-GY-AE-AF-FMR-RS-';
N_ports = '-R-C-I-';
comp_type = ['-', comp_type, '-'];
if length(findstr(comp_type,junctions))==1
ports = ['undefined]'];
elseif length(findstr(comp_type,one_ports))==1
ports = ['in'];
elseif length(findstr(comp_type,two_ports))==1
ports = ['in';'out'];
elseif length(findstr(comp_type,'[-EMTF-]'))==1
ports = ['in';'out';'mod'];
elseif length(findstr(comp_type,'[-ES-]'))==1
ports = ['e';'s'];
elseif length(findstr(comp_type,N_ports))==1
if N==1
ports = ['in'];
elseif N==2
ports = ['in';'out'];
elseif N>2
ports = '1';
for i=2:N
ports = [ports; sprintf("%i",i)];
end;
end;
end;
|