Delta Elektronika SM15K Power Supply Controller
Project description
Delta Elektronika SM15K Power Supply
This is a created package for functional operation of SM15K.
Avaliable oeprations and functions
- Functions from datasheet Delta Electronika
- Datalogging thread for three type of frames (Basic, Ah and Wh)
- Watchdog thread for safe operation
- Charging thread for 3 step charging algorithm
- Discharging thread for discharging algorithm
- Cycling thread for battery cycling algorithm
Used build-in modules
- Socket Module / import socket
- Threading Module / import threading
- Time Module / import time
- Csv Module / import csv
- Datetime Module / import datetime
- Sys Module / import sys
- Logging Module / import logging
Note: Datalogger logs as txt and comma seperated base.
Installation
pip install SM15K
How to use it?
Code and Syntax Examples
from deltaelektronika import SM15K
import time
IPV4 = '0.0.0.0' # IP Address of the power supply, can be obtain the device itself.
#SM15K.activateDebugLogger = True # To activate debugging option. Creates systemlog file and logs everything
SM15K.activateDebugLogger = False # To deactivate debugging option. Creates systemlog file and logs everything
ColorPrint = SM15K.ColorPrinter()
Watchdog = SM15K.WatchdogOperation(IPV4, timer=5000, sleeptime=4) # Be sure timer is higher than sleeptime of the thread
BasicDatalogger = SM15K.BasicDataloggerOperation(IPV4, loggingTime=10, printColor= 'purple') # Default color is green, available colors are: purple, blue, cyan, green, yellow, red and normal
AhDatalogger = SM15K.AhDataloggerOperation(IPV4, loggingTime=10, printColor= 'red') # Default color is green, available colors are: purple, blue, cyan, green, yellow, red and normal
WhDatalogger = SM15K.WhDataloggerOperation(IPV4, loggingTime=5, printColor='blue') # Default color is green, available colors are: purple, blue, cyan, green, yellow, red and normal
Charging = SM15K.ChargingOperation(IPV4, sleeptime=5, bulkCurrent=100, bulkVoltage= 14.5, floatVoltage=13.8, floatTime=300 )
Discharging = SM15K.DischargingOperation(IPV4, sleeptime=5, dischargeCurrent=100, dischargeVoltage=10.5, cutoffCurrent=2)
Cycling = SM15K.CyclingOperation(IPV4, sleeptime=5, cycletime=10, bulkCurrent=100, bulkVoltage=14.5, floatVoltage=13.8, floatTime=300,
dischargeCurrent=100, dischargeVoltage=10.5, cutoffCurrent=2, restTime=30)
Each functionality has been created with related parameters at above.
To be able to use thempython object.start()must be used to start the thread operation
Watchdog.start() # To start watchdog thread class
BasicDatalogger.start() # To start BasicDatalogger thread class
AhDatalogger.start() # To start AhDatalogger thread class
WhDatalogger.start() # To start WhDatalogger thread class
Charging.start() # To start Charging thread class
Discharging.start() # To start Discharging thread class
Cycling.start() # To start Cycling thread class
After calling thread start, if main loop ends, thread is going to end as well because of being deamong thread true. That is why infinity loop or long term loop needed to run. Or it can be used as thread.join() to be sure that main does not end before the thread is done.
Note: Do not operate charging and discharging threads at the same operation.
Note: Do not operate Ah and Wh datalogger threads at the same operation. Delta can log one of them at a time.
Note: Watchdog is being set to delta itself, that is why be sure timer is bigger than sleep time to have healty operation.
while True:
# Main Code Runs Here in infinity loop.
time.sleep(30)
print('Main loop runs in here! You can set sleep time or not, all threads are going to run when their sleep time is done!')
You can run anything you want here as well to have multifunctional operation while system runs with multiple threads.
Note: All threads are created as deamon thread which means, if main finishes its operation threads are going to stop operation. That is why you should keep them in infinite loop.
License
© 2021 Yusuf Keklik
This repository is licensed under the MIT license. See LICENSE for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file SM15K-0.0.4.tar.gz.
File metadata
- Download URL: SM15K-0.0.4.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cbf29ea079ac6410d6488fd9d53773277cf97ec710604dfb26d9ada53c48931
|
|
| MD5 |
d72fccb198339375b527f5d329fcf9d4
|
|
| BLAKE2b-256 |
d2953868da3e8f94a29cf31a4fa6d1622e522b3196050e68ad7a3eef25257a7b
|
File details
Details for the file SM15K-0.0.4-py3-none-any.whl.
File metadata
- Download URL: SM15K-0.0.4-py3-none-any.whl
- Upload date:
- Size: 21.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1596162f60646ba54688b8647759e8b82a105cf32e839aba6948e01279abe86
|
|
| MD5 |
705f72a3b283ea5b73abdc6d6120d98b
|
|
| BLAKE2b-256 |
4e3db13bab487aa716ce676b666d75bcceec0028be95ae60122b3fa1d2620c6d
|