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
|
%SUMMARY OttoCycle: Ideal Otto cycle with ideal gas
%DESCRIPTION Uses the CT2 two-port thermal capacitor.
%% Label file for system OttoCycle (OttoCycle_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 1997/12/07 20:38:05 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 CT2
gas CT2 c_v;gamma;m;t_0
% Component type INTF
entropy
volume
% Component type SS
S external 0
V external 0
[Heat] external external
[Work] external 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
47
|
%SUMMARY Cycle: Closed cycle with ideal gas
%DESCRIPTION Uses the CU two-port thermal capacitor.
%ALIAS in Heat
%ALIAS out Work
%% Label file for system Cycle (Cycle_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 1997/12/08 20:24:43 peterg
% %% Initial revision
% %%
% %% Revision 1.1 1997/12/07 20:38:05 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 CU
gas CU ideal_gas,c_v,gamma,m_g
% Component type INTF
entropy
volume
% Component type SS
S SS external,0
T SS external,0
V SS external,0
P SS external,0
[Heat] SS external,external
[Work] SS external,external
|