Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
Li Chao af03545e6a
add embed function for debugging
5 years ago
851d764bee
add a new function and a new test case
5 years ago
6311879726
update doc
5 years ago
af03545e6a
add embed function for debugging
5 years ago
de2574bb08
initial implementaion based on max current method
5 years ago
af03545e6a
add embed function for debugging
5 years ago
21b102a693
add more impl of max current
5 years ago
de2574bb08
initial implementaion based on max current method
5 years ago
de2574bb08
initial implementaion based on max current method
5 years ago
Storage Buckets

README.md

You have to be logged in to leave a comment. Sign In

Intro

基于最大电流法分析光伏组串状态和故障预警。

算子训练

输入:DataFrame,包含一个汇流箱所有组串在多个月份中的电流值,index为时间, 列包括组串ID和电流值;

输出:正常、关注、告警间的两个分隔值;

待训练参数:最低电流因子。

计算过程:

  1. 在纵表上算出每月最大电流,返回一个 Series,index为月份,值为电流值;

  2. 纵表转横表(组串ID变为列指标,index仍为时间);

  3. 按日分组;

  4. 根据 每日最大电流 是否低于 最低阈值(当月最大电流 乘以 最低电流因子), 将上一步算出的日分组分为 正常电流组 和 低电流组;

  5. 对正常电流组,计算每日每个组串的电流相关系数;

  6. 对 [-1, 1] 区间内的相关系数做 K=3 的聚类;

  7. 求出3个质心;

  8. 取两条中心分隔线作为输出;

算子的训练过程:根据不同的 最低电流因子 得到对应的阈值,与运维检测数据吻合最好的, 就是最优的 最低电流因子 和 分类阈值。

算子运行时

根据之前年份的当月数据训练出的本月最大电流、最低电流因子、分类阈值 对当月数据做分类。

Tip!

Press p or to see the previous file or, n or to see the next file

About

No description

Collaborators 1

Comments

Loading...