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
|
%SUMMARY ShowerHeater
%DESCRIPTION <Detailed description here>
%% Label file for system ShowerHeater (ShowerHeater_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
p1 lin rho;c_p;flow,0
p2 lin rho;c_p;flow,0
% Component type TankC
t1 TankC rho;c_p;v
% Component type In
in
% Component type Out
out
% Component type RS
heater lin flow,r_h
% Component type Se
V_in SS external
% Component type De
T_out SS external
|
|
|
|
|
|
|
|
|
>
>
>
>
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
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 ShowerHeater
#DESCRIPTION <Detailed description here>
## Label file for system ShowerHeater (ShowerHeater_lbl.txt)
# ###############################################################
# ## Version control history
# ###############################################################
# ## $Id$
# ## $Log$
# ## Revision 1.1 2000/12/28 18:11:47 peterg
# ## To RCS
# ##
# ###############################################################
#NOTPAR t_0
#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
p1 lin rho;c_p;flow,0
p2 lin rho;c_p;flow,0
# Component type TankC
t1 TankC rho;c_p;v
# Component type In
in
# Component type Out
out
# Component type RS
heater lin flow,r_h
# Component type Se
V_in SS external
# Component type De
T_out SS external
|