Skip to content

Commit 8f48831

Browse files
committed
doc update
1 parent dcc092d commit 8f48831

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/catalyst_applications/advanced_simulations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ rn_2 = @reaction_network begin
319319
(k1,k2), X1 <--> X2
320320
end
321321
```
322-
If we re-simualte the system we see that the amount of noise have increased:
322+
If we re-simulate the system we see that the amount of noise have increased:
323323
```@example ex3
324324
sprob_1 = SDEProblem(rn_2, u0, tspan, p_1)
325325
sol_1 = solve(sprob_1, ImplicitEM())
@@ -345,7 +345,7 @@ plot(sol_3; idxs = :X1, ylimit = (0.0, 20.0))
345345
```
346346
Here we saw how, by setting a small $η$ value, the amount of noise was reduced.
347347

348-
It is possible to use a different noise scaling expression for each reaction. Here, each reaction's noise scaling expression is provided using the `noise_scaling` metadata. In the following example, we use this to turn the noise of for both reactions involving the species $Y$.
348+
It is possible to use a different noise scaling expression for each reaction. Here, each reaction's noise scaling expression is provided using the `noise_scaling` metadata. In the following example, we use this to tune the noise of for both reactions involving the species $Y$.
349349

350350
```@example ex3
351351
rn_4 = @reaction_network begin
@@ -361,7 +361,7 @@ sprob_4 = SDEProblem(rn_4, u0_4, tspan, p_4)
361361
sol_4 = solve(sprob_4, ImplicitEM())
362362
plot(sol_4; ylimit = (0.0, 20.0))
363363
```
364-
Here, we not that there is n fluctuation in the value of $Y$. If the `@default_noise_scaling` option is used, its value is used for all reactions for which the `noise_scaling` metadata is unused. If `@default_noise_scaling` is not used, teh default noise scaling value is `1.0`.
364+
Here, we not that there is n fluctuation in the value of $Y$. If the `@default_noise_scaling` option is used, its value is used for all reactions for which the `noise_scaling` metadata is unused. If `@default_noise_scaling` is not used, the default noise scaling value is `1.0` (i.e. no scaling).
365365

366366
## Useful plotting options
367367
Catalyst, just like DifferentialEquations, uses the Plots package for all

0 commit comments

Comments
 (0)