Skip to content

Commit 98c3e90

Browse files
committed
add citations
1 parent abf9b93 commit 98c3e90

File tree

2 files changed

+51
-2
lines changed

2 files changed

+51
-2
lines changed

docs/src/inverse_problems/optimization_ode_param_fitting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ nothing # hide
170170
```
171171

172172
---
173-
## [Citation](@id structural_identifiability_citation)
173+
## [Citation](@id optimization_parameter_fitting_citation)
174174
If you use this functionality in your research, please cite the following paper to support the authors of the Optimization.jl package:
175175
```
176176
@software{vaibhav_kumar_dixit_2023_7738525,

docs/src/model_simulation/simulation_introduction.md

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,4 +336,53 @@ circadian_model = @reaction_network begin
336336
d, P --> 0
337337
end
338338
```
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.},
376+
title = {{JumpProcesses.jl}},
377+
howpublished = {\url{https://github.com/SciML/JumpProcesses.jl/}},
378+
year = {2022}
379+
}
380+
@misc{zagatti_extending_2023,
381+
title = {Extending {JumpProcess}.jl for fast point process simulation with time-varying intensities},
382+
url = {http://arxiv.org/abs/2306.06992},
383+
doi = {10.48550/arXiv.2306.06992},
384+
publisher = {arXiv},
385+
author = {Zagatti, Guilherme Augusto and Isaacson, Samuel A. and Rackauckas, Christopher and Ilin, Vasily and Ng, See-Kiong and Bressan, Stéphane},
386+
year = {2023},
387+
}
388+
```

0 commit comments

Comments
 (0)