Metadata-Version: 2.1
Name: pypharm
Version: 1.1.0
Summary: Module for solving pharmacokinetic problems
Home-page: https://github.com/Krash13/PyPharm
Author: Krash13
Author-email: krasheninnikov.r.s@muctr.ru
License: UNKNOWN
Keywords: pharmacokinetics compartment-model
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: numpy (>=1.22.1)
Requires-Dist: scipy (>=1.8.0)

PyPharm
----------
 
1) To install the package we use

```
pip install pypharm
```

2) Example of description and calculation of a model using the module

Model

![img.png](img.png)

![img_2.png](img_2.png)

Implementation of PyPharm
```python
from PyPharm import BaseCompartmentModel

model = BaseCompartmentModel([[0, 0.4586], [0.1919, 0]], [0.0309, 0], volumes=[228, 629])

res = model(90, d=5700, compartment_number=0)
```

