PyDPEET 0.3.0__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. pydpeet-0.4.0/AUTHORS.md +36 -0
  2. pydpeet-0.4.0/PKG-INFO +135 -0
  3. pydpeet-0.4.0/README.md +113 -0
  4. {pydpeet-0.3.0 → pydpeet-0.4.0}/pyproject.toml +13 -8
  5. pydpeet-0.4.0/src/PyDPEET.egg-info/PKG-INFO +135 -0
  6. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/PyDPEET.egg-info/SOURCES.txt +20 -11
  7. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/PyDPEET.egg-info/requires.txt +3 -3
  8. pydpeet-0.4.0/src/pydpeet/__init__.py +107 -0
  9. pydpeet-0.4.0/src/pydpeet/_dev_utils/list_definitions.py +334 -0
  10. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_add_capacity.py +26 -0
  11. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_add_primitive_segments.py +22 -0
  12. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_add_resistance_internal.py +23 -0
  13. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_add_soc.py +33 -0
  14. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_convert.py +19 -0
  15. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_df_primitives_correction.py +40 -0
  16. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_extract_ocv_iocv.py +28 -0
  17. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_extract_sequence_overview.py +22 -0
  18. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_filter_and_split_df_by_blocks.py +35 -0
  19. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_generate_instructions.py +28 -0
  20. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_merge_into_series.py +26 -0
  21. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/regenerate_read.py +19 -0
  22. pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/run_all.py +41 -0
  23. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/citations/citeme.py +26 -1
  24. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/configs/config.py +79 -61
  25. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/convert.py +136 -131
  26. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/arbin_4_23_PV090331/formatter.py +3 -3
  27. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/arbin_4_23_PV090331/mapper.py +2 -2
  28. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/arbin_4_23_PV090331/reader.py +3 -3
  29. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/arbin_8_00_PV221201/formatter.py +5 -5
  30. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/arbin_8_00_PV221201/mapper.py +2 -2
  31. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/arbin_8_00_PV221201/reader.py +3 -3
  32. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/basytec_6_3_1_0/formatter.py +4 -4
  33. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/basytec_6_3_1_0/mapper.py +2 -2
  34. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/basytec_6_3_1_0/reader.py +1 -1
  35. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/digatron_4_20_6_236/formatter.py +4 -4
  36. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/digatron_4_20_6_236/mapper.py +2 -2
  37. pydpeet-0.4.0/src/pydpeet/io/device/digatron_4_20_6_236/reader.py +62 -0
  38. pydpeet-0.4.0/src/pydpeet/io/device/digatron_eis_4_20_6_236/formatter.py +39 -0
  39. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/digatron_eis_4_20_6_236/mapper.py +2 -2
  40. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/digatron_eis_4_20_6_236/reader.py +5 -2
  41. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/neware_8_0_0_516/formatter.py +8 -8
  42. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/neware_8_0_0_516/mapper.py +2 -2
  43. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/neware_8_0_0_516/reader.py +2 -2
  44. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/parstat_2_63_3/formatter.py +10 -10
  45. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/parstat_2_63_3/mapper.py +2 -2
  46. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/parstat_2_63_3/reader.py +1 -1
  47. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/safion_1_9/formatter.py +6 -6
  48. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/safion_1_9/mapper.py +2 -2
  49. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/safion_1_9/reader.py +1 -1
  50. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/zahner/formatter.py +15 -15
  51. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/zahner/mapper.py +4 -4
  52. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/zahner/reader.py +5 -2
  53. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/zahner_new/formatter.py +19 -19
  54. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/zahner_new/mapper.py +6 -6
  55. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/zahner_new/reader.py +5 -2
  56. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/map.py +7 -5
  57. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/read.py +8 -8
  58. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/utils/ext_path.py +5 -5
  59. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/utils/formatter_utils.py +13 -13
  60. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/average.py +5 -5
  61. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/capacity.py +17 -17
  62. pydpeet-0.4.0/src/pydpeet/process/analyze/configs/battery_config.py +126 -0
  63. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/cycle.py +7 -7
  64. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/efficiency.py +16 -16
  65. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/energy.py +22 -12
  66. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/extract/dva_ica.py +23 -20
  67. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/extract/ocv.py +8 -8
  68. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/power.py +3 -3
  69. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/resistance.py +8 -8
  70. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/soc.py +34 -23
  71. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/soh.py +10 -8
  72. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/utils.py +4 -4
  73. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/merge/series.py +10 -10
  74. pydpeet-0.4.0/src/pydpeet/process/sequence/configs/config.py +634 -0
  75. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/step_analyzer.py +71 -133
  76. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/annotate/annotate_primitives.py +4 -4
  77. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/postprocessing/filter_df.py +57 -4
  78. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/postprocessing/generate_instructions.py +12 -103
  79. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/processing/analyze_segments.py +6 -5
  80. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/processing/check_CV_results.py +3 -3
  81. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/processing/check_power_zero_watt_segments.py +3 -3
  82. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/processing/check_zero_length.py +3 -3
  83. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/visualize/visualize_data.py +42 -54
  84. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/res/res_for_unittests/res.py +14 -46
  85. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/utils/assert_raises_and_print.py +1 -1
  86. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/utils/guardrails.py +0 -10
  87. pydpeet-0.4.0/src/pydpeet/utils/log_time.py +15 -0
  88. pydpeet-0.3.0/PKG-INFO +0 -97
  89. pydpeet-0.3.0/README.md +0 -75
  90. pydpeet-0.3.0/src/PyDPEET.egg-info/PKG-INFO +0 -97
  91. pydpeet-0.3.0/src/pydpeet/__init__.py +0 -56
  92. pydpeet-0.3.0/src/pydpeet/io/device/digatron_4_20_6_236/reader.py +0 -45
  93. pydpeet-0.3.0/src/pydpeet/io/device/digatron_eis_4_20_6_236/formatter.py +0 -39
  94. pydpeet-0.3.0/src/pydpeet/io/utils/timing.py +0 -36
  95. pydpeet-0.3.0/src/pydpeet/process/analyze/configs/battery_config.py +0 -39
  96. pydpeet-0.3.0/src/pydpeet/process/analyze/configs/ocv_config.py +0 -177
  97. pydpeet-0.3.0/src/pydpeet/process/analyze/configs/step_analyzer_config.py +0 -178
  98. pydpeet-0.3.0/src/pydpeet/process/sequence/configs/config.py +0 -17
  99. pydpeet-0.3.0/src/pydpeet/process/sequence/utils/configs/CONFIG_Fallback.py +0 -237
  100. pydpeet-0.3.0/src/pydpeet/process/sequence/utils/configs/CONFIG_preprocessing.py +0 -243
  101. pydpeet-0.3.0/src/pydpeet/process/sequence/utils/console_prints/log_time.py +0 -30
  102. pydpeet-0.3.0/src/pydpeet/utils/__init__.py +0 -7
  103. {pydpeet-0.3.0 → pydpeet-0.4.0}/LICENCE.md +0 -0
  104. {pydpeet-0.3.0 → pydpeet-0.4.0}/setup.cfg +0 -0
  105. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/PyDPEET.egg-info/dependency_links.txt +0 -0
  106. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/PyDPEET.egg-info/top_level.txt +0 -0
  107. {pydpeet-0.3.0/src/pydpeet/dev_utils → pydpeet-0.4.0/src/pydpeet/_dev_utils}/__init__.py +0 -0
  108. {pydpeet-0.3.0/src/pydpeet/dev_utils → pydpeet-0.4.0/src/pydpeet/_dev_utils}/check_test_coverge/check_test_coverage.py +0 -0
  109. {pydpeet-0.3.0/src/pydpeet/dev_utils → pydpeet-0.4.0/src/pydpeet/_dev_utils}/generate_inits/__init__.py +0 -0
  110. {pydpeet-0.3.0/src/pydpeet/dev_utils → pydpeet-0.4.0/src/pydpeet/_dev_utils}/generate_inits/generate_inits.py +0 -0
  111. /pydpeet-0.3.0/AUTHORS.md → /pydpeet-0.4.0/src/pydpeet/_dev_utils/regenerate_test_references/__init__.py +0 -0
  112. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/citations/__init__.py +0 -0
  113. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/citations/html_writer.py +0 -0
  114. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/__init__.py +0 -0
  115. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/configs/__init__.py +0 -0
  116. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/configs/const.py +0 -0
  117. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/__init__.py +0 -0
  118. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/arbin_4_23_PV090331/__init__.py +0 -0
  119. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/arbin_8_00_PV221201/__init__.py +0 -0
  120. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/basytec_6_3_1_0/__init__.py +0 -0
  121. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/digatron_4_20_6_236/__init__.py +0 -0
  122. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/digatron_eis_4_20_6_236/__init__.py +0 -0
  123. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/neware_8_0_0_516/__init__.py +0 -0
  124. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/parstat_2_63_3/__init__.py +0 -0
  125. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/safion_1_9/__init__.py +0 -0
  126. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/zahner/__init__.py +0 -0
  127. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/device/zahner_new/__init__.py +0 -0
  128. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/utils/__init__.py +0 -0
  129. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/utils/load_custom_module.py +0 -0
  130. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/io/write.py +0 -0
  131. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/__init__.py +0 -0
  132. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/__init__.py +0 -0
  133. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/configs/__init__.py +0 -0
  134. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/analyze/extract/__init__.py +0 -0
  135. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/merge/__init__.py +0 -0
  136. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/__init__.py +0 -0
  137. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/configs/__init__.py +0 -0
  138. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/__init__.py +0 -0
  139. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/annotate/__init__.py +0 -0
  140. {pydpeet-0.3.0/src/pydpeet/process/sequence/utils/configs → pydpeet-0.4.0/src/pydpeet/process/sequence/utils/console_prints}/__init__.py +0 -0
  141. {pydpeet-0.3.0/src/pydpeet/process/sequence/utils/console_prints → pydpeet-0.4.0/src/pydpeet/process/sequence/utils/postprocessing}/__init__.py +0 -0
  142. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/postprocessing/df_primitives_correction.py +0 -0
  143. {pydpeet-0.3.0/src/pydpeet/process/sequence/utils/postprocessing → pydpeet-0.4.0/src/pydpeet/process/sequence/utils/preprocessing}/__init__.py +0 -0
  144. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/preprocessing/calculate_thresholds.py +0 -0
  145. {pydpeet-0.3.0/src/pydpeet/process/sequence/utils/preprocessing → pydpeet-0.4.0/src/pydpeet/process/sequence/utils/processing}/__init__.py +0 -0
  146. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/processing/attempt_to_merge_neighboring_segments.py +0 -0
  147. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/processing/split_in_segments.py +0 -0
  148. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/processing/supress_smaller_segments.py +0 -0
  149. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/process/sequence/utils/processing/widen_constant_segments.py +0 -0
  150. {pydpeet-0.3.0/src/pydpeet/process/sequence/utils/processing → pydpeet-0.4.0/src/pydpeet/process/sequence/utils/visualize}/__init__.py +0 -0
  151. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/res/__init__.py +0 -0
  152. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/settings.py +0 -0
  153. {pydpeet-0.3.0/src/pydpeet/process/sequence/utils/visualize → pydpeet-0.4.0/src/pydpeet/utils}/__init__.py +0 -0
  154. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/utils/logging_style.py +0 -0
  155. {pydpeet-0.3.0 → pydpeet-0.4.0}/src/pydpeet/version.py +0 -0
