|
@@ -15,7 +15,6 @@ import com.gyee.power.fitting.model.anno.FixedVo;
|
|
|
import com.gyee.power.fitting.model.custom.PowerPointData;
|
|
|
import com.gyee.power.fitting.model.custom.TableTitle;
|
|
|
import com.gyee.power.fitting.service.PowerfittinganalysisService;
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -26,7 +25,6 @@ import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
-@Slf4j
|
|
|
@Service
|
|
|
public class DataProcessService {
|
|
|
|
|
@@ -65,27 +63,17 @@ public class DataProcessService {
|
|
|
eis.add(new PowerPointData(list.get(i).split(","), false));
|
|
|
}
|
|
|
|
|
|
- // 静风频率、平均风速
|
|
|
- double frequency =0;
|
|
|
- double speed = 0;
|
|
|
- String content;
|
|
|
-
|
|
|
- /** 风速 -> 保证功率 来自数据库 没有配置特殊处理 **/
|
|
|
- try {
|
|
|
- List<Modelpowerdetails> modelPowerList = InitialRunner.modelPowerDetailMap.get(InitialRunner.wtMap.get(obj.getWindturbine()).getModelid());
|
|
|
- Map<Double, Double> modelPowerMap = modelPowerList.stream().collect(Collectors.toMap(Modelpowerdetails::getSpeed, Modelpowerdetails::getEnsurepower));
|
|
|
- /** 数据预处理 **/
|
|
|
- List<PowerPointData> data = PowerProcessALG.dataProcess(eis, modelPowerMap, maxs, mins, maxp, minp, isfbw, isfhl, isbw, istj, isglpc, isqfh, qfhdj);
|
|
|
- /** 静风频率 **/
|
|
|
- List<Double> ls = WindDirectionALG.frequency(data.stream().map(PowerPointData::getSpeed).collect(Collectors.toList()), 3);
|
|
|
- frequency = ls.get(0);
|
|
|
- speed = ls.get(1);
|
|
|
- content = assemble(data);
|
|
|
- } catch (Exception e){
|
|
|
- log.error(e.getMessage());
|
|
|
- content = assemble(eis);
|
|
|
- }
|
|
|
-
|
|
|
+ /** 风速 -> 保证功率 来自数据库 **/
|
|
|
+ List<Modelpowerdetails> modelPowerList = InitialRunner.modelPowerDetailMap.get(InitialRunner.wtMap.get(obj.getWindturbine()).getModelid());
|
|
|
+ Map<Double, Double> modelPowerMap = modelPowerList.stream().collect(Collectors.toMap(Modelpowerdetails::getSpeed, Modelpowerdetails::getEnsurepower));
|
|
|
+ /** 数据预处理 **/
|
|
|
+ List<PowerPointData> data = PowerProcessALG.dataProcess(eis, modelPowerMap, maxs, mins, maxp, minp, isfbw, isfhl, isbw, istj, isglpc, isqfh, qfhdj);
|
|
|
+ /** 静风频率 **/
|
|
|
+ List<Double> ls = WindDirectionALG.frequency(data.stream().map(PowerPointData::getSpeed).collect(Collectors.toList()), 3);
|
|
|
+ double frequency = ls.get(0);
|
|
|
+ double speed = ls.get(1);
|
|
|
+
|
|
|
+ String content = assemble(data);
|
|
|
String fileName = config.getFilePathProcess() + obj.getStation() + "_" + obj.getCode() + "_" + SnowFlakeUtil.generateIdL() / 100000 + ".csv";
|
|
|
boolean flag = FileUtil.writeFile(fileName, content);
|
|
|
if (flag) { // TODO 保存数据库
|