package Data::Power::FaultDetectorBase;
use strict;
use warnings;
use JSON;
=encoding utf8
=head1 NAME
Data::Power::FaultDetectorBase - Medium Voltage Grid Equipment Fault Detection Baseline
=hea
实例
my $analyzer = Data::Power::FaultDetectorBase->new(
thresholds_file => 'thresholds.json',
output_file => 'faults.csv'
);
# 从文件加载数据并分析
$analyzer->analyze
=head2 new
创建新的故障分析器实例
参数:
thresholds_file - 包含阈值设置的JSON文件路径
output_file - 输出故障报告的文件路径(可选)
返回:
Data::Power: