Skip to content

Commit 2e53383

Browse files
authored
Merge pull request #18 from pythonhealthdatascience/dev
feat(Store)
2 parents 6b3fe05 + b9fc547 commit 2e53383

8 files changed

Lines changed: 1467 additions & 4 deletions

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
* `12_arrival_classes.ipynb`: simulate unique processes for different classes of arrival to the model.
1616
* `distributions.py`: module containing some distributions to reduce code in notebooks.
1717
* `basic_model.py`: contains a single activity version of the call centre model to use with `07_exercise.ipynb`
18+
* `13_warm_up.ipynb`: contains explanation of implementing warm up
19+
* `14_initial_conditions.ipynb`: contains explanation of manually setting up processes before a model is run
20+
* `15_resource_store.ipynb`: introduction to `Store` and `FilterStore` for advanced resource modelling
21+
* `sim_utility.py`: added `trace`, `set_trace`, and `spawn_seeds` functions to use across notebooks.
1822

1923
## [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)
2024

content/10_multiple_arrival_processes.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"\n",
1212
"We will work with a hypothetical hospital that provides emergency orthopedic surgery to different classes of patient.\n",
1313
"\n",
14-
"![model image](img/multiple_arrivals.png \"Urgent care call centre\")\n",
14+
"<img src=\"img/multiple_arrivals.png\" alt=\"model image\" width=\"800\">\n",
15+
"\n",
1516
"\n",
1617
"| ID | Arrival Type | Distribution | Mean (mins) |\n",
1718
"|----|-----------------|--------------|-------------|\n",
@@ -811,7 +812,7 @@
811812
"name": "python",
812813
"nbconvert_exporter": "python",
813814
"pygments_lexer": "ipython3",
814-
"version": "3.11.11"
815+
"version": "3.11.14"
815816
}
816817
},
817818
"nbformat": 4,

content/13_warm_up.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@
514514
"name": "python",
515515
"nbconvert_exporter": "python",
516516
"pygments_lexer": "ipython3",
517-
"version": "3.11.11"
517+
"version": "3.11.15"
518518
}
519519
},
520520
"nbformat": 4,

content/14_initial_conditions.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@
588588
"name": "python",
589589
"nbconvert_exporter": "python",
590590
"pygments_lexer": "ipython3",
591-
"version": "3.11.11"
591+
"version": "3.11.15"
592592
}
593593
},
594594
"nbformat": 4,

0 commit comments

Comments
 (0)