1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*-octave-*- Put Emacs into octave-mode
# State specification (ReactorTF_state.txt)
# Generated by MTT at Fri Mar 3 11:52:23 GMT 2000
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
## Reduce steady-state parameter file (ReactorTF_sspar.r)
## as siso_sspar ecxept that states/states have different meaning
## Steady state for constant c_a, c_b and t=t_s and f=f_s
## Unit volume ReactorTF:
|
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*-octave-*- Put Emacs into octave-mode
# State specification (ReactorTF_state.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:12:57 peterg
## To RCS
##
###############################################################
## Reduce steady-state parameter file (ReactorTF_sspar.r)
## as siso_sspar ecxept that states/states have different meaning
## Steady state for constant c_a, c_b and t=t_s and f=f_s
## Unit volume ReactorTF:
|
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
x1 = c_a*v_r;
x2 = c_b*v_r;
#Thermal state
#x3 = c_p*t_s*v_r;
## Load up the states
mttx(1) = x1;
mttx(2) = x2;
mttx(3) = x3;
|
|
|
|
>
>
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
x1 = c_a*v_r;
x2 = c_b*v_r;
#Thermal state
#x3 = c_p*t_s*v_r;
## Load up the states
## Removed by MTT on Thu Jun 5 14:14:18 BST 2003: mttx(1) = x1;
## Removed by MTT on Thu Jun 5 14:14:18 BST 2003: mttx(2) = x2;
## Removed by MTT on Thu Jun 5 14:14:18 BST 2003: mttx(3) = x3;
reactortf__m_a = x1;
reactortf__m_b = x2;
|