Skip to content

Commit

Permalink
Merge pull request #770 from SciML/chemistry_functionality_docs
Browse files Browse the repository at this point in the history
Chemistry functionality docs
  • Loading branch information
TorkelE authored Jan 25, 2024
2 parents c560828 + 50a96d7 commit c8ec7a0
Show file tree
Hide file tree
Showing 11 changed files with 829 additions and 173 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ to assess (global) structural identifiability for all parameters and variables o
```
X's value will be `1.0` in the first vertex, but `0.0` in the remaining one (the system have 25 vertexes in total). SInce th parameters `p` and `d` are part of the non-spatial reaction network, their values are tied to vertexes. However, if the `D` parameter (which governs diffusion between vertexes) is given several values, these will instead correspond to the specific edges (and transportation along those edges.)

- Update how compounds are created. E.g. use
```julia
@variables t C(t) O(t)
@compound CO2 ~ C + 2O
```
to create a compound species `CO2` that consists of `C` and 2 `O`.
- Added documentation for chemistry related functionality (compound creation and reaction balancing).
- Add a CatalystBifurcationKitExtension, permitting BifurcationKit's `BifurcationProblem`s to be created from Catalyst reaction networks. Example usage:
```julia
using Catalyst
Expand Down
1 change: 1 addition & 0 deletions docs/pages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ pages = Any["Home" => "index.md",
"catalyst_functionality/constraint_equations.md",
"catalyst_functionality/parametric_stoichiometry.md",
"catalyst_functionality/network_analysis.md",
"catalyst_functionality/chemistry_related_functionality.md",
"Model creation examples" => Any["catalyst_functionality/example_networks/basic_CRN_examples.md",
"catalyst_functionality/example_networks/hodgkin_huxley_equation.md",
"catalyst_functionality/example_networks/smoluchowski_coagulation_equation.md"]],
Expand Down
11 changes: 11 additions & 0 deletions docs/src/api/catalyst_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,17 @@ Base.convert
ModelingToolkit.structural_simplify
```

## Chemistry-related functionalities
Various functionalities primarily relevant to modelling of chemical systems (but potentially also in biology).
```@docs
@compound
@compounds
iscompound
components
coefficients
component_coefficients
```

## Unit validation
```@docs
validate(rx::Reaction; info::String = "")
Expand Down
138 changes: 138 additions & 0 deletions docs/src/catalyst_functionality/chemistry_related_functionality.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
# [Chemistry-related functionality](@id chemistry_functionality)

While Catalyst has primarily been designed around the modelling of biological systems, reaction network models are also common across chemistry. This section describes two types of functionality, that while of general interest, should be especially useful in the modelling of chemical systems.
- The `@compound` option, which enables the user to designate that a specific species is composed of certain subspecies.
- The `balance_reaction` function, which enables the user to balance a reaction so the same number of components occur on both sides.

## Modelling with compound species

