Skip to content

Commit

Permalink
Updated PT100 Sensor Nomenclature and Added Driver Channel 2 Current …
Browse files Browse the repository at this point in the history
…Reading for Auxiliary Board
  • Loading branch information
rogeriomarcondeli committed Feb 15, 2024
1 parent a7ce475 commit bc56813
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 21 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [2.3.2] - 2024-02-15
### Changed:
- SWLS resonant converter updated PT100 sensor nomenclature
- Added driver channel 2 current reading for auxiliary board

## [2.3.1] - 2023-10-18
### Changed:
- SWLS resonant converter name correction for reading variables
Expand Down
4 changes: 2 additions & 2 deletions src/pydrs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .pydrs import EthDRS, GenericDRS, SerialDRS # noqa: F401

__version__ = "2.3.1"
__date__ = "18/10/2023"
__version__ = "2.3.2"
__date__ = "15/02/2024"
41 changes: 22 additions & 19 deletions src/pydrs/consts/resonant.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@
"Output Overvoltage",
"Input Overcurrent",
"Output Overcurrent",
"Input Inductor Overtemperature",
"Transformer Heat-Sink Overtemperature",
"Output Inductor Overtemperature",
"MOSFETs Heat-Sink Overtemperature",
"Diodes Heat-Sink Overtemperature",
"Drivers Overvoltage",
"Drivers Overcurrent",
"Diode One Heat-Sink Overtemperature",
"Diode Two Heat-Sink Overtemperature",
"Driver MOSFETs and Auxiliary Board Overvoltage",
"Driver MOSFETs Overcurrent",
"Auxiliary Board Overcurrent",
"High Leakage Current",
"Board IIB Overtemperature",
"Module Overhumidity",
Expand All @@ -38,12 +39,13 @@
"Output Overvoltage",
"Input Overcurrent",
"Output Overcurrent",
"Input Inductor Overtemperature",
"Transformer Heat-Sink Overtemperature",
"Output Inductor Overtemperature",
"MOSFETs Heat-Sink Overtemperature",
"Diodes Heat-Sink Overtemperature",
"Drivers Overvoltage",
"Drivers Overcurrent",
"Diode One Heat-Sink Overtemperature",
"Diode Two Heat-Sink Overtemperature",
"Driver MOSFETs and Auxiliary Board Overvoltage",
"Driver MOSFETs Overcurrent",
"Auxiliary Board Overcurrent",
"High Leakage Current",
"Board IIB Overtemperature",
"Module Overhumidity",
Expand All @@ -60,15 +62,16 @@
"v_output_iib": {"addr": 40, "format": "f", "size": 4, "egu": "V"},
"i_input_iib": {"addr": 41, "format": "f", "size": 4, "egu": "A"},
"i_output_iib": {"addr": 42, "format": "f", "size": 4, "egu": "A"},
"temp_input_inductor_iib": {"addr": 43, "format": "f", "size": 4, "egu": "°C"},
"temp_heatsink_transformer_iib": {"addr": 43, "format": "f", "size": 4, "egu": "°C"},
"temp_output_inductor_iib": {"addr": 44, "format": "f", "size": 4, "egu": "°C"},
"temp_heatsink_mosfet_iib": {"addr": 45, "format": "f", "size": 4, "egu": "°C"},
"temp_heatsink_diodes_iib": {"addr": 46, "format": "f", "size": 4, "egu": "°C"},
"v_driver_iib": {"addr": 47, "format": "f", "size": 4, "egu": "V"},
"temp_heatsink_diode_one_iib": {"addr": 45, "format": "f", "size": 4, "egu": "°C"},
"temp_heatsink_diode_two_iib": {"addr": 46, "format": "f", "size": 4, "egu": "°C"},
"v_driver_and_aux_board_iib": {"addr": 47, "format": "f", "size": 4, "egu": "V"},
"i_driver_iib": {"addr": 48, "format": "f", "size": 4, "egu": "A"},
"i_leakage_iib": {"addr": 49, "format": "f", "size": 4, "egu": "A"},
"temp_board_iib": {"addr": 50, "format": "f", "size": 4, "egu": "°C"},
"rh_iib": {"addr": 51, "format": "f", "size": 4, "egu": "%"},
"iib_interlocks": {"addr": 52, "format": "I", "size": 4, "egu": ""},
"iib_alarms": {"addr": 53, "format": "I", "size": 4, "egu": ""},
"i_aux_board_iib": {"addr": 49, "format": "f", "size": 4, "egu": "A"},
"i_leakage_iib": {"addr": 50, "format": "f", "size": 4, "egu": "A"},
"temp_board_iib": {"addr": 51, "format": "f", "size": 4, "egu": "°C"},
"rh_iib": {"addr": 52, "format": "f", "size": 4, "egu": "%"},
"iib_interlocks": {"addr": 53, "format": "I", "size": 4, "egu": ""},
"iib_alarms": {"addr": 54, "format": "I", "size": 4, "egu": ""},
}

0 comments on commit bc56813

Please sign in to comment.