You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In chemistry, [cross-coupling](https://en.wikipedia.org/wiki/Cross-coupling_reaction) is when a catalyst combines two substrates to form a product. In this example, the catalyst ($C$) first binds one substrate ($S₁$) to form an intermediary complex ($S₁Cat$). Next, the complex binds the second substrate ($S₂$) to form another complex ($CP$). Finally, the catalyst releases the now-formed product ($P$). This system is an extended version of the M[Michaelis-Menten system presented earlier](@ref basic_CRN_library_mm).
159
+
```@example crn_library_cc
160
+
using Catalyst
161
+
cc_system = @reaction_network begin
162
+
k₁, S₁ + C --> S₁C
163
+
k₂, S₁C + S₂ --> CP
164
+
k₃, CP --> C + P
165
+
end
166
+
```
167
+
Below, we perform a simple deterministic ODE simulation of teh system. Next, we plot both:
168
+
- The concentration of the catalyst and the intermediaries.
169
+
- The concentration of the substrates and the product.
## [The Wilhelm model](@id basic_CRN_library_wilhelm)
158
188
The Wilhelm model was introduced in [*Wilhelm (2009)*](https://bmcsystbiol.biomedcentral.com/articles/10.1186/1752-0509-3-90) as the smallest CRN model (with constant rates) that exhibits bistability.
0 commit comments