Skip to content

Commit

Permalink
more adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
cwhanse committed Jan 1, 2024
1 parent 54f70f0 commit 6eac0fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ivcurves/test_sets/case3a.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Index,photocurrent,saturation_current,resistance_series,resistance_shunt,n,cells_in_series,Temperature
1,8.0,5e-10,0.1,3000,1.01,72,298.15
1,8,5e-10,0.1,3000,1.01,72,298.15
2 changes: 1 addition & 1 deletion ivcurves/test_sets/case3b.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Index,photocurrent,saturation_current,resistance_series,resistance_shunt,n,cells_in_series,Temperature
1,1.0,3e-08,1.0,300,1.3,72,298.15
1,1,3e-08,1.0,300,1.3,72,298.15
4 changes: 2 additions & 2 deletions ivcurves/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
DOCS_DIR = REPO_ROOT_DIR / 'docs' / 'sphinx' / 'source'
IV_PARAMETER_NAMES = ['photocurrent', 'saturation_current',
'resistance_series', 'resistance_shunt', 'n',
'cells_in_series', 'Temperature']
'cells_in_series']
COMPETITION_INVALID_SCORE_VALUE = 'nan'


Expand Down Expand Up @@ -120,7 +120,7 @@ def read_iv_curve_parameter_sets(filename):
r"""
Returns a dictionary of indices to a list of these values:
photocurrent, saturation_current, resistance_series,
resistance_shunt, n, and cells_in_series.
resistance_shunt, n, cells_in_series.
The indices and values are read from the CSV file at ``filename``.
Parameters
Expand Down

0 comments on commit 6eac0fa

Please sign in to comment.