Skip to content

Commit 24a506f

Browse files
committed
Add test results
1 parent 99d7b51 commit 24a506f

File tree

3 files changed

+514
-2
lines changed

3 files changed

+514
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ doc/build/
88
archive/
99

1010
# python
11-
__pycache__
11+
__pycache__
12+
venv/

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,14 @@ which looks like
267267

268268
![parameters](out/figure7.png "Figure 7")
269269

270-
and Figure 8,
270+
The association constant is calculated as
271+
272+
>>> K_a = DS.get_K()/2/C_REF*1e-6
273+
>>> d_K_a = DS.get_K_std()/2/C_REF*1e-6
274+
>>> "K_a at %3.2f K is %f +/- %f" % (DS.T[-24], K_a[-24], 3.*d_K_a[-24])
275+
'K_a at 295.00 K is 0.671648 +/- 0.033107'
276+
277+
We plot Figure 8 via
271278

272279
>>> from src.plot_params import plot_figure8
273280
>>> plot_figure8(SS, DS)

0 commit comments

Comments
 (0)