I hereby claim:
- I am marekyggdrasil on github.
- I am renzokuken (https://keybase.io/renzokuken) on keybase.
- I have a public key ASBlmYD61f2p1NbjpbpO7pCJH_4zOEmIbMry26gc4P7lIAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # This file was created Wed Oct 30 15:12:39 2019 | |
| # Created by: | |
| # :-) GROMACS - gmx energy, 2018 (-: | |
| # | |
| # Executable: /gpfsnyu/packages/gromacs/gnu/2018/bin/gmx | |
| # Data prefix: /gpfsnyu/packages/gromacs/gnu/2018 | |
| # Working dir: /gpfsnyu/home/mmn362/CompChem/Practicum3/Step10b | |
| # Command line: | |
| # gmx energy -f md.edr -o berendsen_temperature.xvg | |
| # gmx energy is part of G R O M A C S: |
| $ python -m pytest run.py -vvv | |
| ============================= test session starts ============================== | |
| platform darwin -- Python 3.5.3, pytest-4.2.0, py-1.8.0, pluggy-0.12.0 -- /Users/marek/.pyenv/versions/3.5.3/bin/python | |
| cachedir: .pytest_cache | |
| rootdir: /Users/marek/Development/qtl/36a5d4cb5674e14792b03b4f79b89402, inifile: | |
| plugins: steps-1.6.4, timeout-1.3.3, flaky-3.6.1 | |
| collected 8 items | |
| braids_test.py::test_scenario_1[step_a] PASSED [ 12%] | |
| braids_test.py::test_scenario_1[step_b] PASSED [ 25%] |
| ( todo ) |
| from scipy.integrate import solve_ivp | |
| import numpy as np | |
| def exponential_decay(t, y, alpha, beta): return -alpha*y + beta | |
| for alpha in np.linspace(0.5, 0.7, 5) : | |
| beta = 1. | |
| sol = solve_ivp(lambda t, y: exponential_decay(t, y, alpha, beta), [0, 10], [2, 4, 8]) |