Skip to content

Commit a18fa50

Browse files
authored
Merge pull request #418 from zsarnoczay/master
bugfix in SIM/capacitySpectrum
2 parents 468929d + 3f1c58b commit a18fa50

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/performSIMULATION/capacitySpectrum/CapacityModels.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@
5555
import numpy as np
5656
import pandas as pd
5757

58-
ap_DesignLevel = {1940: 'PC', 1975: 'MC', 2100: 'HC'} # noqa: N816
58+
ap_DesignLevel = {1940: 'Pre-Code', 1975: 'Moderate-Code', 2100: 'High-Code'} # noqa: N816
5959
# original:
60-
# ap_DesignLevel = {1940: 'PC', 1940: 'LC', 1975: 'MC', 2100: 'HC'}
60+
# ap_DesignLevel = {1940: 'Pre-Code', 1940: 'Low-Code', 1975: 'Moderate-Code', 2100: 'High-Code'}
6161
# Note that the duplicated key is ignored, and Python keeps the last
6262
# entry.
6363

64-
ap_DesignLevel_W1 = {0: 'MC', 1975: 'MC', 2100: 'HC'} # noqa: N816
64+
ap_DesignLevel_W1 = {0: 'Moderate-Code', 1975: 'Moderate-Code', 2100: 'High-Code'} # noqa: N816
6565
# original:
66-
# ap_DesignLevel_W1 = {0: 'PC', 0: 'LC', 1975: 'MC', 2100: 'HC'}
66+
# ap_DesignLevel_W1 = {0: 'Pre-Code', 0: 'Low-Code', 1975: 'Moderate-Code', 2100: 'High-Code'}
6767
# same thing applies
6868

6969

0 commit comments

Comments
 (0)