Skip to content

Commit

Permalink
fix Gran extract data function (#254)
Browse files Browse the repository at this point in the history
* fix Gran extract data function

* Increment version number
  • Loading branch information
monroews authored and HannahSi committed Dec 15, 2019
1 parent 73b98e6 commit 9b034fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aguaclara/research/environmental_processes_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def Gran(data_file_path):
df = pd.read_csv(data_file_path, delimiter='\t', header=5)
V_t = np.array(pd.to_numeric(df.iloc[0:, 0]))*u.mL
pH = np.array(pd.to_numeric(df.iloc[0:, 1]))
df = pd.read_csv(data_file_path, delimiter='\t', header=-1, nrows=5)
df = pd.read_csv(data_file_path, delimiter='\t', header=None, nrows=5)
V_S = pd.to_numeric(df.iloc[0, 1])*u.mL
N_t = pd.to_numeric(df.iloc[1, 1])*u.mole/u.L
V_eq = pd.to_numeric(df.iloc[2, 1])*u.mL
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name = 'aguaclara',
version = '0.1.13',
version = '0.1.14',
description = (
'An open-source Python package for designing and performing research '
'on AguaClara water treatment plants.'
Expand Down

0 comments on commit 9b034fc

Please sign in to comment.