Skip to content

Commit

Permalink
Add functionality for processing txt files
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorbrown75 committed May 2, 2024
1 parent 2e3936c commit a5cf69c
Show file tree
Hide file tree
Showing 4 changed files with 906 additions and 107 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -387,3 +387,4 @@ src/googletest-release-1.8.0/googlemock/gtest/CMakeFiles/gtest_main.dir/
src/googletest-release-1.8.0/googlemock/gtest/
samples/CSP/sco2_analysis_python_V2/core/PySSC.py
samples/CSP/sco2_analysis_python_V2/core/PySSC.py
samples/CSP/sco2_analysis_python_V2/package-list.txt
5 changes: 1 addition & 4 deletions samples/CSP/sco2_analysis_python_V2/core/sco2_cycle_ssc.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,9 +844,6 @@ def open_csv(self, file_name):
self.form_old_result_dict_from_csv_array()

return True

def combine_by_key(self, list_of_collections, key_name):
distinct_vals = []


# 'Internal' Methods
Expand Down Expand Up @@ -1135,7 +1132,7 @@ def get_config_name(self, cycle_config, recomp_frac, bypass_frac):
return "partial"

if(recomp_frac <= 0.0001):
return "partial no recomp"
return "partial intercooling"
else:
return "partial"
# TSF
Expand Down

0 comments on commit a5cf69c

Please sign in to comment.