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
|
%SUMMARY hPipe: Pipe with heat transfer and heat storage.
%DESCRIPTION Parameter 1: m_t (mass in pipe)
%DESCRIPTION Parameter 2: v_t (volume of pipe)
%DESCRIPTION Parameter 3: r (gas constant)
%DESCRIPTION Typical lable entry
%DESCRIPTION % Component type hPipe
%DESCRIPTION pipe none r*m_p/v_p
%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 $1 r*m/v
%% Label file for system hPipe (hPipe_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 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 SS
[Heat] external external
[Hydraulic_in] external external
[Hydraulic_out] external external
[Thermal_in] external external
[Thermal_out] external external
% Component type TF
P2T lin flow,r*m/v
T2P lin effort,r*m/v
|
|
>
>
>
>
>
>
>
|
|
>
>
>
>
>
>
|
|
|
|
|
|
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
57
58
59
|
%SUMMARY hPipe: Pipe for compressible fluid with heat transfer and heat storage.
%DESCRIPTION hPipe represents an ideal (energy conserving) pipe carrying a
%DESCRIPTION fluid with heat transfer. To ensure energy conservation, power bonds are used and
%DESCRIPTION connected by (energy conserving) TF components.
%DESCRIPTION It is assumed that the working fluid is an ideal gas (gas constant r) and that a mass
%DESCRIPTION m_t is stored within pipe with a volume v_t.
%DESCRIPTION Parameter 1: m_t (mass in pipe)
%DESCRIPTION Parameter 2: v_t (volume of pipe)
%DESCRIPTION Parameter 3: r (gas constant)
%DESCRIPTION Typical lable entry
%DESCRIPTION % Component type hPipe
%DESCRIPTION pipe none m_p;v_p;r
%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 $1 m
%ALIAS $2 v
%ALIAS $3 r
%% Label file for system hPipe (hPipe_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 1998/07/03 17:38:32 peterg
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 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 SS
[Heat] SS external,external
[Hydraulic_in] SS external,external
[Hydraulic_out] SS external,external
[Thermal_in] SS external,external
[Thermal_out] SS external,external
% Component type TF
P2T lin flow,r*m/v
T2P lin effort,r*m/v
|