Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fixed initial condition mistakes. Code might not work on early version of python 3. Updated contact details and added orcid encase email becomes out of date
  • Loading branch information
mjowen committed Jan 17, 2024
1 parent df76634 commit c174428
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This project contains the supplemental Python code for "Mathematical models of c
To use this code follow the installation steps below.

### Prerequisites and Version Numbers
This code is written and tested in Python ver. 3.7.9 however any Python version (not including Python 2 or earlier) should be suitable. In addition to this Numpy (ver. 1.19.3), Scipy (ver. 1.7.0) and Matplotlib (ver 3.4.2) are also used throughout this project.
This code is written and tested in Python ver. 3.7.9. In addition to this Numpy (ver. 1.19.3), Scipy (ver. 1.7.0) and Matplotlib (ver 3.4.2) are also used throughout this project.

### Installation
There are 2 methods for downloading the project.
Expand Down Expand Up @@ -61,7 +61,7 @@ Below is an example for solving the Hockin model for 15pM of TF (rather than the
```python
import numpy as np
import hockin
y = hockin.setIC(np.array([15e-12, 1.45e-6, 2e-8, 1e-8, 1e-8/100, 7e-10, 9e-8, 1.6e-7, 3e-8, 3.45e-6, 2.5e-9]));
y = hockin.setIC(np.array([15e-12, 1.4e-6, 2e-8, 1e-8, 1e-8/100, 7e-10, 9e-8, 1.6e-7, 3e-8, 3.4e-6, 2.5e-9]));
k = hockin.getRates();
k[1] = k[1]*2;
hockin.plotThr(k,y,1200)
Expand Down Expand Up @@ -101,7 +101,7 @@ Licensed under the [GNU GENERAL PUBLIC LICENSE](LICENSE)
<!-- CONTACT -->
## Contact

Matt J. Owen - matthew[email protected]
Matt J. Owen - matt[email protected] - https://orcid.org/0000-0003-1430-5473

Project Link: [https://github.com/mjowen/MathematicalModelsOfCoagulation-AreWeThereYet](https://github.com/mjowen/MathematicalModelsOfCoagulation-AreWeThereYet)

0 comments on commit c174428

Please sign in to comment.