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
|
%SUMMARY Pump: a hydraulic pump - incompressible flow
%DESCRIPTION Parameter 1: Density (rho)
%DESCRIPTION Parameter 2: Specific heat (c_p)
%DESCRIPTION Parameter 3: R component parameters
%DESCRIPTION Parameter 4: Pump gain (k_p) Vol. flow = k_p * omega
%DESCRIPTION CR 1: R component CR
%DESCRIPTION Typical lable: pump lin rho;c_p;flow,r;k_p
%% Label file for system Pump (Pump_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%ALIAS Pipe IncompressibleFlow/Pipe
%% Each line should be of one of the following forms:
% a comment (ie starting with %)
% Component-name CR_name arg1,arg2,..argn
% blank
% Component type Pipe
pipe $1 $1;$2;$3
% Component type TF
k_p lin $4
|
<
<
<
<
<
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
>
>
>
>
>
>
>
|
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
|
%SUMMARY Pump: a hydraulic pump - incompressible flow
%DESCRIPTION Typical lable: pump lin rho;c_p;flow,r;k_p
%% Label file for system Pump (Pump_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 1998/11/20 10:07:14 peterg
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%ALIAS Pipe IncompressibleFlow/Pipe
%ALIAS in Thermal_in,Hydraulic_in
%ALIAS out Thermal_out,Hydraulic_out
%ALIAS Th_in Thermal_in
%ALIAS Hy_in Hydraulic_in
%ALIAS Th_out Thermal_out
%ALIAS Hy_out Hydraulic_out
%ALIAS Work Shaft
%ALIAS $1 rho
%ALIAS $2 c_p
%ALIAS $3 flow,r
%ALIAS $4 flow,k_p
%ALIAS $1 lin
%% Each line should be of one of the following forms:
% a comment (ie starting with %)
% Component-name CR_name arg1,arg2,..argn
% blank
% Component type Pipe
pipe lin rho;c_p;flow,r
% Component type TF
k_p lin flow,k_p
% Component type SS
[Hydraulic_in] SS external,external
[Hydraulic_out] SS external,external
[Thermal_in] SS external,external
[Thermal_out] SS external,external
[Shaft] SS external,external
|