1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*-octave-*- Put Emacs into octave-mode
# State specification (ReactorTQ_state.txt)
# Generated by MTT at Fri Mar 3 11:52:23 GMT 2000
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
## Reduce steady-state parameter file (ReactorTQ_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 ReactorTQ:
|
>
>
>
|
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 (ReactorTQ_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:19:08 peterg
## To RCS
##
###############################################################
## Reduce steady-state parameter file (ReactorTQ_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 ReactorTQ:
|
38
39
40
41
42
43
44
45
46
47
48
49
50
|
x2 = c_b*v_r;
## The two inputs at steady-state
##mttu(1) = f_s;
## Load up the states
mttx(1) = x1;
mttx(2) = x2;
|
|
|
|
|
<
<
|
41
42
43
44
45
46
47
48
49
50
51
|
x2 = c_b*v_r;
## The two inputs at steady-state
##mttu(1) = f_s;
## Load up the states
## Removed by MTT on Thu Jun 5 14:25:48 BST 2003: mttx(1) = x1;
## Removed by MTT on Thu Jun 5 14:25:48 BST 2003: mttx(2) = x2;
reactortq__m_a = x1;
reactortq__m_b = x2;
|