-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #151 from ImperialCollegeLondon/add-more-cyclers
Add additional cycler parsers
- Loading branch information
Showing
18 changed files
with
1,094 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
"""A module to load and process Arbin battery cycler data.""" | ||
|
||
|
||
from pyprobe.cyclers.basecycler import BaseCycler | ||
|
||
|
||
class Arbin(BaseCycler): | ||
"""A class to load and process Neware battery cycler data.""" | ||
|
||
input_data_path: str | ||
column_dict: dict[str, str] = { | ||
"Date Time": "Date", | ||
"Test Time (*)": "Time [*]", | ||
"Step Index": "Step", | ||
"Current (*)": "Current [*]", | ||
"Voltage (*)": "Voltage [*]", | ||
"Charge Capacity (*)": "Charge Capacity [*]", | ||
"Discharge Capacity (*)": "Discharge Capacity [*]", | ||
"Aux_Temperature_1 (*)": "Temperature [*]", | ||
} | ||
datetime_format: str = "%d/%m/%Y %H:%M:%S%.f" |
Oops, something went wrong.