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
Copy file name to clipboardExpand all lines: docs/src/model_simulation/simulation_introduction.md
+50-1Lines changed: 50 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -336,4 +336,53 @@ circadian_model = @reaction_network begin
336
336
d, P --> 0
337
337
end
338
338
```
339
-
This type of model will generate so called *variable rate jumps*. Simulation of such model is non-trivial (and Catalyst currently lacks a good interface for this). A detailed description of how to carry out jump simulations for models with time-dependant rates can be found [here](https://docs.sciml.ai/JumpProcesses/stable/tutorials/simple_poisson_process/#VariableRateJumps-for-processes-that-are-not-constant-between-jumps).
339
+
This type of model will generate so called *variable rate jumps*. Simulation of such model is non-trivial (and Catalyst currently lacks a good interface for this). A detailed description of how to carry out jump simulations for models with time-dependant rates can be found [here](https://docs.sciml.ai/JumpProcesses/stable/tutorials/simple_poisson_process/#VariableRateJumps-for-processes-that-are-not-constant-between-jumps).
340
+
341
+
---
342
+
## [Citation](@id simulation_intro_citation)
343
+
When you simulate Catalyst models in your research, please cite the corresponding paper(s) to support the package authors. For ODE simulations:
344
+
```
345
+
@article{DifferentialEquations.jl-2017,
346
+
author = {Rackauckas, Christopher and Nie, Qing},
347
+
doi = {10.5334/jors.151},
348
+
journal = {The Journal of Open Research Software},
349
+
keywords = {Applied Mathematics},
350
+
note = {Exported from https://app.dimensions.ai on 2019/05/05},
351
+
number = {1},
352
+
pages = {},
353
+
title = {DifferentialEquations.jl – A Performant and Feature-Rich Ecosystem for Solving Differential Equations in Julia},
354
+
url = {https://app.dimensions.ai/details/publication/pub.1085583166 and http://openresearchsoftware.metajnl.com/articles/10.5334/jors.151/galley/245/download/},
355
+
volume = {5},
356
+
year = {2017}
357
+
}
358
+
```
359
+
For SDE simulations:
360
+
```
361
+
@article{rackauckas2017adaptive,
362
+
title={Adaptive methods for stochastic differential equations via natural embeddings and rejection sampling with memory},
363
+
author={Rackauckas, Christopher and Nie, Qing},
364
+
journal={Discrete and continuous dynamical systems. Series B},
365
+
volume={22},
366
+
number={7},
367
+
pages={2731},
368
+
year={2017},
369
+
publisher={NIH Public Access}
370
+
}
371
+
```
372
+
For jump simulations:
373
+
```
374
+
@misc{2022JumpProcesses,
375
+
author = {Isaacson, S. A. and Ilin, V. and Rackauckas, C. V.},
0 commit comments