-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
416e545
commit 0a9e791
Showing
1 changed file
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,35 @@ | ||
# restitution-cobweb | ||
|
||
## Description | ||
|
||
Dashboard to investigate dynamics of a periodically stimulated cardiac cell based on its restitution function. | ||
Displays the restitution function, the iterative map as a cobweb plot, and the APD sequence. | ||
Parameters for the simulation and the restitution function may be varied using the sliders. | ||
|
||
Launch app here: | ||
https://restitution-cobweb.herokuapp.com/ | ||
The app is currently hosted on Heroku [here](https://restitution-cobweb.herokuapp.com/). | ||
|
||
## Running the app locally | ||
|
||
To run the app on your local computer, clone the repository, create a virtual environment and install the necessary requirements with | ||
``` | ||
pip install --upgrade pip | ||
pip install -r requirements.txt | ||
``` | ||
|
||
Then run the app with | ||
``` | ||
python app.py | ||
``` | ||
|
||
This should show | ||
``` | ||
Dash is running on http://127.0.0.1:8050/ | ||
``` | ||
|
||
You can now visit the app at this URL. | ||
|
||
## Preview | ||
|
||
<img width="930" alt="Screenshot 2022-08-29 at 3 41 27 PM" src="https://user-images.githubusercontent.com/36854425/187284481-80b865ef-7d67-44df-bf37-706dd4621c1d.png"> | ||
|
||
|