1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*-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
|
>
>
>
|
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.2 2003/06/06 06:39:20 gawthrop
## Made compatible with current MTT.
##
## 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
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
## Solve for the steady-state concentrations
## Solve for ca - a quadratic.
a = k_3*e_3; #ca^2
b = k_1*e_1 + f_s; #ca^1
c = -c_0*f_s;
c_a = (-b + sqrt(b^2 - 4*a*c))/(2*a);
## solve for c_b
c_b = c_a*k_1*e_1/(f_s+k_2*e_2);
#States (masses)
x1 = c_a*v_r;
|
|
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
## Solve for the steady-state concentrations
## Solve for ca - a quadratic.
a = k_3*e_3; #ca^2
b = k_1*e_1 + f_s; #ca^1
c = -c_0*f_s;
c_a = (-b + sqrt(pow(b,2) - 4*a*c))/(2*a);
## solve for c_b
c_b = c_a*k_1*e_1/(f_s+k_2*e_2);
#States (masses)
x1 = c_a*v_r;
|