-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRROEA_mb.m
59 lines (45 loc) · 2.27 KB
/
RROEA_mb.m
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Copyright Xin-Guang Zhu, Yu Wang, Donald R. ORT and Stephen P. LONG
%CAS-MPG Partner Institute for Computational Biology, Shanghai Institutes for Biological Sciences, CAS, Shanghai,200031
%China Institute of Genomic Biology and Department of Plant Biology, Shanghai Institutes for Biological Sciences, CAS, Shanghai,200031
%University of Illinois at Urbana Champaign
%Global Change and Photosynthesis Research Unit, USDA/ARS, 1406 Institute of Genomic Biology, Urbana, IL 61801, USA.
% This file is part of e-photosynthesis.
% e-photosynthesis is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation;
% e-photosynthesis is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
% You should have received a copy of the GNU General Public License (GPL)
% along with this program. If not, see <http://www.gnu.org/licenses/>.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function RROEA_mb = RROEA_Mb(t,RROEA_Con,RROEA_Param)
global GLight;
fini = Condition (t);
light = GLight;
RROEA_Param(1) = light;
RROEA_Vel = RROEA_Rate(t,RROEA_Con, RROEA_Param);
ve2GAPDH = RROEA_Vel ( 1 ) ;
ve2FBPase = RROEA_Vel ( 2 ) ;
ve2SBPase = RROEA_Vel ( 3 ) ;
ve2PRK = RROEA_Vel ( 4 ) ;
ve2ATPase = RROEA_Vel ( 5 ) ;
ve2ATPGPP = RROEA_Vel ( 6 ) ;
ve2MDH = RROEA_Vel ( 7 ) ;
ve2Fd = RROEA_Vel ( 8 ) ;
veFd2Thio = RROEA_Vel ( 9 ) ;
veFd2Calvin = RROEA_Vel ( 10 ) ;
ve2RuACT = RROEA_Vel ( 11 ) ;
RROEA_mb = zeros(4,1) ;
RROEA_mb ( 1 ) = ve2GAPDH ; % GAPDH
RROEA_mb ( 2 ) = ve2FBPase; % FBPase
RROEA_mb ( 3 ) = ve2SBPase; % SBPase
RROEA_mb ( 4 ) = ve2PRK; % PRK
RROEA_mb ( 5 ) = ve2ATPase; % ATPase
RROEA_mb ( 6 ) = ve2ATPGPP; % ATPGPP
RROEA_mb ( 7 ) = ve2MDH; % MDH
RROEA_mb ( 8 ) = veFd2Thio - ve2GAPDH - ve2FBPase - ve2SBPase - ve2PRK - ve2ATPGPP -ve2RuACT; % Thio
RROEA_mb ( 9 ) = ve2Fd - veFd2Thio - veFd2Calvin; % Fd
RROEA_mb ( 10 ) = ve2RuACT; % RuACT;