1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
+
+
+
| # -*-octave-*- Put Emacs into octave-mode
# Input specification (ReactorTQ_input.txt)
# Generated by MTT at Fri Mar 3 11:52:23 GMT 2000
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2000/12/28 17:19:08 peterg
## To RCS
##
###############################################################
## Reduce steady-state parameter file (ReactorTQ_sspar.r)
## as siso_sspar ecxept that inputs/states have different meaning
## Steady state for constant c_a, c_b and t=t_s and f=f_s
## Unit volume ReactorTQ:
|
37
38
39
40
41
42
43
44
45
46
47
| 40
41
42
43
44
45
46
47
48
|
-
-
+
+
-
-
| x1 = c_a*v_r;
x2 = c_b*v_r;
#Thermal state
x3 = c_p*t_s*v_r;
# Set the inputs
mttu(1) = f_s + 0.1*f_s*(t>0.01); # f (ReactorTQ)
## Removed by MTT on Thu Jun 5 14:27:42 BST 2003: mttu(1) = f_s + 0.1*f_s*(t>0.01); # f (ReactorTQ)
reactortq__f = f_s + 0.1*f_s*(t>0.01); # f (ReactorTQ)
|