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
|
%% Label file for system SimpleGasTurbine (SimpleGasTurbine_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 1998/05/18 15:46:02 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 Comb
c1 none m_c;v_c;r
% Component type I
j_s lin flow,j_s
% Component type Pump
p1 none c_v;ideal_gas,r;alpha;effort,k_p
% Component type SS
Work 0 external
Heat 0 external
Speed 0 external
T3 external external
% Component type Turb
t1 none c_v;ideal_gas,r;alpha;effort,k_t
% Component type In
in
% Component type Out
out
% Component type Dummy -- create some global variables.
Dummy none t_2;t_3;t_4;p_2;p_3;p_4;mdot;gamma;q_0;w_0;omega_0;r_p;c_p;mom_0
|
>
>
>
|
|
|
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
60
|
%% Label file for system SimpleGasTurbine (SimpleGasTurbine_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.2 1998/07/03 14:53:38 peterg
% %% Renames tank to comb to be consistent.
% %%
% %% Revision 1.1 1998/05/18 15:46:02 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 Comb
c1 none m_c;v_c;r
% Component type I
j_s lin flow,j_s
% Component type Pump
p1 none c_v;ideal_gas,r;alpha;effort,k
% Component type SS
Work 0 external
Heat 0 external
Speed 0 external
T3 external external
% Component type Turb
t1 none c_v;ideal_gas,r;alpha;effort,k
% Component type In
in
% Component type Out
out
% Component type Dummy -- create some global variables.
Dummy none t_2;t_3;t_4;p_2;p_3;p_4;mdot;gamma;q_0;w_0;omega_0;r_p;c_p;mom_0
|