Skip to content

Commit 37781b9

Browse files
committed
init
1 parent 2671197 commit 37781b9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/src/catalyst_functionality/network_analysis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ the reaction rate equation ODE model for the repressilator is
5252
## Matrix-vector reaction rate equation representation
5353
In general, reaction rate equation (RRE) ODE models for chemical reaction networks can
5454
be represented as a first-order system of ODEs in a compact matrix-vector notation. Suppose
55-
we have a reaction network with ``K`` reactions and ``M`` species, labelled by the state vector
55+
we have a reaction network with ``K`` reactions and ``M`` species, labelled by the unknown vector
5656
```math
5757
\mathbf{x}(t) = \begin{pmatrix} x_1(t) \\ \vdots \\ x_M(t)) \end{pmatrix}.
5858
```
@@ -384,7 +384,7 @@ Recall that in the matrix-vector representation for the RRE ODEs, the entries,
384384
``N_{m k}``, of the stoichiometry matrix, ``N``, give the net change in species
385385
``m`` due to reaction ``k``. If we let ``\mathbf{N}_k`` denote the ``k``th
386386
column of this matrix, this vector corresponds to the change in the species
387-
state vector, ``\mathbf{x}(t)``, due to reaction ``k``, i.e. when reaction ``k``
387+
unknown vector, ``\mathbf{x}(t)``, due to reaction ``k``, i.e. when reaction ``k``
388388
occurs ``\mathbf{x}(t) \to \mathbf{x}(t) + \mathbf{N}_k``. Moreover, by
389389
integrating the ODE
390390
```math

src/networkapi.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1402,7 +1402,7 @@ Notes:
14021402
- `disablechecks` will disable checking for whether the passed in variable is
14031403
already defined, which is useful when adding many new variables to the system.
14041404
*Do not disable checks* unless you are sure the passed in variable is a new
1405-
variable, as this will potentially leave the system in an undefined state.
1405+
variable, as this will potentially leave the system in an undefined unknown.
14061406
"""
14071407
function addspecies!(network::ReactionSystem, s::Symbolic; disablechecks = false)
14081408
reset_networkproperties!(network)
@@ -1434,7 +1434,7 @@ integer id of the species within the system.
14341434
- `disablechecks` will disable checking for whether the passed in variable is
14351435
already defined, which is useful when adding many new variables to the system.
14361436
*Do not disable checks* unless you are sure the passed in variable is a new
1437-
variable, as this will potentially leave the system in an undefined state.
1437+
variable, as this will potentially leave the system in an undefined unknown.
14381438
"""
14391439
function addspecies!(network::ReactionSystem, s::Num; disablechecks = false)
14401440
addspecies!(network, value(s), disablechecks = disablechecks)
@@ -1450,7 +1450,7 @@ id of the parameter within the system.
14501450
- `disablechecks` will disable checking for whether the passed in variable is
14511451
already defined, which is useful when adding many new variables to the system.
14521452
*Do not disable checks* unless you are sure the passed in variable is a new
1453-
variable, as this will potentially leave the system in an undefined state.
1453+
variable, as this will potentially leave the system in an undefined unknown.
14541454
"""
14551455
function addparam!(network::ReactionSystem, p::Symbolic; disablechecks = false)
14561456
reset_networkproperties!(network)
@@ -1479,7 +1479,7 @@ integer id of the parameter within the system.
14791479
- `disablechecks` will disable checking for whether the passed in variable is
14801480
already defined, which is useful when adding many new variables to the system.
14811481
*Do not disable checks* unless you are sure the passed in variable is a new
1482-
variable, as this will potentially leave the system in an undefined state.
1482+
variable, as this will potentially leave the system in an undefined unknown.
14831483
"""
14841484
function addparam!(network::ReactionSystem, p::Num; disablechecks = false)
14851485
addparam!(network, value(p); disablechecks = disablechecks)

0 commit comments

Comments
 (0)