### Creating compound species programmatically
We will first show how to create compound species through [programmatic model construction](@ref programmatic_CRN_construction), and then demonstrate using the DSL. To create a compound species, use the `@compound` macro, first designating the compound, followed by its components (and their stoichiometries). In this example, we will create a CO₂ molecule, consisting of one C atom and two O atoms. First, we create species corresponding to the components:
```@example chem1
using Catalyst
@variables t
@species C(t) O(t)
```
Next, we create the `CO2` compound species:
```@example chem1
@compound CO2 ~ C + 2O
```
Here, the compound is the first argument to the macro, followed by its component (with the left-hand and right-hand sides separated by a `~` sign). While non-compound species (such as `C` and `O`) have their independent variable (in this case `t`) designated, independent variables are generally not designated for compounds (these are instead directly inferred from their components). Components with non-unit stoichiometries have this value written before the component (generally, the rules for designating the components of a compound are identical to those of designating the substrates or products of a reaction). The created compound, `CO2`, is also a species, and can be used wherever e.g. `C` can be used:
```@example chem1
isspecies(CO2)
```
In its metadata, however, is stored information of its components, which can be retrieved using the `components` (returning a vector of its component species) and `coefficients` (returning a vector with each component's stoichiometry) functions:
```@example chem1
components(CO2)
```
```@example chem1
coefficients(CO2)
```
Alternatively, we can retrieve the components and their stoichiometric coefficients as a single vector using the `component_coefficients` function:
```@example chem1
component_coefficients(CO2)
```
Finally, it is possible to check whether a species is a compound or not using the `iscompound` function:
```@example chem1
iscompound(CO2)
```

Compound components that are also compounds are allowed, e.g. we can create a carbonic acid compound (H₂CO₃) that consists of CO₂ and H₂O:
```@example chem1
@species H(t)
@compound H2O ~ 2H + O
@compound H2CO3 ~ CO2 + H2O
```

When multiple compounds are created, they can be created simultaneously using the `@compounds` macro, e.g. the previous code-block can be re-written as:
```@example chem1
@species H(t)
@compounds begin
H2O ~ 2H + O
H2CO3 ~ CO2 + H2O
end
```

### Creating compound species within the DSL
It is also possible to declare species as compound species within the `@reaction_network` DSL, using the `@compounds` options:
```@example chem1
rn = @reaction_network begin
@species C(t) H(t) O(t)
@compounds begin
C2O ~ C + 2O
H2O ~ 2H + O
H2CO3 ~ CO2 + H2O
end
(k1,k2), H2O + CO2 <--> H2CO3
end
```
When creating compound species using the DSL, it is important to note that *every component must be known to the system as a species, either by being declared using the `@species` or `@compound` options, or by appearing in a reaction*. E.g. the following is not valid
```julia
rn = @reaction_network begin``
@compounds begin
C2O ~ C + 2O
H2O ~ 2H + O
H2CO3 ~ CO2 + H2O
end
(k1,k2), H2O+ CO2 <--> H2CO3
end
```
as the components `C`, `H`, and `O` are not declared as a species anywhere. Please also note that only `@compounds` can be used as an option in the DSL, not `@compound`.

### Designating metadata and default values for compounds
Just like for normal species, it is possible to designate metadata and default values for compounds. Metadata is provided after the compound name, but separated from it by a `,`:
```@example chem1
@compound (CO2, [unit="mol"]) ~ C + 2O
```
Default values are designated using `=`, and provided directly after the compound name.:
```@example chem1
@compound (CO2 = 2.0) ~ C + 2O
```
If both default values and meta data are provided, the metadata is provided after the default value:
```@example chem1
@compound (CO2 = 2.0, [unit="mol"]) ~ C + 2O
```
In all of these cases, the side to the left of the `~` must be enclosed within `()`.

### Compounds with multiple independent variables
While we generally do not need to specify independent variables for compound, if the components (together) have more than one independent variable, this have to be done:
```@example chem1
@variables t s
@species N(s) O(t)
@compound NO2(t,s) ~ N + 2O
```
Here, `NO2` depend both on a spatial independent variable (`s`) and a time one (`t`). This is required since, while multiple independent variables can be inferred, their internal order cannot (and must hence be provided by the user).

## Balancing chemical reactions
One use of defining a species as a compound is that they can be used to balance reactions so that the number of components are the same on both sides. Catalyst provides the `balance_reaction` function, which takes a reaction, and returns a balanced version. E.g. let us consider a reaction when carbon dioxide is formed from carbon and oxide `C + O --> CO2`. Here, `balance_reaction` enables us to find coefficients creating a balanced reaction (in this case, where the number of carbon and oxygen atoms are the same on both sides). To demonstrate, we first created the unbalanced reactions:
```@example chem1
rx = @reaction k, C + O --> $CO2
```
Here, the reaction rate (`k`) is not involved in the reaction balancing. We use interpolation for `CO2`, ensuring that the `CO2` used in the reaction is the same one we previously defined as a compound of `C` and `O`. Next, we call the `balance_reaction` function
```@example chem1
balance_reaction(rx)
```
which correctly finds the (rather trivial) solution `C + 2O --> CO2`. Here we note that `balance_reaction` actually returns a vector. The reason is that the reaction balancing problem may have several solutions. Typically, there is only a single solution (in which case this is the vector's only element). No, or an infinite number of, solutions is also possible depending on the given reaction.

Let us consider a more elaborate example, the reaction between ammonia (NH₃) and oxygen (O₂) to form nitrogen monoxide (NO) and water (H₂O). Let us first create the components and the unbalanced reaction:
```@example chem2
using Catalyst # hide
@variables t
@species N(t) H(t) O(t)
@compounds begin
NH3 ~ N + 3H
O2 ~ 2O
NO ~ N + O
H2O ~ 2H + O
end
unbalanced_reaction = @reaction k, $NH3 + $O2 --> $NO + $H2O
```
We can now create a balanced version (where the amount of H, N, and O is the same on both sides):
```@example chem2
balanced_reaction = balance_reaction(unbalanced_reaction)[1]
```

Reactions declared as a part of a `ReactionSystem` (e.g. using the DSL) can be retrieved for balancing using the [`reactions`](@ref) function. Please note that balancing these will not mutate the `ReactionSystem`, but a new reaction system will need to be created using the balanced reactions.

!!! note
Reaction balancing is currently not supported for reactions involving compounds of compounds.
2 changes: 1 addition & 1 deletion docs/src/catalyst_functionality/constraint_equations.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $\lambda$. For now we'll assume the cell can grow indefinitely. We'll also keep
track of one protein $P(t)$, which is produced at a rate proportional $V$ and
can be degraded.

## Coupling ODE constraints via extending a system
## [Coupling ODE constraints via extending a system](@id constraint_equations_coupling_constratins)

There are several ways we can create our Catalyst model with the two reactions
and ODE for $V(t)$. One approach is to use compositional modeling, create
Expand Down
4 changes: 2 additions & 2 deletions src/Catalyst.jl
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export Graph, savegraph, complexgraph

# for creating compounds
include("chemistry_functionality.jl")
export @compound
export components, iscompound, coefficients
export @compound, @compounds
export iscompound, components, coefficients, component_coefficients
export balance_reaction

### Extensions ###
Expand Down
Loading

0 comments on commit c8ec7a0

Please sign in to comment.