Python Route B Library: A Comunicator for Low-voltage Smart Electric Energy Meters
Project description
Momonga
Python Route B Library: A Comunicator for Low-voltage Smart Electric Energy Meters
Discription
MomongaはBルートサービスを利用してスマートメーターと通信するライブラリです。ターゲットデバイスはROHM社製Wi-SUNモジュールBP35C2を搭載したラトックシステムRS-WSUHA-Pです。
Installation
$ pip install momonga
Simple Example
下記のコードはPANAセッションを確立し、瞬時電力計測値を取得して表示します。PANのスキャンは最大で約2分、セッション確立は最大で約1分かかります。 BルートID、パスワード、デバイスファイルへのパスは適宜変更してください。
import momonga
rbid = 'SET A ROUTE B ID'
pwd = 'SET A ROUTE B PASSWORD'
dev = '/dev/ttyUSB0' # in a case of RaspberryPi OS
with momonga.Momonga(rbid, pwd, dev) as mo:
res = mo.get_instantaneous_power()
print('%0.1fW' % res)
Arguments
- rbid: BルートID
- pwd: Bルートパスワード
- dev: Wi-SUNモジュールのデバイスファイルへのパス
- baudrate: シリアル通信のボーレート(デフォルトは11520)
Return Value
- mo: Momongaクラスのインスタンス
Logging
Momongaには下記のロガーがあります。
momonga.logger
ECHONET Lite スマートメータークラスを抽象化したレイヤのログ
momonga.session_manager_logger
PANAセッション管理レイヤのログ
momonga.sk_wrapper_logger
Wi-SUNモジュールとの通信ログ
ログを有効にした例
import momonga
import logging
log_fmt = logging.Formatter('%(asctime)s | %(levelname)s | %(name)s - %(message)s')
log_hnd = logging.StreamHandler()
log_hnd.setFormatter(log_fmt)
momonga.logger.addHandler(log_hnd)
momonga.logger.setLevel(logging.DEBUG)
momonga.session_manager_logger.addHandler(log_hnd)
momonga.session_manager_logger.setLevel(logging.DEBUG)
momonga.sk_wrapper_logger.addHandler(log_hnd)
momonga.sk_wrapper_logger.setLevel(logging.DEBUG)
rbid = 'SET A ROUTE B ID'
pwd = 'SET A ROUTE B PASSWORD'
dev = '/dev/ttyUSB0' # in a case of RaspberryPi OS
with momonga.Momonga(rbid, pwd, dev) as mo:
res = mo.get_instantaneous_power()
print('%0.1fW' % res)
Exceptions
主な例外は下記です。
momonga.MomongaSkScanFailure
PANをスキャンしたが見つからなかったときに送出される。スマートメーターと通信できるロケーションか、またBルートIDが正しく設定されているかを確認し、再試行すること。
momonga.MomongaSkJoinFailure
PANAセッションを確立できなかったときに送出される。BルートIDとパスワードを確認し、再試行すること。
momonga.MomongaNeedToReopen
スマートメーターに対してコマンドを送信できなかったなどの理由で、スマートメーターに再接続が必要なときに送出される。
例外を補足する例
import momonga
import sys
rbid = 'SET A ROUTE B ID'
pwd = 'SET A ROUTE B PASSWORD'
dev = '/dev/ttyUSB0' # in a case of RaspberryPi OS
while True:
try:
with momonga.Momonga(rbid, pwd, dev) as mo:
res = mo.get_instantaneous_power()
print('%0.1fW' % res)
break
except (momonga.MomongaSkScanFailure,
momonga.MomongaSkJoinFailure,
momonga.MomongaNeedToReopen) as e:
print('%s: %s' % (type(e).__name__, e), file=sys.stderr)
continue
Transmission Restriction
下記のイベントが発生したときMomongaはスマートメーターに対するコマンドの送信をブロッキングします。
- PANAセッションのライフタイムが近づきWi-SUNモジュールが再認証を試みているとき
- 送信データ量が規定値に達しWi-SUNモジュールが制限したとき
- シリアルデバイスとの通信がブロッキングされたとき
したがって開発者はデータ取得関数を呼び出して、即座に応答が返ってこない可能性を考慮してください。
Consideration
送信がブロッキングされるなど諸条件により関数呼び出しのあと応答が即座に返らないことがあるため、mo.get_historical_cumulative_energy_1()
は呼び出したときに期待した履歴の日付と結果の日付に齟齬が生じる可能性があることに注意してください。特にこの関数は日を跨ぐタイミングで実行すべきではありません。
API
momonga.Momonga(rbid: str, pwd: str, dev: str, baudrate: int = 115200, reset_dev: bool = True)
Momongaクラスのインスタンス化。
Arguments
- rbid: BルートID
- pwd: Bルートパスワード
- dev: デバイスファイルへのパス
- baudrate: シリアル通信のボーレート
- reset_dev: mo.open()を実行するときSKRESETコマンドを実行するかどうか
mo.open()
PANをスキャンし、PANAセッションの確立を行う。
Arguments
- Void
Return Value
- None
mo.close()
PANAセッションを終了する。
Arguments
- Void
Return Value
- None
mo.get_operation_status()
スマートメーターの状態を取得する。
Arguments
- Void
Return Value
- bool: スマートメーターの状態 (True: オン False: オフ None: 不明)
mo.get_coefficient_for_cumulative_energy()
積算電力量計測値、履歴を実使用量に換算する係数を取得する。Momongaが出力する結果には適宜この値が乗じられている。
Arguments
- Void
Return Value
- Int: 係数
mo.get_number_of_effective_digits_for_cumulative_energy()
積算電力量計測値の有効桁数を取得する。
- Void
Return Value
- Int: 有効桁数
mo.get_measured_cumulative_energy(reverse: bool = False)
積算電力量計測値を取得する。
Arguments
- reverse: Trueのとき逆方向の積算電力量を取得する
Return Value
- float: 積算電力量(kWh)
mo.get_unit_for_cumulative_energy()
積算電力量計測値、履歴の乗率を取得する。Momongaが出力する結果には適宜この値が乗じられている。
Arguments
- Void
Return Value
- int | float: 積算電力量の乗率
mo.get_historical_cumulative_energy_1(day: int = 0, reverse: bool = False)
積算電力量計測値履歴1を取得する。
Arguments
- day: 積算履歴収集日(0:当日、1~:前日の日数)
- reverse: Trueのとき逆方向の積算電力量を取得する
Return Value
- list: 収集日時と積算電力量(kWh)
e.g.
[{'timestamp': datetime.datetime, 'cumulative energy': float}]
Note: 収集日時はスマートメーター側で設定されたものではなくMomonga自身が設定しているため、実行中に日を跨ぐと収集日時に齟齬が生じる可能性がある。
mo.set_day_for_which_to_retrieve_historical_data_1(day: int = 0)
積算履歴収集日1を設定する。
Arguments
- day: 積算履歴収集日 0:当日、1~:前日の日数
Return Value
- None
mo.get_day_for_which_to_retrieve_historical_data_1()
積算履歴収集日1を設定する。
Arguments
- Void
Return Value
- int: 積算履歴収集日1
mo.get_instantaneous_power()
瞬時電力計測値を取得する。
Arguments
- Void
Return Value
- float: 瞬時電力測定値(W)
mo.get_instantaneous_current()
瞬時電流計測値を取得する。
Arguments
- Void
Return Value
- dict: R相瞬時電流(A)とT相瞬時電流(A)
e.g.
{'r phase current': float, 't phase current': float}
mo.get_cumulative_energy_measured_at_fixed_time(reverse: bool = False)
定時積算電力量計測値を取得する。
Arguments
- reverse: Trueのとき逆方向の積算電力量を取得する
Return Value
- dict: 収集日時と積算電力量(kWh)
e.g.
{datetime: float}
mo.get_historical_cumulative_energy_2(timestamp: datetime.datetime = datetime.datetime.now(), num_of_data_points: int = 12)
Arguments
timestamp: 収集日時 num_of_data_points: 収集コマ数 1~12
Arguments
- Void
Return Value
- list: 収集日時と正方向および逆方向の積算電力量(kWh) e.g.
[{'timestamp': datetime.datetime,
'cumulative energy': {
'normal direction': float,
'reverse direction': float}}]
mo.set_time_for_which_to_retrieve_historical_data_2(timestamp: datetime.datetime, num_of_data_points: int = 12)
Arguments
- timestamp: 収集日時
- num_of_data_points: 収集コマ数
Return Value
- None
mo.get_time_for_which_to_retrieve_historical_data_2()
Arguments
- Void
Return Value
- dict: 収集日時と収集コマ数
e.g.
{'timestamp': datetime, 'number of data points': int}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file momonga-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: momonga-0.0.1-py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ac0604f2636d6cfd227177689e3644fedc9495102db972432f3b5503f9c1e63 |
|
MD5 | b25b1b31c4d9c9908ece6010834b67e5 |
|
BLAKE2b-256 | 88741c0d453e8b43a9bc22de47acb6874d876b40779203032e8f407b071714a2 |