-
Notifications
You must be signed in to change notification settings - Fork 3
/
SBO_OBO.obo
4384 lines (3687 loc) · 446 KB
/
SBO_OBO.obo
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format-version: 1.2
remark: Systems Biology Ontology, OWL export generated by SBO Browser (http://www.ebi.ac.uk/sbo/)
ontology: http://biomodels.net/SBO/
property_value: owl:versionInfo "28:08:2021 03:13" xsd:string
name: Generated: 03:11:2021 07:00
[Term]
id: SBO:0000000
name: systems biology representation
comment: Representation of an entity used in a systems biology knowledge reconstruction, such as a model, pathway, network.
[Term]
id: SBO:0000001
name: rate law
comment: mathematical description that relates quantities of reactants to the reaction velocity.
is_a: SBO:0000064 ! mathematical expression
[Term]
id: SBO:0000002
name: quantitative systems description parameter
comment: A numerical value that defines certain characteristics of systems or system functions. It may be part of a calculation, but its value is not determined by the form of the equation itself, and may be arbitrarily assigned.
is_a: SBO:0000545 ! systems description parameter
[Term]
id: SBO:0000003
name: participant role
comment: The function of a physical or conceptual entity, that is its role, in the execution of an event or process.
is_a: SBO:0000000 ! systems biology representation
[Term]
id: SBO:0000004
name: modelling framework
comment: Set of assumptions that underlay a mathematical description.
is_a: SBO:0000000 ! systems biology representation
[Term]
id: SBO:0000005
name: obsolete mathematical expression
comment: The description of a system in mathematical terms.
is_a: SBO:0000064 ! mathematical expression
[Term]
id: SBO:0000006
name: obsolete parameter
comment: A numerical value that represents the amount of some entity, process or mathematical function of the system.
is_a: SBO:0000002 ! quantitative systems description parameter
[Term]
id: SBO:0000007
name: obsolete participant type
comment: The 'kind' of entity involved in some process, action or reaction in the system. This may be enzyme, simple chemical, etc..
is_a: SBO:0000235 ! participant
[Term]
id: SBO:0000008
name: obsolete modelling framework
comment: Basic assumptions that underlie a mathematical model.
is_a: SBO:0000004 ! modelling framework
[Term]
id: SBO:0000009
name: kinetic constant
comment: Synonym: reaction rate constant
is_a: SBO:0000002 ! quantitative systems description parameter
[Term]
id: SBO:0000010
name: reactant
comment: Substance consumed by a chemical reaction. Reactants react with each other to form the products of a chemical reaction. In a chemical equation the Reactants are the elements or compounds on the left hand side of the reaction equation. A reactant can be consumed and produced by the same reaction, its global quantity remaining unchanged.
is_a: SBO:0000003 ! participant role
[Term]
id: SBO:0000011
name: product
comment: Substance that is produced in a reaction. In a chemical\nequation the Products are the elements or compounds on the right hand side\nof the reaction equation. A product can be produced and consumed by the\nsame reaction, its global quantity remaining unchanged.
is_a: SBO:0000003 ! participant role
[Term]
id: SBO:0000012
name: mass action rate law
comment: The Law of Mass Action, first expressed by Waage and Guldberg in 1864 (Waage, P.; Guldberg, C. M. Forhandlinger: Videnskabs-Selskabet i Christiana 1864, 35) states that the speed of a chemical reaction is proportional to the quantity of the reacting substances. More formally, the change of a product quantity is proportional to the product of reactant activities. In the case of a reaction occurring in a gas phase, the activities are equal to the partial pressures. In the case of a well-stirred aqueous medium, the activities are equal to the concentrations. In the case of discrete kinetic description, the quantity are expressed in number of molecules and the relevant volume are implicitely embedded in the kinetic constant.
is_a: SBO:0000001 ! rate law
[Term]
id: SBO:0000013
name: catalyst
comment: Substance that accelerates the velocity of a chemical reaction without itself being consumed or transformed. This effect is achieved by lowering the free energy of the transition state.
is_a: SBO:0000459 ! stimulator
[Term]
id: SBO:0000014
name: enzyme
comment: A protein that catalyzes a chemical reaction. The word comes from en ("at" or "in") and simo ("leaven" or "yeast").
is_a: SBO:0000241 ! functional entity
[Term]
id: SBO:0000015
name: substrate
comment: Molecule which is acted upon by an enzyme. The substrate binds with the enzyme's active site, and the enzyme catalyzes a chemical reaction involving the substrate.
is_a: SBO:0000010 ! reactant
[Term]
id: SBO:0000016
name: unimolecular rate constant
comment: Numerical parameter that quantifies the velocity of a chemical reaction involving only one reactant.\n
is_a: SBO:0000009 ! kinetic constant
[Term]
id: SBO:0000017
name: bimolecular rate constant
comment: Numerical parameter that quantifies the velocity of a chemical reaction involving two reactants.
is_a: SBO:0000009 ! kinetic constant
[Term]
id: SBO:0000018
name: trimolecular rate constant
comment: Numerical parameter that quantifies the velocity of a chemical reaction involving three reactants.\n
is_a: SBO:0000009 ! kinetic constant
[Term]
id: SBO:0000019
name: modifier
comment: Substance that changes the velocity of a process without\nitself being consumed or transformed by the reaction.
is_a: SBO:0000003 ! participant role
[Term]
id: SBO:0000020
name: inhibitor
comment: Substance that decreases the probability of a chemical reaction without itself being consumed or transformed by the reaction.
is_a: SBO:0000019 ! modifier
[Term]
id: SBO:0000021
name: potentiator
comment: Synonym: activator
is_a: SBO:0000459 ! stimulator
[Term]
id: SBO:0000022
name: forward unimolecular rate constant
comment: Numerical parameter that quantifies the forward velocity of a chemical\nreaction involving only one reactant. This parameter encompasses all the contributions to the velocity except the quantity of the reactant.
is_a: SBO:0000016 ! unimolecular rate constant
is_a: SBO:0000153 ! forward rate constant
[Term]
id: SBO:0000023
name: forward bimolecular rate constant
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction involving two reactants. This parameter encompasses all the contributions to the velocity except the quantity of the reactants.
is_a: SBO:0000017 ! bimolecular rate constant
is_a: SBO:0000153 ! forward rate constant
[Term]
id: SBO:0000024
name: forward trimolecular rate constant
comment: Numerical parameter that quantifies the forward velocity of a chemical\nreaction involving three reactants. This parameter encompasses all the contributions to the velocity except the quantity of the reactants.
is_a: SBO:0000018 ! trimolecular rate constant
is_a: SBO:0000153 ! forward rate constant
[Term]
id: SBO:0000025
name: catalytic rate constant
comment: Synonym: turnover number
is_a: SBO:0000035 ! forward unimolecular rate constant, continuous case
[Term]
id: SBO:0000026
name: new term name
comment: none
is_a: SBO:0000006 ! obsolete parameter
[Term]
id: SBO:0000027
name: Michaelis constant
comment: Synonym: Michaelis-Menten constant
is_a: SBO:0000193 ! equilibrium or steady-state constant
[Term]
id: SBO:0000028
name: enzymatic rate law for irreversible non-modulated non-interacting unireactant enzymes
comment: Kinetics of enzymes that react only with one substance, their substrate. The enzymes do not catalyse the reactions in both directions.
is_a: SBO:0000150 ! enzymatic rate law for irreversible non-modulated non-interacting reactant enzymes
is_a: SBO:0000326 ! enzymatic rate law for non-modulated unireactant enzymes
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000025\">kcat</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000505\">Et</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000515\">S</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000027\">Ks</ci></bvar>\n <apply>\n <divide></divide>\n <apply>\n <times></times>\n <ci>kcat</ci>\n <ci>Et</ci>\n <ci>S</ci>\n </apply>\n <apply>\n <plus></plus>\n <ci>Ks</ci>\n <ci>S</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000029
name: Henri-Michaelis-Menten rate law
comment: First general rate equation for reactions involving enzymes, it was presented in "Victor Henri. Lois Générales de l'Action des Diastases. Paris, Hermann, 1903.". The reaction is assumed to be made of a reversible of the binding of the substrate to the enzyme, followed by the breakdown of the complex generating the product. Ten years after Henri, Michaelis and Menten presented a variant of his equation, based on the hypothesis that the dissociation rate of the substrate was much larger than the rate of the product generation. Leonor Michaelis, Maud Menten (1913). Die Kinetik der Invertinwirkung, Biochem. Z. 49:333-369.
is_a: SBO:0000028 ! enzymatic rate law for irreversible non-modulated non-interacting unireactant enzymes
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000025\">kcat</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000505\">Et</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000515\">S</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000373\">Ks</ci></bvar>\n <apply>\n <divide></divide>\n <apply>\n <times></times>\n <ci>kcat</ci>\n <ci>Et</ci>\n <ci>S</ci>\n </apply>\n <apply>\n <plus></plus>\n <ci>Ks</ci>\n <ci>S</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000030
name: Van Slyke-Cullen rate law
comment: Rate-law presented in "Donald D. Van Slyke and Glenn E. Cullen. The mode of action of urease and of enzymes in general. J. Biol. Chem., Oct 1914; 19: 141-180". It assumes that the enzymatic reaction occurs as two irreversible steps.E+S -> ES -> E+P. Although of the same form than the Henri-Michaelis-Menten equation, it is semantically different since K now represents the ratio between the production rate and the association rate of the enzyme and the substrate.
is_a: SBO:0000028 ! enzymatic rate law for irreversible non-modulated non-interacting unireactant enzymes
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000025\">kcat</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000505\">Et</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000515\">S</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000372\">Ks</ci></bvar>\n <apply>\n <divide></divide>\n <apply>\n <times></times>\n <ci>kcat</ci>\n <ci>Et</ci>\n <ci>S</ci>\n </apply>\n <apply>\n <plus></plus>\n <ci>Ks</ci>\n <ci>S</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000031
name: Briggs-Haldane rate law
comment: The Briggs-Haldane rate law is a general rate equation that does not require the restriction of equilibrium of Henri-Michaelis-Menten or irreversible reactions of Van Slyke, but instead make the hypothesis that the complex enzyme-substrate is in quasi-steady-state. Although of the same form than the Henri-Michaelis-Menten equation, it is semantically different since Km now represents a pseudo-equilibrium constant, and is equal to the ratio between the rate of consumption of the complex (sum of dissociation of substrate and generation of product) and the association rate of the enzyme and the substrate.
is_a: SBO:0000028 ! enzymatic rate law for irreversible non-modulated non-interacting unireactant enzymes
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000025\">kcat</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000505\">Et</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000515\">S</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000371\">Km</ci></bvar>\n <apply>\n <divide></divide>\n <apply>\n <times></times>\n <ci>kcat</ci>\n <ci>Et</ci>\n <ci>S</ci>\n </apply>\n <apply>\n <plus></plus>\n <ci>Km</ci>\n <ci>S</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000032
name: reverse unimolecular rate constant
comment: Numerical parameter that quantifies the reverse velocity of a chemical reaction involving only one product. This parameter encompasses all the contributions to the velocity except the quantity of the product.
is_a: SBO:0000016 ! unimolecular rate constant
is_a: SBO:0000156 ! reverse rate constant
[Term]
id: SBO:0000033
name: reverse bimolecular rate constant
comment: Numerical parameter that quantifies the reverse velocity of a chemical reaction involving only one product. This parameter encompasses all the contributions to the velocity except the quantity of the product.
is_a: SBO:0000017 ! bimolecular rate constant
is_a: SBO:0000156 ! reverse rate constant
[Term]
id: SBO:0000034
name: reverse trimolecular rate constant
comment: Numerical parameter that quantifies the reverse velocity of a chemical reaction involving three products. This parameter encompasses all the contributions to the velocity except the quantity of the products.
is_a: SBO:0000018 ! trimolecular rate constant
is_a: SBO:0000156 ! reverse rate constant
[Term]
id: SBO:0000035
name: forward unimolecular rate constant, continuous case
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction involving only one reactant. This parameter encompasses all the contributions to the velocity except the quantity of the reactant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000022 ! forward unimolecular rate constant
is_a: SBO:0000154 ! forward rate constant, continuous case
[Term]
id: SBO:0000036
name: forward bimolecular rate constant, continuous case
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction involving two reactants. This parameter encompasses all the contributions to the velocity except the quantity of the reactants. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000023 ! forward bimolecular rate constant
is_a: SBO:0000154 ! forward rate constant, continuous case
[Term]
id: SBO:0000037
name: forward trimolecular rate constant, continuous case
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction involving three reactants. This parameter encompasses all the contributions to the velocity except the quantity of the reactants. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000024 ! forward trimolecular rate constant
is_a: SBO:0000154 ! forward rate constant, continuous case
[Term]
id: SBO:0000038
name: reverse unimolecular rate constant, continuous case
comment: Numerical parameter that quantifies the reverse velocity of a chemical reaction involving only one product. This parameter encompasses all the contributions to the velocity except the quantity of the product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000032 ! reverse unimolecular rate constant
[Term]
id: SBO:0000039
name: reverse bimolecular rate constant, continuous case
comment: Numerical parameter that quantifies the reverse velocity of a chemical reaction involving only one product. This parameter encompasses all the contributions to the velocity except the quantity of the product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000033 ! reverse bimolecular rate constant
[Term]
id: SBO:0000040
name: reverse trimolecular rate constant, continuous case
comment: Numerical parameter that quantifies the reverse velocity of a chemical reaction involving three products. This parameter encompasses all the contributions to the velocity except the quantity of the products. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000034 ! reverse trimolecular rate constant
[Term]
id: SBO:0000041
name: mass action rate law for irreversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products.
is_a: SBO:0000012 ! mass action rate law
[Term]
id: SBO:0000042
name: mass action rate law for reversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products.
is_a: SBO:0000012 ! mass action rate law
[Term]
id: SBO:0000043
name: mass action rate law for zeroth order irreversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is constant.
is_a: SBO:0000041 ! mass action rate law for irreversible reactions
[Term]
id: SBO:0000044
name: mass action rate law for first order irreversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of one reactant.
is_a: SBO:0000041 ! mass action rate law for irreversible reactions
[Term]
id: SBO:0000045
name: mass action rate law for second order irreversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to two reactant quantity.
is_a: SBO:0000041 ! mass action rate law for irreversible reactions
[Term]
id: SBO:0000046
name: zeroth order rate constant
comment: Numerical parameter that quantifies the velocity of a chemical reaction independant of the reactant quantities. This parameter encompasses all the contributions to the velocity.
is_a: SBO:0000009 ! kinetic constant
[Term]
id: SBO:0000047
name: mass action rate law for zeroth order irreversible reactions, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is constant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000043 ! mass action rate law for zeroth order irreversible reactions
is_a: SBO:0000163 ! mass action rate law for irreversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n <semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">k</ci></bvar>\n <apply>\n <ci>k</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000048
name: forward zeroth order rate constant, continuous case
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction independant of the reactant quantities. This parameter encompasses all the contributions to the velocity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000154 ! forward rate constant, continuous case
is_a: SBO:0000162 ! forward zeroth order rate constant
[Term]
id: SBO:0000049
name: mass action rate law for first order irreversible reactions, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of one reactant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000044 ! mass action rate law for first order irreversible reactions
is_a: SBO:0000163 ! mass action rate law for irreversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000035\">k</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <apply>\n <times></times>\n <ci>k</ci>\n <ci>R</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000050
name: mass action rate law for second order irreversible reactions, one reactant
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products, and the change of a product quantity is proportional to the square of one reactant quantity.
is_a: SBO:0000045 ! mass action rate law for second order irreversible reactions
[Term]
id: SBO:0000051
name: new term name
is_a: SBO:0000005 ! obsolete mathematical expression
[Term]
id: SBO:0000052
name: mass action rate law for second order irreversible reactions, one reactant, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the square of one reactant quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000050 ! mass action rate law for second order irreversible reactions, one reactant
is_a: SBO:0000163 ! mass action rate law for irreversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">k</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <apply>\n <times></times>\n <ci>k</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000053
name: mass action rate law for second order irreversible reactions, two reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of two reactants.
is_a: SBO:0000045 ! mass action rate law for second order irreversible reactions
[Term]
id: SBO:0000054
name: mass action rate law for second order irreversible reactions, two reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the product of two reactant quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000053 ! mass action rate law for second order irreversible reactions, two reactants
is_a: SBO:0000163 ! mass action rate law for irreversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">k</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <apply>\n <times></times>\n <ci>k</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000055
name: mass action rate law for third order irreversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to three reactant quantities.
is_a: SBO:0000041 ! mass action rate law for irreversible reactions
[Term]
id: SBO:0000056
name: mass action rate law for third order irreversible reactions, one reactant
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the cube of one reactant quantity.
is_a: SBO:0000055 ! mass action rate law for third order irreversible reactions
[Term]
id: SBO:0000057
name: mass action rate law for third order irreversible reactions, one reactant, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products, and the change of a product quantity is proportional to the cube of one reactant quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000056 ! mass action rate law for third order irreversible reactions, one reactant
is_a: SBO:0000163 ! mass action rate law for irreversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">k</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <apply>\n <times></times>\n <ci>k</ci>\n <ci>R</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000058
name: mass action rate law for third order irreversible reactions, two reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of one reactant and the square of the quantity of the other reactant.
is_a: SBO:0000055 ! mass action rate law for third order irreversible reactions
[Term]
id: SBO:0000059
name: mass action rate law for third order irreversible reactions, two reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of one reactant and the square of the quantity of the other reactant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000058 ! mass action rate law for third order irreversible reactions, two reactants
is_a: SBO:0000163 ! mass action rate law for irreversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">k</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <apply>\n <times></times>\n <ci>k</ci>\n <ci>R1</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000060
name: mass action rate law for third order irreversible reactions, three reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of three reactants.
is_a: SBO:0000055 ! mass action rate law for third order irreversible reactions
[Term]
id: SBO:0000061
name: mass action rate law for third order irreversible reactions, three reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products, and the change of a product quantity is proportional to the product of three reactant quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000060 ! mass action rate law for third order irreversible reactions, three reactants
is_a: SBO:0000163 ! mass action rate law for irreversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">k</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R3</ci></bvar>\n <apply>\n <times></times>\n <ci>k</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000062
name: continuous framework
comment: Modelling approach where the quantities of participants are considered continuous, and represented by real values. The associated simulation methods make use of differential equations.
is_a: SBO:0000004 ! modelling framework
[Term]
id: SBO:0000063
name: discrete framework
comment: Modelling approach where the quantities of participants are considered discrete, and represented by integer values. The associated simulation methods can be deterministic or stochastic.
is_a: SBO:0000004 ! modelling framework
[Term]
id: SBO:0000064
name: mathematical expression
comment: Formal representation of a calculus linking parameters and variables of a model.
is_a: SBO:0000000 ! systems biology representation
[Term]
id: SBO:0000065
name: forward zeroth order rate constant, discrete case
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction independant of the reactant quantities. This parameter encompasses all the contributions to the velocity. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000155 ! forward rate constant, discrete case
is_a: SBO:0000162 ! forward zeroth order rate constant
[Term]
id: SBO:0000066
name: forward unimolecular rate constant, discrete case
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction involving only one reactant. This parameter encompasses all the contributions to the velocity except the quantity of the reactant. It is to be used in a reaction modelled using a discrete framework. \n
is_a: SBO:0000022 ! forward unimolecular rate constant
is_a: SBO:0000155 ! forward rate constant, discrete case
[Term]
id: SBO:0000067
name: forward bimolecular rate constant, discrete case
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction involving two reactants. This parameter encompasses all the contributions to the velocity except the quantity of the reactants. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000023 ! forward bimolecular rate constant
is_a: SBO:0000155 ! forward rate constant, discrete case
[Term]
id: SBO:0000068
name: forward trimolecular rate constant, discrete case
comment: Numerical parameter that quantifies the forward velocity of a chemical reaction involving three reactants. This parameter encompasses all the contributions to the velocity except the quantity of the reactants. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000024 ! forward trimolecular rate constant
is_a: SBO:0000155 ! forward rate constant, discrete case
[Term]
id: SBO:0000069
name: mass action rate law for zeroth order reversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant.
is_a: SBO:0000042 ! mass action rate law for reversible reactions
[Term]
id: SBO:0000070
name: mass action rate law for zeroth order forward, first order reverse, reversible reactions, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant. The rate of the reverse process is proportional to the quantity of one product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000069 ! mass action rate law for zeroth order reversible reactions
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000038\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <ci>kf</ci>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000071
name: mass action rate law for zeroth order forward, second order reverse, reversible reactions, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant. The rate of the reverse process is proportional totwo product quantities.
is_a: SBO:0000069 ! mass action rate law for zeroth order reversible reactions
[Term]
id: SBO:0000072
name: mass action rate law for zeroth order forward, second order reverse, reversible reactions, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant. The rate of the reverse process is proportional to the square of one product quantity. It is to be used in a reaction modelled using a continuous framework.\n\n
is_a: SBO:0000071 ! mass action rate law for zeroth order forward, second order reverse, reversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <ci>kf</ci>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000073
name: mass action rate law for zeroth order forward, second order reverse, reversible reactions, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant. The rate of the reverse process is proportional to the product of two product quantities. It is to be used in a reaction modelled using a continuous framework.\n
is_a: SBO:0000071 ! mass action rate law for zeroth order forward, second order reverse, reversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <ci>kf</ci>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000074
name: mass action rate law for zeroth order forward, third order reverse, reversible reactions, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant. The rate of the reverse process is proportional to three product quantities.
is_a: SBO:0000069 ! mass action rate law for zeroth order reversible reactions
[Term]
id: SBO:0000075
name: mass action rate law for zeroth order forward, third order reverse, reversible reactions, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant. The rate of the reverse process is proportional to the cube of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000074 ! mass action rate law for zeroth order forward, third order reverse, reversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <ci>kf</ci>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>\n\n" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000076
name: mass action rate law for zeroth order forward, third order reverse, reversible reactions, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant. The rate of the reverse process is proportional to the quantity of one product and the square of the quantity of the other product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000074 ! mass action rate law for zeroth order forward, third order reverse, reversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <ci>kf</ci>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>\n\n" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000077
name: mass action rate law for zeroth order forward, third order reverse, reversible reactions, three products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is constant. The rate of the reverse process is proportional to the product of three product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000074 ! mass action rate law for zeroth order forward, third order reverse, reversible reactions, continuous scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P3</ci></bvar>\n <apply>\n <minus></minus>\n <ci>kf</ci>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n <ci>P3</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>\n" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000078
name: mass action rate law for first order reversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant.
is_a: SBO:0000042 ! mass action rate law for reversible reactions
[Term]
id: SBO:0000079
name: mass action rate law for first order forward, zeroth order reverse, reversible reactions, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is constant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000078 ! mass action rate law for first order reversible reactions
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000035\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n </apply>\n <ci>kr</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000080
name: mass action rate law for first order forward, first order reverse, reversible reactions, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is proportional to the quantity of one product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000078 ! mass action rate law for first order reversible reactions
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000035\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000038\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000081
name: mass action rate law for first order forward, second order reverse, reversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is proportional to two product quantities.
is_a: SBO:0000078 ! mass action rate law for first order reversible reactions
[Term]
id: SBO:0000082
name: mass action rate law for first order forward, second order reverse, reversible reactions, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is proportional to the square of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000081 ! mass action rate law for first order forward, second order reverse, reversible reactions
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000035\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000083
name: mass action rate law for first order forward, second order reverse, reversible reactions, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is proportional to the product of two product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000081 ! mass action rate law for first order forward, second order reverse, reversible reactions
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000035\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000084
name: mass action rate law for first order forward, third order reverse, reversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is proportional to three product quantities.
is_a: SBO:0000078 ! mass action rate law for first order reversible reactions
[Term]
id: SBO:0000085
name: mass action rate law for first order forward, third order reverse, reversible reactions, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is proportional to the cube of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000084 ! mass action rate law for first order forward, third order reverse, reversible reactions
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000035\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000086
name: mass action rate law for first order forward, third order reverse, reversible reactions, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is proportional to the quantity of one product and the square of the quantity of the other product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000084 ! mass action rate law for first order forward, third order reverse, reversible reactions
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000035\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000087
name: mass action rate law for first order forward, third order reverse, reversible reactions, three products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant. The rate of the reverse process is proportional to the product of three product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000084 ! mass action rate law for first order forward, third order reverse, reversible reactions
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000035\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P3</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n <ci>P3</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000088
name: mass action rate law for second order reversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to two reactant quantities.
is_a: SBO:0000042 ! mass action rate law for reversible reactions
[Term]
id: SBO:0000089
name: mass action rate law for second order forward, reversible reactions, one reactant
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity.
is_a: SBO:0000088 ! mass action rate law for second order reversible reactions
[Term]
id: SBO:0000090
name: mass action rate law for second order forward, zeroth order reverse, reversible reactions, one reactant, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is constant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000089 ! mass action rate law for second order forward, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <ci>kr</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000091
name: mass action rate law for second order forward, first order reverse, reversible reactions, one reactant, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is proportional to the quantity of one product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000089 ! mass action rate law for second order forward, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000038\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000092
name: mass action rate law for second order forward, second order reverse, reversible reactions, one reactant
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is proportional to the quantity of two products.
is_a: SBO:0000089 ! mass action rate law for second order forward, reversible reactions, one reactant
[Term]
id: SBO:0000093
name: mass action rate law for second order forward, second order reverse, reversible reactions, one reactant, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is proportional to the square of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000092 ! mass action rate law for second order forward, second order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000094
name: mass action rate law for second order forward, second order reverse, reversible reactions, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is proportional to the product of two product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000092 ! mass action rate law for second order forward, second order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000095
name: mass action rate law for second order forward, third order reverse, reversible reactions, one reactant
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is proportional to the quantity of three products.
is_a: SBO:0000089 ! mass action rate law for second order forward, reversible reactions, one reactant
[Term]
id: SBO:0000096
name: mass action rate law for second order forward, third order reverse, reversible reactions, one reactant, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is proportional to the cube of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000095 ! mass action rate law for second order forward, third order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000097
name: mass action rate law for second order forward, third order reverse, reversible reactions, one reactant, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is proportional to the quantity of one product and the square of the quantity of the other product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000095 ! mass action rate law for second order forward, third order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000098
name: mass action rate law for second order forward, third order reverse, reversible reactions, one reactant, three products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the square of one reactant quantity. The rate of the reverse process is proportional to the product of three product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000095 ! mass action rate law for second order forward, third order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P3</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n <ci>P3</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000099
name: mass action rate law for second order forward, reversible reactions, two reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities.
is_a: SBO:0000088 ! mass action rate law for second order reversible reactions
[Term]
id: SBO:0000100
name: mass action rate law for second order forward, zeroth order reverse, reversible reactions, two reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is constant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000099 ! mass action rate law for second order forward, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <ci>kr</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000101
name: mass action rate law for second order forward, first order reverse, reversible reactions, two reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is proportional to the quantity of one product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000099 ! mass action rate law for second order forward, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000038\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000102
name: mass action rate law for second order forward, second order reverse, reversible reactions, two reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is proportional to the quantity of two products.
is_a: SBO:0000099 ! mass action rate law for second order forward, reversible reactions, two reactants
[Term]
id: SBO:0000103
name: mass action rate law for second order forward, second order reverse, reversible reactions, two reactants, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is proportional to the square of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000102 ! mass action rate law for second order forward, second order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000104
name: mass action rate law for second order forward, second order reverse, reversible reactions, two reactants, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is proportional to the product of two product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000102 ! mass action rate law for second order forward, second order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000105
name: mass action rate law for second order forward, third order reverse, reversible reactions, two reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is proportional to the quantity of three products.
is_a: SBO:0000099 ! mass action rate law for second order forward, reversible reactions, two reactants
[Term]
id: SBO:0000106
name: mass action rate law for second order forward, third order reverse, reversible reactions, two reactants, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is proportional to the cube of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000105 ! mass action rate law for second order forward, third order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000107
name: mass action rate law for second order forward, third order reverse, reversible reactions, two reactants, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is proportional to the quantity of one product and the square of the quantity of the other product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000105 ! mass action rate law for second order forward, third order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000108
name: mass action rate law for second order forward, third order reverse, reversible reactions, two reactants, three products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of two reactant quantities. The rate of the reverse process is proportional to the product of three product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000105 ! mass action rate law for second order forward, third order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000036\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P3</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n <ci>P3</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000109
name: mass action rate law for third order reversible reactions
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of a reactant quantity.
is_a: SBO:0000042 ! mass action rate law for reversible reactions
[Term]
id: SBO:0000110
name: mass action rate law for third order forward, reversible reactions, two reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant.
is_a: SBO:0000109 ! mass action rate law for third order reversible reactions
[Term]
id: SBO:0000111
name: mass action rate law for third order forward, zeroth order reverse, reversible reactions, two reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is constant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000110 ! mass action rate law for third order forward, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <ci>kr</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000112
name: mass action rate law for third order forward, first order reverse, reversible reactions, two reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is proportional to the quantity of one product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000110 ! mass action rate law for third order forward, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000038\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000113
name: mass action rate law for third order forward, second order reverse, reversible reactions, two reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is proportional to the quantity of two products.
is_a: SBO:0000110 ! mass action rate law for third order forward, reversible reactions, two reactants
[Term]
id: SBO:0000114
name: mass action rate law for third order forward, second order reverse, reversible reactions, two reactants, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is proportional to the square of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000113 ! mass action rate law for third order forward, second order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000115
name: mass action rate law for third order forward, second order reverse, reversible reactions, two reactants, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is proportional to the product of two product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000113 ! mass action rate law for third order forward, second order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000116
name: mass action rate law for third order forward, third order reverse, reversible reactions, two reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is proportional to the quantity of three products.
is_a: SBO:0000110 ! mass action rate law for third order forward, reversible reactions, two reactants
[Term]
id: SBO:0000117
name: mass action rate law for third order forward, third order reverse, reversible reactions, two reactants, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is proportional to the cube of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000116 ! mass action rate law for third order forward, third order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000118
name: mass action rate law for third order forward, third order reverse, reversible reactions, two reactants, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is proportional to the quantity of one product and the square of the quantity of the other product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000116 ! mass action rate law for third order forward, third order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000119
name: mass action rate law for third order forward, third order reverse, reversible reactions, two reactants, three products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the quantity of one reactant and the square of quantity of the other reactant. The rate of the reverse process is proportional to the product of three product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000116 ! mass action rate law for third order forward, third order reverse, reversible reactions, two reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P3</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n <ci>P3</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000120
name: mass action rate law for third order forward, reversible reactions, three reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities.
is_a: SBO:0000109 ! mass action rate law for third order reversible reactions
[Term]
id: SBO:0000121
name: mass action rate law for third order forward, zeroth order reverse, reversible reactions, three reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is constant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000120 ! mass action rate law for third order forward, reversible reactions, three reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R3</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n <ci>kr</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000122
name: mass action rate law for third order forward, first order reverse, reversible reactions, three reactants, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is proportional to the quantity of one product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000120 ! mass action rate law for third order forward, reversible reactions, three reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000038\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R3</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000123
name: mass action rate law for third order forward, second order reverse, reversible reactions, three reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is proportional to the quantity of two products.
is_a: SBO:0000120 ! mass action rate law for third order forward, reversible reactions, three reactants
[Term]
id: SBO:0000124
name: mass action rate law for third order forward, second order reverse, reversible reactions, three reactants, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is proportional to the square of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000123 ! mass action rate law for third order forward, second order reverse, reversible reactions, three reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R3</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000125
name: mass action rate law for third order forward, second order reverse, reversible reactions, three reactants, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is proportional to the product of two product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000123 ! mass action rate law for third order forward, second order reverse, reversible reactions, three reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R3</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000126
name: mass action rate law for third order forward, third order reverse, reversible reactions, three reactants
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is proportional to the quantity of three products.
is_a: SBO:0000120 ! mass action rate law for third order forward, reversible reactions, three reactants
[Term]
id: SBO:0000127
name: mass action rate law for third order forward, third order reverse, reversible reactions, three reactants, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is proportional to the cube of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000126 ! mass action rate law for third order forward, third order reverse, reversible reactions, three reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R3</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000128
name: mass action rate law for third order forward, third order reverse, reversible reactions, three reactants, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is proportional to the quantity of one product and the square of the quantity of the other product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000126 ! mass action rate law for third order forward, third order reverse, reversible reactions, three reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R3</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000129
name: mass action rate law for third order forward, third order reverse, reversible reactions, three reactants, three products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the product of three reactant quantities. The rate of the reverse process is proportional to the product of three product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000126 ! mass action rate law for third order forward, third order reverse, reversible reactions, three reactants
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R3</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P3</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n <ci>P3</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000130
name: mass action rate law for third order forward, reversible reactions, one reactant
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity.
is_a: SBO:0000109 ! mass action rate law for third order reversible reactions
[Term]
id: SBO:0000131
name: mass action rate law for third order forward, zeroth order reverse, reversible reactions, one reactant, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is constant. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000130 ! mass action rate law for third order forward, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000048\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <ci>kr</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000132
name: mass action rate law for third order forward, first order reverse, reversible reactions, one reactant, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is proportional to the quantity of one product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000130 ! mass action rate law for third order forward, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000038\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000133
name: mass action rate law for third order forward, second order reverse, reversible reactions, one reactant
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is proportional to the quantity of two products.
is_a: SBO:0000130 ! mass action rate law for third order forward, reversible reactions, one reactant
[Term]
id: SBO:0000134
name: mass action rate law for third order forward, second order reverse, reversible reactions, one reactant, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is proportional to the square of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000133 ! mass action rate law for third order forward, second order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000135
name: mass action rate law for third order forward, second order reverse, reversible reactions, one reactant, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is proportional to the product of two product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000133 ! mass action rate law for third order forward, second order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000039\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000136
name: mass action rate law for third order forward, third order reverse, reversible reactions, one reactant
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is proportional to the quantity of three products.
is_a: SBO:0000130 ! mass action rate law for third order forward, reversible reactions, one reactant
[Term]
id: SBO:0000137
name: mass action rate law for third order forward, third order reverse, reversible reactions, one reactant, one product, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is proportional to the cube of one product quantity. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000136 ! mass action rate law for third order forward, third order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P</ci>\n <ci>P</ci>\n <ci>P</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000138
name: mass action rate law for third order forward, third order reverse, reversible reactions, one reactant, two products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is proportional to the quantity of one product and the square of the quantity of the other product. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000136 ! mass action rate law for third order forward, third order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000139
name: mass action rate law for third order forward, third order reverse, reversible reactions, one reactant, three products, continuous scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products. The rate of the forward process is proportional to the cube of one reactant quantity. The rate of the reverse process is proportional to the product of three product quantities. It is to be used in a reaction modelled using a continuous framework.
is_a: SBO:0000136 ! mass action rate law for third order forward, third order reverse, reversible reactions, one reactant
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n<semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000062\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000037\">kf</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000040\">kr</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000509\">R</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000512\">P3</ci></bvar>\n <apply>\n <minus></minus>\n <apply>\n <times></times>\n <ci>kf</ci>\n <ci>R</ci>\n <ci>R</ci>\n <ci>R</ci>\n </apply>\n <apply>\n <times></times>\n <ci>kr</ci>\n <ci>P1</ci>\n <ci>P2</ci>\n <ci>P3</ci>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>\n" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000140
name: mass action rate law for zeroth order irreversible reactions, discrete scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is constant. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000043 ! mass action rate law for zeroth order irreversible reactions
is_a: SBO:0000166 ! mass action rate law for irreversible reactions, discrete scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n <semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000063\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000065\">c</ci></bvar>\n <apply>\n <ci>c</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000141
name: mass action rate law for first order irreversible reactions, discrete scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of one reactant. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000044 ! mass action rate law for first order irreversible reactions
is_a: SBO:0000166 ! mass action rate law for irreversible reactions, discrete scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n <semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000063\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000066\">c</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R</ci></bvar>\n <apply>\n <times></times>\n <ci>c</ci>\n <ci>R</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000142
name: mass action rate law for second order irreversible reactions, one reactant, discrete scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the square of one reactant quantity. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000050 ! mass action rate law for second order irreversible reactions, one reactant
is_a: SBO:0000166 ! mass action rate law for irreversible reactions, discrete scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n <semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000063\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000067\">c</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R</ci></bvar>\n <apply>\n <times></times>\n <ci>c</ci>\n <apply>\n <divide></divide>\n <apply>\n <times></times>\n <ci>R</ci>\n <apply>\n <minus></minus>\n <ci>R</ci>\n <cn type=\"integer\">1</cn>\n </apply>\n </apply>\n <cn type=\"integer\">2</cn>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>\n\n" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000143
name: mass action rate law for second order irreversible reactions, two reactants, discrete scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of two reactants. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000053 ! mass action rate law for second order irreversible reactions, two reactants
is_a: SBO:0000166 ! mass action rate law for irreversible reactions, discrete scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n <semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000063\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000067\">c</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R2</ci></bvar>\n <apply>\n <times></times>\n <ci>c</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000144
name: mass action rate law for third order irreversible reactions, one reactant, discrete scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the cube of one reactant quantity. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000056 ! mass action rate law for third order irreversible reactions, one reactant
is_a: SBO:0000166 ! mass action rate law for irreversible reactions, discrete scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n <semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000063\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000068\">c</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R</ci></bvar>\n <apply>\n <times></times>\n <ci>c</ci>\n <apply>\n <divide></divide>\n <apply>\n <times></times>\n <ci>R</ci>\n <apply>\n <minus></minus>\n <ci>R</ci>\n <cn type=\"integer\">1</cn>\n </apply>\n <apply>\n <minus></minus>\n <ci>R</ci>\n <cn type=\"integer\">2</cn>\n </apply>\n </apply>\n <cn type=\"integer\">6</cn>\n </apply>\n </apply>\n </lambda>\n </semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000145
name: mass action rate law for third order irreversible reactions, two reactants, discrete scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of one reactant and the square of the quantity of the other reactant. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000058 ! mass action rate law for third order irreversible reactions, two reactants
is_a: SBO:0000166 ! mass action rate law for irreversible reactions, discrete scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n <semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000063\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000068\">c</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R2</ci></bvar>\n <apply>\n <times></times>\n <ci>c</ci>\n <ci>R1</ci>\n <apply>\n <divide></divide>\n <apply>\n <times></times>\n <ci>R2</ci>\n <apply>\n <minus></minus>\n <ci>R2</ci>\n <cn type=\"integer\">1</cn>\n </apply>\n </apply>\n <cn type=\"integer\">2</cn>\n </apply>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000146
name: mass action rate law for third order irreversible reactions, three reactants, discrete scheme
comment: Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of three reactants. It is to be used in a reaction modelled using a discrete framework.
is_a: SBO:0000060 ! mass action rate law for third order irreversible reactions, three reactants
is_a: SBO:0000166 ! mass action rate law for irreversible reactions, discrete scheme
property_value: seeAlso "<mathml:math xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\">\n <semantics definitionURL=\"http://biomodels.net/SBO/#SBO:0000063\">\n <lambda>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000068\">c</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R1</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R2</ci></bvar>\n <bvar><ci definitionURL=\"http://biomodels.net/SBO/#SBO:0000508\">R3</ci></bvar>\n <apply>\n <times></times>\n <ci>c</ci>\n <ci>R1</ci>\n <ci>R2</ci>\n <ci>R3</ci>\n </apply>\n </lambda>\n</semantics>\n</mathml:math>" http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
[Term]
id: SBO:0000147
name: thermodynamic temperature
comment: Temperature is the physical property of a system which underlies the common notions of "hot" and "cold"; the material with the higher temperature is said to be hotter. Temperature is a quantity related to the average kinetic energy of the particles in a substance. The 10th Conference Generale des Poids et Mesures decided to define the thermodynamic temperature scale by choosing the triple point of water as the fundamental fixed point, and assigning to it the temperature 273,16 degrees Kelvin, exactly (0.01 degree Celsius).
is_a: SBO:0000002 ! quantitative systems description parameter
[Term]
id: SBO:0000148
name: temperature difference
comment: Quantity resulting from the difference between two thermodynamic temperatures. A difference or interval of temperature may be expressed in Kelvins or in degrees Celsius.\n
is_a: SBO:0000002 ! quantitative systems description parameter
[Term]
id: SBO:0000149
name: number of substrates
comment: Number of molecules which are acted upon by an enzyme.
is_a: SBO:0000157 ! number of reactants
[Term]