123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- __author__ = 'lmstack'
- #coding=utf-8
- import os
- import datetime
- import pandas as pd
- from LIB.BACKEND import DBManager, Log
- from sqlalchemy import create_engine
- from sqlalchemy.orm import sessionmaker
- import time, datetime
- import dateutil.relativedelta
- import traceback
- from LIB.MIDDLE.CellStateEstimation.SOH.V1_0_0 import CBMSBatSoh
- from LIB.MIDDLE.CellStateEstimation.Common import DBDownload
- from urllib import parse
- import pymysql
- import pdb
- dbManager = DBManager.DBManager()
- if __name__ == "__main__":
-
- # 时间设置
- now_time = datetime.datetime.now()
- pre_time = now_time + dateutil.relativedelta.relativedelta(months=-1, days=-1)#上个月-1天时间
- end_time=datetime.datetime.strftime(now_time,"%Y-%m-%d 00:00:00")
- start_time=datetime.datetime.strftime(pre_time,"%Y-%m-%d 00:00:00")
- history_run_flag = False # 历史数据运行标志
- # end_time = "2021-09-01 00:00:00"
- # 更新sn列表
- host='rm-bp10j10qy42bzy0q7.mysql.rds.aliyuncs.com'
- port=3306
- db='qixiang_oss'
- user='qixiang_oss'
- password='Qixiang2021'
- conn = pymysql.connect(host=host, port=port, user=user, password=password, database=db)
- cursor = conn.cursor()
- cursor.execute("select sn, imei from app_device")
- res = cursor.fetchall()
- df_sn = pd.DataFrame(res, columns=['sn', 'imei'])
- df_sn = df_sn.reset_index(drop=True)
- conn.close();
- # 数据库配置
- host = 'rm-bp10j10qy42bzy0q77o.mysql.rds.aliyuncs.com'
- port = 3306
- user = 'qx_cas'
- password = parse.quote_plus('Qx@123456')
- database = 'qx_cas'
- db_engine = create_engine(
- "mysql+pymysql://{}:{}@{}:{}/{}?charset=utf8".format(
- user, password, host, port, database
- ))
- DbSession = sessionmaker(bind=db_engine)
-
- # 运行历史数据配置
-
- df_first_data_time = pd.read_sql("select * from bat_first_data_time", db_engine)
-
-
- # 日志配置
- now_str = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()).replace(":","_")
- log_path = 'log/' + now_str
- if not os.path.exists(log_path):
- os.makedirs(log_path)
- log = Log.Mylog(log_name='soh', log_level = 'info')
- log.set_file_hl(file_name='{}/info.log'.format(log_path), log_level='info', size=1024* 1024 * 100)
- log.set_file_hl(file_name='{}/error.log'.format(log_path), log_level='error', size=1024* 1024 * 100)
- logger = log.get_logger()
- logger.info("pid is {}".format(os.getpid()))
-
- # 算法参数
- host='rm-bp10j10qy42bzy0q77o.mysql.rds.aliyuncs.com'
- port=3306
- db='qx_cas'
- user='qx_read'
- password='Qx@123456'
- tablename='cellStateEstimation_soh'
- for i in range(0, len(df_sn)):
- try:
- sn = df_sn.loc[i, 'sn']
- if df_sn.loc[i, 'imei'][5:9] == 'N640':
- celltype=1 #6040三元电芯
- elif df_sn.loc[i, 'imei'][5:9] == 'N440':
- celltype=2 #4840三元电芯
- elif df_sn.loc[i, 'imei'][5:9] == 'L660':
- celltype=99 # 6060锂电芯
- elif df_sn.loc[i, 'imei'][3:5] == 'LX' and df_sn.loc[i, 'imei'][5:9] == 'N750':
- celltype=3 #力信 50ah三元电芯
- elif df_sn.loc[i, 'imei'][3:9] == 'CLL128':
- celltype=100 # 重卡
- elif df_sn.loc[i, 'imei'][3:5] == 'CL' and df_sn.loc[i, 'imei'][5:9] == 'N750':
- celltype=4 #CATL 50ah三元电芯
- else:
- logger.info("pid-{} celltype-{} SN: {} SKIP!".format(os.getpid(), "未知", sn))
- continue
-
-
- logger.info("pid-{} celltype-{} SN: {} START!".format(os.getpid(), celltype, sn))
- dbManager = DBManager.DBManager()
-
-
- # 处理运行历史数据
- if (history_run_flag):
- this_sn = df_first_data_time[df_first_data_time['sn']==sn]
- if (len(this_sn) == 0):
- start_time = pd.to_datetime(str(df_sn.loc[df_sn[df_sn['sn']==sn].index, 'add_time'].values[0])).strftime("%Y-%m-%d 00:00:00")
- else:
- first_data_time = df_first_data_time.loc[df_first_data_time[df_first_data_time['sn']==sn].index, 'first_data_time'].values[0]
- if pd.isnull(first_data_time):
- start_time = "2018-01-01 00:00:00"
- else:
- start_time = pd.to_datetime(str(df_first_data_time.loc[df_first_data_time[df_first_data_time['sn']==sn].index, 'first_data_time'].values[0])).strftime("%Y-%m-%d 00:00:00")
-
- DBRead=DBDownload.DBDownload(host, port, db, user, password, 1)
- with DBRead as DBRead:
- df_soh=DBRead.getdata('time_st','time_sp','sn','method','soh','cellsoh', tablename=tablename, sn=sn,timename='',st='',sp='')
-
- df_data = dbManager.get_data(sn=sn, start_time=start_time, end_time=end_time, data_groups=['bms','accum'])
- df_bms = df_data['bms']
- df_accum=df_data['accum']
- BatSoh=CBMSBatSoh.BatSoh(sn, celltype, df_bms, df_accum, df_soh)
- df_res=BatSoh.batsoh()
- if not df_res.empty:
- df_res.columns = ['time_st', 'time_sp', 'sn', 'method', 'soh', 'cellsoh']
- df_res.to_sql("cellStateEstimation_soh",con=db_engine, if_exists="append",index=False)
- logger.info("pid-{} celltype-{} SN: {} DONE!".format(os.getpid(), celltype, sn))
- except:
- logger.error(traceback.format_exc)
- logger.error(u"{} :{},{} 任务运行错误\n".format(sn,start_time,end_time), exc_info=True)
|