@@ -0,0 +1,36 @@
1
+ # Notes
2
+
3
+ - All authors were sorted alphabetically according to their last names.
4
+ - For authors who only want their user name to be displayed, the first letter of said name was used.
5
+ - If you feel that your name might be missing from that list, please contact the project leads or open a PR.
6
+ - If you find your name on this list but want to stay anonymous, please contact us to have your name removed.
7
+
8
+ # Contributors
9
+
10
+ ## Project Lead
11
+
12
+ - Martin Otto (MAtahualpa)
13
+ - Anton Schlösser (schlanto)
14
+
15
+ ## Development Lead
16
+
17
+ - Daniel Schröder (Plompudu, daniel_shr)
18
+
19
+ ## Developers
20
+
21
+ - Max Thorn (northmaybe)
22
+
23
+ ## Inactive
24
+
25
+ - Cataldo De Simone
26
+ - Alexander Hinrichsen
27
+ - Jan Kalisch
28
+
29
+ ## Initial Developers
30
+
31
+ - Cataldo De Simone
32
+ - Alexander Hinrichsen
33
+ - Jan Kalisch
34
+ - Martin Otto (MAtahualpa)
35
+ - Anton Schlösser (schlanto)
36
+ - Daniel Schröder (daniel_shr)
pydpeet-0.4.0/PKG-INFO ADDED
@@ -0,0 +1,135 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyDPEET
3
+ Version: 0.4.0
4
+ Summary: Python package to read, unify, and convert battery measurement data from arbitrary battery cyclers to Parquet files. This package also provides functions to process, evaluate, and visualise the standardised data.
5
+ Author: Anton Schlösser, Martin Otto, Alexander Günter Hinrichsen, Jan Kalisch, Daniel Schröder, Cataldo De Simone
6
+ Maintainer-email: PyDPEET Team <pydpeet@eet.tu-berlin.de>
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENCE.md
10
+ License-File: AUTHORS.md
11
+ Requires-Dist: pandas==3.0.3
12
+ Requires-Dist: numpy==2.3.3
13
+ Requires-Dist: pyarrow==19.0.1
14
+ Requires-Dist: python-calamine>=0.3.1
15
+ Requires-Dist: numba==0.64.0
16
+ Requires-Dist: matplotlib==3.10.8
17
+ Requires-Dist: scipy==1.17.1
18
+ Requires-Dist: bibtexparser==1.4.4
19
+ Requires-Dist: scikit-learn==1.8.0
20
+ Requires-Dist: ipykernel>=7.2.0
21
+ Dynamic: license-file
22
+
23
+ <div align="center">
24
+
25
+ [![Release](https://img.shields.io/github/v/release/eet-tub/pydpeet)](https://github.com/eet-tub/pydpeet/releases)
26
+ [![PyPI](https://img.shields.io/pypi/v/pydpeet)](https://pypi.org/project/pydpeet/)
27
+ [![Docs](https://img.shields.io/badge/docs-latest-blue)](https://eet-tub.github.io/pydpeet/)
28
+ [![License](https://img.shields.io/github/license/eet-tub/pydpeet)](LICENSE)
29
+
30
+ </div>
31
+
32
+ <!-- [![Python](https://img.shields.io/pypi/pyversions/pydpeet)](https://pypi.org/project/pydpeet/)
33
+ [![CI](https://github.com/eet-tub/pydpeet/actions/workflows/github-ci.yml/badge.svg)](https://github.com/eet-tub/pydpeet/actions/workflows/github-ci.yml)
34
+ [![DOI](https://zenodo.org/badge/DOI/<DOI>.svg)](https://doi.org/<DOI>)
35
+ [![Coverage](https://codecov.io/gh/eet-tub/pydpeet/branch/main/graph/badge.svg)](https://codecov.io/gh/eet-tub/pydpeet)
36
+ [![Downloads](https://img.shields.io/pypi/dm/pydpeet)](https://pypi.org/project/pydpeet/)
37
+ [![Status](https://joss.theoj.org/papers/<paper-id>/status.svg)](...) -->
38
+
39
+ # PyDPEET - Fast and Easy Battery Data Unification, Processing, and Analysis
40
+
41
+ ## Contact
42
+
43
+ Feel free to open an issue on GitHub or use our email for direct enquiries: pydpeet@eet.tu-berlin.de.
44
+
45
+ <!-- ## Technical Components
46
+ alternatively: "Dependencies"
47
+ Probably not necessary? -->
48
+
49
+ ## Project Goals
50
+
51
+ PyDPEET is a Python package developed to handle battery measurement data from various cyclers and other measurement devices by
52
+ * converting input data into a standardised format using Pandas data frames,
53
+ * allowing users to merge multiple single tests into test series of one cell, and multiple test series into multi-cell measurement campaigns, and
54
+ * adding sequence info either by automatically synthesising from an existing schedule or automatically analysing in case of unknown measurement procedure.
55
+
56
+ Standardised data can then be analysed using various functions which add additional data columns to a data frame:
57
+ * power, energy, capacity,
58
+ * inner resistance,
59
+ * state of charge (SOC), state of health (SOH),
60
+ * OCV points, DVA and ICA,
61
+ * and more...
62
+
63
+ Processed data can be exported to highly efficient Parquet files to be stored and re-imported later -- or to CSV or XLSX formats to maintain legacy workflows.
64
+
65
+ ## Citing PyDPEET
66
+
67
+ ## Documentation
68
+
69
+ ![PyDPEET Workflow](docs/res/PyDPEET_Overview.svg "PyDPEET Workflow")
70
+
71
+ ### GitHub Pages
72
+
73
+ * [PyDPEET homepage](https://eet-tub.github.io/pydpeet/)
74
+ * [Installation](https://eet-tub.github.io/pydpeet/installation.html)
75
+ * [API reference](https://eet-tub.github.io/pydpeet/api/index.html)
76
+ * [Examples](https://eet-tub.github.io/pydpeet/examples/index.html)
77
+ * [Developer Guide](https://eet-tub.github.io/pydpeet/developer.html)
78
+
79
+ ## Installation
80
+
81
+ ### For Users
82
+
83
+ Install PyDPEET directly from PyPI using uv or pip.
84
+
85
+ ```
86
+ uv add pydpeet
87
+ ```
88
+
89
+ or
90
+
91
+ ```
92
+ pip install pydpeet
93
+ ```
94
+
95
+ For detailed installation instructions, see the [installation guide](https://eet-tub.github.io/pydpeet/installation.html) at our GitHub Pages.
96
+
97
+ ### For Developers
98
+
99
+ Please refer to the [developer guide](https://eet-tub.github.io/pydpeet/developer.html) at our GitHub Pages.
100
+
101
+ <!-- ## Current Status -->
102
+
103
+ ## Roadmap
104
+
105
+ Planned features and ongoing work are tracked in the [Roadmap](https://github.com/orgs/eet-tub/projects/3) at our GitHub Projects.
106
+
107
+ <!-- ## FAQ -->
108
+
109
+ ## Contributing to PyDPEET
110
+
111
+ ### Reporting Issues
112
+
113
+ If you encounter an issue, please open a GitHub issue and provide as much information as possible, including:
114
+
115
+ - a minimal reproducible example
116
+ - cycler model
117
+ - software version
118
+ - export settings
119
+ - battery information
120
+ - error messages and stack traces (if available)
121
+
122
+ ### Request for Data Conversion
123
+ If PyDPEET cannot read or convert your data, please open an issue or send us sample data via email (pydpeet@eet.tu-berlin.de).
124
+
125
+ - cycler model
126
+ - software version
127
+ - export settings
128
+ - battery type
129
+ - measurement description
130
+
131
+ ### Contributing New Features
132
+
133
+ Contributions are always welcome! If you would like to add a new feature, we recommend discussing your idea in a GitHub issue before starting implementation. This helps avoid duplicate work and ensures that the proposed functionality aligns with the project's goals.
134
+
135
+ Please refer to the [Developer Guide](https://eet-tub.github.io/pydpeet/developer.html) for information on setting up a development environment, coding standards, testing, documentation, and the pull request workflow.
@@ -0,0 +1,113 @@
1
+ <div align="center">
2
+
3
+ [![Release](https://img.shields.io/github/v/release/eet-tub/pydpeet)](https://github.com/eet-tub/pydpeet/releases)
4
+ [![PyPI](https://img.shields.io/pypi/v/pydpeet)](https://pypi.org/project/pydpeet/)
5
+ [![Docs](https://img.shields.io/badge/docs-latest-blue)](https://eet-tub.github.io/pydpeet/)
6
+ [![License](https://img.shields.io/github/license/eet-tub/pydpeet)](LICENSE)
7
+
8
+ </div>
9
+
10
+ <!-- [![Python](https://img.shields.io/pypi/pyversions/pydpeet)](https://pypi.org/project/pydpeet/)
11
+ [![CI](https://github.com/eet-tub/pydpeet/actions/workflows/github-ci.yml/badge.svg)](https://github.com/eet-tub/pydpeet/actions/workflows/github-ci.yml)
12
+ [![DOI](https://zenodo.org/badge/DOI/<DOI>.svg)](https://doi.org/<DOI>)
13
+ [![Coverage](https://codecov.io/gh/eet-tub/pydpeet/branch/main/graph/badge.svg)](https://codecov.io/gh/eet-tub/pydpeet)
14
+ [![Downloads](https://img.shields.io/pypi/dm/pydpeet)](https://pypi.org/project/pydpeet/)
15
+ [![Status](https://joss.theoj.org/papers/<paper-id>/status.svg)](...) -->
16
+
17
+ # PyDPEET - Fast and Easy Battery Data Unification, Processing, and Analysis
18
+
19
+ ## Contact
20
+
21
+ Feel free to open an issue on GitHub or use our email for direct enquiries: pydpeet@eet.tu-berlin.de.
22
+
23
+ <!-- ## Technical Components
24
+ alternatively: "Dependencies"
25
+ Probably not necessary? -->
26
+
27
+ ## Project Goals
28
+
29
+ PyDPEET is a Python package developed to handle battery measurement data from various cyclers and other measurement devices by
30
+ * converting input data into a standardised format using Pandas data frames,
31
+ * allowing users to merge multiple single tests into test series of one cell, and multiple test series into multi-cell measurement campaigns, and
32
+ * adding sequence info either by automatically synthesising from an existing schedule or automatically analysing in case of unknown measurement procedure.
33
+
34
+ Standardised data can then be analysed using various functions which add additional data columns to a data frame:
35
+ * power, energy, capacity,
36
+ * inner resistance,
37
+ * state of charge (SOC), state of health (SOH),
38
+ * OCV points, DVA and ICA,
39
+ * and more...
40
+
41
+ Processed data can be exported to highly efficient Parquet files to be stored and re-imported later -- or to CSV or XLSX formats to maintain legacy workflows.
42
+
43
+ ## Citing PyDPEET
44
+
45
+ ## Documentation
46
+
47
+ ![PyDPEET Workflow](docs/res/PyDPEET_Overview.svg "PyDPEET Workflow")
48
+
49
+ ### GitHub Pages
50
+
51
+ * [PyDPEET homepage](https://eet-tub.github.io/pydpeet/)
52
+ * [Installation](https://eet-tub.github.io/pydpeet/installation.html)
53
+ * [API reference](https://eet-tub.github.io/pydpeet/api/index.html)
54
+ * [Examples](https://eet-tub.github.io/pydpeet/examples/index.html)
55
+ * [Developer Guide](https://eet-tub.github.io/pydpeet/developer.html)
56
+
57
+ ## Installation
58
+
59
+ ### For Users
60
+
61
+ Install PyDPEET directly from PyPI using uv or pip.
62
+
63
+ ```
64
+ uv add pydpeet
65
+ ```
66
+
67
+ or
68
+
69
+ ```
70
+ pip install pydpeet
71
+ ```
72
+
73
+ For detailed installation instructions, see the [installation guide](https://eet-tub.github.io/pydpeet/installation.html) at our GitHub Pages.
74
+
75
+ ### For Developers
76
+
77
+ Please refer to the [developer guide](https://eet-tub.github.io/pydpeet/developer.html) at our GitHub Pages.
78
+
79
+ <!-- ## Current Status -->
80
+
81
+ ## Roadmap
82
+
83
+ Planned features and ongoing work are tracked in the [Roadmap](https://github.com/orgs/eet-tub/projects/3) at our GitHub Projects.
84
+
85
+ <!-- ## FAQ -->
86
+
87
+ ## Contributing to PyDPEET
88
+
89
+ ### Reporting Issues
90
+
91
+ If you encounter an issue, please open a GitHub issue and provide as much information as possible, including:
92
+
93
+ - a minimal reproducible example
94
+ - cycler model
95
+ - software version
96
+ - export settings
97
+ - battery information
98
+ - error messages and stack traces (if available)
99
+
100
+ ### Request for Data Conversion
101
+ If PyDPEET cannot read or convert your data, please open an issue or send us sample data via email (pydpeet@eet.tu-berlin.de).
102
+
103
+ - cycler model
104
+ - software version
105
+ - export settings
106
+ - battery type
107
+ - measurement description
108
+
109
+ ### Contributing New Features
110
+
111
+ Contributions are always welcome! If you would like to add a new feature, we recommend discussing your idea in a GitHub issue before starting implementation. This helps avoid duplicate work and ensures that the proposed functionality aligns with the project's goals.
112
+
113
+ Please refer to the [Developer Guide](https://eet-tub.github.io/pydpeet/developer.html) for information on setting up a development environment, coding standards, testing, documentation, and the pull request workflow.
@@ -4,21 +4,26 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "PyDPEET"
7
- version = "0.3.0"
7
+ version = "0.4.0"
8
8
  description = "Python package to read, unify, and convert battery measurement data from arbitrary battery cyclers to Parquet files. This package also provides functions to process, evaluate, and visualise the standardised data."
9
9
  authors = [
10
- { name = "Anton Schlösser", email = "a.schloesser@tu-berlin.de"},
11
- { name = "Martin Otto", email = "m.otto.1@tu-berlin.de"},
10
+ { name = "Anton Schlösser" },
11
+ { name = "Martin Otto" },
12
12
  { name = "Alexander Günter Hinrichsen" },
13
13
  { name = "Jan Kalisch" },
14
14
  { name = "Daniel Schröder" },
15
15
  { name = "Cataldo De Simone" },
16
16
  ]
17
+
18
+ maintainers = [
19
+ { name = "PyDPEET Team", email = "pydpeet@eet.tu-berlin.de" },
20
+ ]
21
+
17
22
  dependencies = [
18
- "pandas==2.2.3",
19
- "numpy==2.2.4",
23
+ "pandas==3.0.3",
24
+ "numpy==2.3.3",
20
25
  "pyarrow==19.0.1",
21
- "python-calamine==0.3.1",
26
+ "python-calamine>=0.3.1",
22
27
  "numba==0.64.0",
23
28
  "matplotlib==3.10.8",
24
29
  "scipy==1.17.1",
@@ -104,7 +109,7 @@ exclude = [
104
109
  "test/",
105
110
  "docs/",
106
111
  "benchmarks/",
107
- "dev_utils/",
112
+ "_dev_utils/",
108
113
  "res/",
109
114
  ".*egg-info/",
110
115
  ]
@@ -113,6 +118,6 @@ exclude = [
113
118
  [tool.coverage.run]
114
119
  source = ["src/pydpeet"]
115
120
  omit = [
116
- "*/dev_utils/*",
121
+ "*/_dev_utils/*",
117
122
  "*/res/*",
118
123
  ]
@@ -0,0 +1,135 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyDPEET
3
+ Version: 0.4.0
4
+ Summary: Python package to read, unify, and convert battery measurement data from arbitrary battery cyclers to Parquet files. This package also provides functions to process, evaluate, and visualise the standardised data.
5
+ Author: Anton Schlösser, Martin Otto, Alexander Günter Hinrichsen, Jan Kalisch, Daniel Schröder, Cataldo De Simone
6
+ Maintainer-email: PyDPEET Team <pydpeet@eet.tu-berlin.de>
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENCE.md
10
+ License-File: AUTHORS.md
11
+ Requires-Dist: pandas==3.0.3
12
+ Requires-Dist: numpy==2.3.3
13
+ Requires-Dist: pyarrow==19.0.1
14
+ Requires-Dist: python-calamine>=0.3.1
15
+ Requires-Dist: numba==0.64.0
16
+ Requires-Dist: matplotlib==3.10.8
17
+ Requires-Dist: scipy==1.17.1
18
+ Requires-Dist: bibtexparser==1.4.4
19
+ Requires-Dist: scikit-learn==1.8.0
20
+ Requires-Dist: ipykernel>=7.2.0
21
+ Dynamic: license-file
22
+
23
+ <div align="center">
24
+
25
+ [![Release](https://img.shields.io/github/v/release/eet-tub/pydpeet)](https://github.com/eet-tub/pydpeet/releases)
26
+ [![PyPI](https://img.shields.io/pypi/v/pydpeet)](https://pypi.org/project/pydpeet/)
27
+ [![Docs](https://img.shields.io/badge/docs-latest-blue)](https://eet-tub.github.io/pydpeet/)
28
+ [![License](https://img.shields.io/github/license/eet-tub/pydpeet)](LICENSE)
29
+
30
+ </div>
31
+
32
+ <!-- [![Python](https://img.shields.io/pypi/pyversions/pydpeet)](https://pypi.org/project/pydpeet/)
33
+ [![CI](https://github.com/eet-tub/pydpeet/actions/workflows/github-ci.yml/badge.svg)](https://github.com/eet-tub/pydpeet/actions/workflows/github-ci.yml)
34
+ [![DOI](https://zenodo.org/badge/DOI/<DOI>.svg)](https://doi.org/<DOI>)
35
+ [![Coverage](https://codecov.io/gh/eet-tub/pydpeet/branch/main/graph/badge.svg)](https://codecov.io/gh/eet-tub/pydpeet)
36
+ [![Downloads](https://img.shields.io/pypi/dm/pydpeet)](https://pypi.org/project/pydpeet/)
37
+ [![Status](https://joss.theoj.org/papers/<paper-id>/status.svg)](...) -->
38
+
39
+ # PyDPEET - Fast and Easy Battery Data Unification, Processing, and Analysis
40
+
41
+ ## Contact
42
+
43
+ Feel free to open an issue on GitHub or use our email for direct enquiries: pydpeet@eet.tu-berlin.de.
44
+
45
+ <!-- ## Technical Components
46
+ alternatively: "Dependencies"
47
+ Probably not necessary? -->
48
+
49
+ ## Project Goals
50
+
51
+ PyDPEET is a Python package developed to handle battery measurement data from various cyclers and other measurement devices by
52
+ * converting input data into a standardised format using Pandas data frames,
53
+ * allowing users to merge multiple single tests into test series of one cell, and multiple test series into multi-cell measurement campaigns, and
54
+ * adding sequence info either by automatically synthesising from an existing schedule or automatically analysing in case of unknown measurement procedure.
55
+
56
+ Standardised data can then be analysed using various functions which add additional data columns to a data frame:
57
+ * power, energy, capacity,
58
+ * inner resistance,
59
+ * state of charge (SOC), state of health (SOH),
60
+ * OCV points, DVA and ICA,
61
+ * and more...
62
+
63
+ Processed data can be exported to highly efficient Parquet files to be stored and re-imported later -- or to CSV or XLSX formats to maintain legacy workflows.
64
+
65
+ ## Citing PyDPEET
66
+
67
+ ## Documentation
68
+
69
+ ![PyDPEET Workflow](docs/res/PyDPEET_Overview.svg "PyDPEET Workflow")
70
+
71
+ ### GitHub Pages
72
+
73
+ * [PyDPEET homepage](https://eet-tub.github.io/pydpeet/)
74
+ * [Installation](https://eet-tub.github.io/pydpeet/installation.html)
75
+ * [API reference](https://eet-tub.github.io/pydpeet/api/index.html)
76
+ * [Examples](https://eet-tub.github.io/pydpeet/examples/index.html)
77
+ * [Developer Guide](https://eet-tub.github.io/pydpeet/developer.html)
78
+
79
+ ## Installation
80
+
81
+ ### For Users
82
+
83
+ Install PyDPEET directly from PyPI using uv or pip.
84
+
85
+ ```
86
+ uv add pydpeet
87
+ ```
88
+
89
+ or
90
+
91
+ ```
92
+ pip install pydpeet
93
+ ```
94
+
95
+ For detailed installation instructions, see the [installation guide](https://eet-tub.github.io/pydpeet/installation.html) at our GitHub Pages.
96
+
97
+ ### For Developers
98
+
99
+ Please refer to the [developer guide](https://eet-tub.github.io/pydpeet/developer.html) at our GitHub Pages.
100
+
101
+ <!-- ## Current Status -->
102
+
103
+ ## Roadmap
104
+
105
+ Planned features and ongoing work are tracked in the [Roadmap](https://github.com/orgs/eet-tub/projects/3) at our GitHub Projects.
106
+
107
+ <!-- ## FAQ -->
108
+
109
+ ## Contributing to PyDPEET
110
+
111
+ ### Reporting Issues
112
+
113
+ If you encounter an issue, please open a GitHub issue and provide as much information as possible, including:
114
+
115
+ - a minimal reproducible example
116
+ - cycler model
117
+ - software version
118
+ - export settings
119
+ - battery information
120
+ - error messages and stack traces (if available)
121
+
122
+ ### Request for Data Conversion
123
+ If PyDPEET cannot read or convert your data, please open an issue or send us sample data via email (pydpeet@eet.tu-berlin.de).
124
+
125
+ - cycler model
126
+ - software version
127
+ - export settings
128
+ - battery type
129
+ - measurement description
130
+
131
+ ### Contributing New Features
132
+
133
+ Contributions are always welcome! If you would like to add a new feature, we recommend discussing your idea in a GitHub issue before starting implementation. This helps avoid duplicate work and ensures that the proposed functionality aligns with the project's goals.
134
+
135
+ Please refer to the [Developer Guide](https://eet-tub.github.io/pydpeet/developer.html) for information on setting up a development environment, coding standards, testing, documentation, and the pull request workflow.
@@ -10,13 +10,28 @@ src/PyDPEET.egg-info/top_level.txt
10
10
  src/pydpeet/__init__.py
11
11
  src/pydpeet/settings.py
12
12
  src/pydpeet/version.py
13
+ src/pydpeet/_dev_utils/__init__.py
14
+ src/pydpeet/_dev_utils/list_definitions.py
15
+ src/pydpeet/_dev_utils/check_test_coverge/check_test_coverage.py
16
+ src/pydpeet/_dev_utils/generate_inits/__init__.py
17
+ src/pydpeet/_dev_utils/generate_inits/generate_inits.py
18
+ src/pydpeet/_dev_utils/regenerate_test_references/__init__.py
19
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_add_capacity.py
20
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_add_primitive_segments.py
21
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_add_resistance_internal.py
22
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_add_soc.py
23
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_convert.py
24
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_df_primitives_correction.py
25
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_extract_ocv_iocv.py
26
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_extract_sequence_overview.py
27
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_filter_and_split_df_by_blocks.py
28
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_generate_instructions.py
29
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_merge_into_series.py
30
+ src/pydpeet/_dev_utils/regenerate_test_references/regenerate_read.py
31
+ src/pydpeet/_dev_utils/regenerate_test_references/run_all.py
13
32
  src/pydpeet/citations/__init__.py
14
33
  src/pydpeet/citations/citeme.py
15
34
  src/pydpeet/citations/html_writer.py
16
- src/pydpeet/dev_utils/__init__.py
17
- src/pydpeet/dev_utils/check_test_coverge/check_test_coverage.py
18
- src/pydpeet/dev_utils/generate_inits/__init__.py
19
- src/pydpeet/dev_utils/generate_inits/generate_inits.py
20
35
  src/pydpeet/io/__init__.py
21
36
  src/pydpeet/io/convert.py
22
37
  src/pydpeet/io/map.py
@@ -70,7 +85,6 @@ src/pydpeet/io/utils/__init__.py
70
85
  src/pydpeet/io/utils/ext_path.py
71
86
  src/pydpeet/io/utils/formatter_utils.py
72
87
  src/pydpeet/io/utils/load_custom_module.py
73
- src/pydpeet/io/utils/timing.py
74
88
  src/pydpeet/process/__init__.py
75
89
  src/pydpeet/process/analyze/__init__.py
76
90
  src/pydpeet/process/analyze/average.py
@@ -85,8 +99,6 @@ src/pydpeet/process/analyze/soh.py
85
99
  src/pydpeet/process/analyze/utils.py
86
100
  src/pydpeet/process/analyze/configs/__init__.py
87
101
  src/pydpeet/process/analyze/configs/battery_config.py
88
- src/pydpeet/process/analyze/configs/ocv_config.py
89
- src/pydpeet/process/analyze/configs/step_analyzer_config.py
90
102
  src/pydpeet/process/analyze/extract/__init__.py
91
103
  src/pydpeet/process/analyze/extract/dva_ica.py
92
104
  src/pydpeet/process/analyze/extract/ocv.py
@@ -99,11 +111,7 @@ src/pydpeet/process/sequence/configs/config.py
99
111
  src/pydpeet/process/sequence/utils/__init__.py
100
112
  src/pydpeet/process/sequence/utils/annotate/__init__.py
101
113
  src/pydpeet/process/sequence/utils/annotate/annotate_primitives.py
102
- src/pydpeet/process/sequence/utils/configs/CONFIG_Fallback.py
103
- src/pydpeet/process/sequence/utils/configs/CONFIG_preprocessing.py
104
- src/pydpeet/process/sequence/utils/configs/__init__.py
105
114
  src/pydpeet/process/sequence/utils/console_prints/__init__.py
106
- src/pydpeet/process/sequence/utils/console_prints/log_time.py
107
115
  src/pydpeet/process/sequence/utils/postprocessing/__init__.py
108
116
  src/pydpeet/process/sequence/utils/postprocessing/df_primitives_correction.py
109
117
  src/pydpeet/process/sequence/utils/postprocessing/filter_df.py
@@ -126,4 +134,5 @@ src/pydpeet/res/res_for_unittests/res.py
126
134
  src/pydpeet/utils/__init__.py
127
135
  src/pydpeet/utils/assert_raises_and_print.py
128
136
  src/pydpeet/utils/guardrails.py
137
+ src/pydpeet/utils/log_time.py
129
138
  src/pydpeet/utils/logging_style.py
@@ -1,7 +1,7 @@
1
- pandas==2.2.3
2
- numpy==2.2.4
1
+ pandas==3.0.3
2
+ numpy==2.3.3
3
3
  pyarrow==19.0.1
4
- python-calamine==0.3.1
4
+ python-calamine>=0.3.1
5
5
  numba==0.64.0
6
6
  matplotlib==3.10.8
7
7
  scipy==1.17.1
@@ -0,0 +1,107 @@
1
+ """
2
+ Auto-generated __init__ file.
3
+ Created: 2026-03-06 15:11:49
4
+ """
5
+
6
+ # Re-export selected names from source modules
7
+
8
+ from pydpeet.citations.citeme import print_references, write_to_bibtex
9
+ from pydpeet.io.configs.config import DataOutputFiletype, ReadConfig
10
+ from pydpeet.io.convert import convert
11
+ from pydpeet.io.read import read
12
+ from pydpeet.io.utils import load_custom_module
13
+ from pydpeet.io.write import write
14
+ from pydpeet.process.analyze.capacity import add_capacity, add_charge_throughput
15
+ from pydpeet.process.analyze.configs.battery_config import BatteryConfig, battery_config_wrapper
16
+ from pydpeet.process.analyze.cycle import add_equivalent_full_cycles
17
+ from pydpeet.process.analyze.efficiency import add_efficiency_coulomb
18
+ from pydpeet.process.analyze.energy import add_cumulative_energy
19
+ from pydpeet.process.analyze.extract.dva_ica import extract_ocv_dva_ica
20
+ from pydpeet.process.analyze.extract.ocv import extract_ocv_iocv
21
+ from pydpeet.process.analyze.power import add_power
22
+ from pydpeet.process.analyze.resistance import add_resistance_internal
23
+ from pydpeet.process.analyze.soc import SocMethod, add_soc
24
+ from pydpeet.process.analyze.soh import add_soh
25
+ from pydpeet.process.merge.series import merge_into_campaign, merge_into_series
26
+ from pydpeet.process.sequence.configs.config import (
27
+ DeviceConfig,
28
+ PrimitiveConfig,
29
+ SequenceOverviewConfig,
30
+ VisualizationConfig,
31
+ primitive_config_wrapper,
32
+ sequence_overview_config_wrapper,
33
+ visualization_config_wrapper,
34
+ )
35
+ from pydpeet.process.sequence.step_analyzer import add_primitive_segments, extract_sequence_overview
36
+ from pydpeet.process.sequence.utils.postprocessing.df_primitives_correction import df_primitives_correction
37
+ from pydpeet.process.sequence.utils.postprocessing.filter_df import (
38
+ filter_and_split_df_by_blocks,
39
+ filter_df,
40
+ return_or_print_blocks,
41
+ split_df_by_blocks,
42
+ )
43
+ from pydpeet.process.sequence.utils.postprocessing.generate_instructions import extract_instructions
44
+ from pydpeet.process.sequence.utils.preprocessing.calculate_thresholds import calculate_minimum_definitive_differences
45
+ from pydpeet.process.sequence.utils.visualize.visualize_data import visualize_phases
46
+ from pydpeet.utils.logging_style import set_logging_style
47
+
48
+ # Public API for this package
49
+ __all__ = [
50
+ # Tutorial 01
51
+ "ReadConfig",
52
+ "read",
53
+ "DataOutputFiletype",
54
+ "load_custom_module",
55
+ "merge_into_series",
56
+ "write",
57
+ "set_logging_style",
58
+ "print_references",
59
+ "write_to_bibtex",
60
+ # Tutorial 02
61
+ "add_primitive_segments",
62
+ "PrimitiveConfig",
63
+ "primitive_config_wrapper",
64
+ "DeviceConfig",
65
+ "calculate_minimum_definitive_differences",
66
+ "visualize_phases",
67
+ "VisualizationConfig",
68
+ "visualization_config_wrapper",
69
+ "df_primitives_correction", # TODO Tut 2
70
+ # "print_references",
71
+ # "write_to_bibtex",
72
+ # Tutorial 03
73
+ "extract_sequence_overview",
74
+ "SequenceOverviewConfig",
75
+ "sequence_overview_config_wrapper",
76
+ "extract_instructions",
77
+ # "print_references",
78
+ # "write_to_bibtex",
79
+ # Tutorial 04
80
+ "filter_and_split_df_by_blocks", # TODO why 3 variants?
81
+ "split_df_by_blocks", # TODO why 3 variants?
82
+ "filter_df", # TODO why 3 variants?
83
+ "return_or_print_blocks",
84
+ "extract_ocv_iocv",
85
+ "extract_ocv_dva_ica",
86
+ # "print_references",
87
+ # "write_to_bibtex",
88
+ # Tutorial 05
89
+ "SocMethod",
90
+ "add_capacity",
91
+ "BatteryConfig",
92
+ "battery_config_wrapper",
93
+ "add_charge_throughput",
94
+ "add_cumulative_energy",
95
+ "add_efficiency_coulomb",
96
+ "add_equivalent_full_cycles",
97
+ "add_power",
98
+ "add_resistance_internal",
99
+ "add_soc",
100
+ "add_soh",
101
+ # "print_references",
102
+ # "write_to_bibtex",
103
+ # TODO what / why is this?
104
+ "merge_into_campaign",
105
+ # TODO discuss if still needed, due to read()
106
+ "convert",
107
+ ]