Skip to content

Commit

Permalink
Import from CSV commented-out in REDprocess.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tristantc committed Dec 16, 2024
1 parent abfc46a commit e2259c6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions gdplib/reverse_electrodialysis/REDprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@

wnd_dir = os.path.dirname(os.path.realpath(__file__))


# The data.xlsx file contains the financial and stack parameters, and properties of the high and low salinity feed streams.
# The financial_param dataframe contains the financial parameters
# The stack_param dataframe contains the stack parameters
# The flow_conc_data dataframe contains the feed flow and concentration data
Expand All @@ -84,6 +82,11 @@
)
T = pd.read_excel(xls, sheet_name="feed_data", nrows=1, usecols="D", dtype=object)

# stack_param = pd.read_csv(os.path.join(wnd_dir, "stack_param.csv"))
# financial_param = pd.read_csv(os.path.join(wnd_dir, "financial_param.csv"))
# flow_conc_data = pd.read_csv(os.path.join(wnd_dir, "flow_conc_data.csv"), index_col=0)
# T = pd.read_csv(os.path.join(wnd_dir, "T.csv"))


def build_model():
"""Builds the RED GDP model
Expand Down

0 comments on commit e2259c6

Please sign in to comment.