Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* `12_arrival_classes.ipynb`: simulate unique processes for different classes of arrival to the model.
* `distributions.py`: module containing some distributions to reduce code in notebooks.
* `basic_model.py`: contains a single activity version of the call centre model to use with `07_exercise.ipynb`
* `13_warm_up.ipynb`: contains explanation of implementing warm up
* `14_initial_conditions.ipynb`: contains explanation of manually setting up processes before a model is run
* `15_resource_store.ipynb`: introduction to `Store` and `FilterStore` for advanced resource modelling
* `sim_utility.py`: added `trace`, `set_trace`, and `spawn_seeds` functions to use across notebooks.

## [v0.2.0 - 11/02/2024](https://github.com/pythonhealthdatascience/intro-open-sim/releases/tag/v0.2.0) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.14849934.svg)](https://doi.org/10.5281/zenodo.14849934)

Expand Down
5 changes: 3 additions & 2 deletions content/10_multiple_arrival_processes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"\n",
"We will work with a hypothetical hospital that provides emergency orthopedic surgery to different classes of patient.\n",
"\n",
"![model image](img/multiple_arrivals.png \"Urgent care call centre\")\n",
"<img src=\"img/multiple_arrivals.png\" alt=\"model image\" width=\"800\">\n",
"\n",
"\n",
"| ID | Arrival Type | Distribution | Mean (mins) |\n",
"|----|-----------------|--------------|-------------|\n",
Expand Down Expand Up @@ -811,7 +812,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.11"
"version": "3.11.14"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion content/13_warm_up.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.11"
"version": "3.11.15"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion content/14_initial_conditions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.11"
"version": "3.11.15"
}
},
"nbformat": 4,
Expand Down
Loading
Loading