Skip to content

Commit

Permalink
Merge pull request #2 from harmsm/main
Browse files Browse the repository at this point in the history
minimal functional unit
  • Loading branch information
harmsm committed Jul 31, 2024
2 parents 754b563 + e75bfe3 commit cebe6b4
Show file tree
Hide file tree
Showing 41 changed files with 6,224 additions and 203 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: dataprob
name: linkage

on:
push:
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include src/linkage/data/
include src/linkage/data/*
include tests/data/
include tests/data/*
1 change: 1 addition & 0 deletions docs/badges/coverage-badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions docs/badges/ghwf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/badges/rtd.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/badges/tests-badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions notebooks/data/itc_binding_expt.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
injection,heat
0.0,
2.0,-0.6698887856953665
2.0,-0.6653981051510617
2.0,-0.6628770104848354
2.0,-0.6572600039805307
2.0,-0.6544483711885344
2.0,-0.6504849636862378
2.0,-0.6404583989405751
2.0,-0.6376838389904914
2.0,-0.6378359001575715
2.0,-0.633540956451369
2.0,-0.6251375384830915
2.0,-0.6201433401680164
2.0,-0.6151452055627816
2.0,-0.5484958725734232
2.0,-0.2920939813000814
2.0,-0.23494590560590042
2.0,-0.22694817238908618
2.0,-0.22704683549278215
2.0,-0.2229765373934299
2.0,-0.22315231943129848
2.0,-0.2261348200467626
2.0,-0.22047538531018618
2.0,-0.21948399323774065
2.0,-0.21865938338939592
2.0,-0.2160287541946412
27 changes: 27 additions & 0 deletions notebooks/data/itc_blank_expt.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
injection,heat
0.0,
2.0,-0.2442462588685921
2.0,-0.24295005228246766
2.0,-0.23557114377762883
2.0,-0.23844502898873843
2.0,-0.23933754638183913
2.0,-0.2443435490673292
2.0,-0.23589295931746368
2.0,-0.2380656119509871
2.0,-0.2330682723652203
2.0,-0.2279854541512425
2.0,-0.23190528384682552
2.0,-0.23464743869038096
2.0,-0.2366097006847176
2.0,-0.22320395204965413
2.0,-0.22823351798594146
2.0,-0.2300511120307936
2.0,-0.2209894117300196
2.0,-0.21866333693069204
2.0,-0.223161934647072
2.0,-0.21805199016761126
2.0,-0.21495030878756455
2.0,-0.2142776639631268
2.0,-0.20871828135605286
2.0,-0.2174045643244037
2.0,-0.21417738451534674
381 changes: 381 additions & 0 deletions notebooks/global-fit.ipynb

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = {attr = "linkage.__version__.__version__"}

[tool.setuptools.package-data]
"*" = [
"src/linkage/data/*"
"tests/data/*"
]

[project]
Expand All @@ -20,6 +20,7 @@ dependencies = [
"numpy",
"pandas",
"matplotlib",
"openpyxl",
"dataprob"
]

Expand Down
Loading

0 comments on commit cebe6b4

Please sign in to comment.