-
Notifications
You must be signed in to change notification settings - Fork 0
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 #43 from cnpem-sei/PR-include-resonant-swls
Included resonant converter, fixed IIB interlocks and alarm for FAC-DCDC-EMA, included leakage overcurrent interlock for FAC-DCDC and FAC-DCDC-EMA
- Loading branch information
Showing
7 changed files
with
60 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .pydrs import EthDRS, GenericDRS, SerialDRS # noqa: F401 | ||
|
||
__version__ = "2.0.1" | ||
__date__ = "21/11/2022" | ||
__version__ = "2.1.0" | ||
__date__ = "18/01/2023" |
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
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,17 @@ | ||
# SWLS Resonant Converter | ||
list_soft_interlocks = [] | ||
|
||
list_hard_interlocks = [ | ||
"Load Overcurrent", | ||
"DCLink Overvoltage", | ||
"DCLink Undervoltage", | ||
] | ||
|
||
bsmp = { | ||
"ps_alarms": {"addr": 33, "format": "I", "size": 4, "egu": ""}, | ||
"i_load": {"addr": 34, "format": "f", "size": 4, "egu": "A"}, | ||
"v_dclink": {"addr": 35, "format": "f", "size": 4, "egu": "V"}, | ||
"i_load_error": {"addr": 36, "format": "f", "size": 4, "egu": "A"}, | ||
"freq_modulated": {"addr": 37, "format": "f", "size": 4, "egu": "Hz"}, | ||
"freq_modulated_ff": {"addr": 38, "format": "f", "size": 4, "egu": "Hz"}, | ||
} |