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
|
%SUMMARY OttoCycle: a simple closed thermodynamic cycle
%DESCRIPTION The Otto cycle is a simple closed thermodynamic cycle
%DESCRIPTION with four parts:
%DESCRIPTION o Isentropic compression
%DESCRIPTION o Heating at constant volume
%DESCRIPTION o Isentropic expansion
%DESCRIPTION o Cooling at constant volume
%VAR P_0
%VAR T_0
%VAR V_0
%% Label file for system OttoCycle (OttoCycle_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.2 1998/07/21 15:15:27 peterg
% %% Documentation + new format
% %%
% %% Revision 1.1 1998/07/21 15:12:21 peterg
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
>
>
>
>
>
|
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 OttoCycle: a simple closed thermodynamic cycle
%DESCRIPTION The Otto cycle is a simple closed thermodynamic cycle
%DESCRIPTION with four parts:
%DESCRIPTION o Isentropic compression
%DESCRIPTION o Heating at constant volume
%DESCRIPTION o Isentropic expansion
%DESCRIPTION o Cooling at constant volume
%PAR P_0
%PAR T_0
%PAR V_0
%NOTPAR ideal_gas
%% Label file for system OttoCycle (OttoCycle_lbl.txt)
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.3 1998/08/10 16:05:52 peterg
% %% Added VARs and parameters
% %%
% %% Revision 1.2 1998/07/21 15:15:27 peterg
% %% Documentation + new format
% %%
% %% Revision 1.1 1998/07/21 15:12:21 peterg
% %% Initial revision
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|