deploy.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. __author__ = 'lmstack'
  2. #coding=utf-8
  3. import os
  4. import datetime
  5. import pandas as pd
  6. from LIB.BACKEND import DBManager
  7. from sqlalchemy import create_engine
  8. from sqlalchemy.orm import sessionmaker
  9. import datetime
  10. import traceback
  11. from LIB.MIDDLE.CellStateEstimation.BatSafetyWarning.V1_0_1 import CBMSSafetyWarning
  12. from LIB.MIDDLE.CellStateEstimation.BatSafetyWarning.V1_0_1 import CBMSBatInterShort
  13. from LIB.MIDDLE.CellStateEstimation.BatSafetyWarning.V1_0_1 import CBMSBatUniform
  14. # from LIB.MIDDLE.CellStateEstimation.BatSafetyWarning.V1_0_1 import VoltStray
  15. from urllib import parse
  16. import pymysql
  17. import logging
  18. import logging.handlers
  19. from apscheduler.schedulers.blocking import BlockingScheduler
  20. #...................................电池包电芯安全诊断函数......................................................................................................................
  21. def saftywarning_cal():
  22. global df_sn
  23. global df_warning_ram
  24. global df_warning_ram1
  25. global df_warning_ram2
  26. global df_warning_ram3
  27. global df_lfp_ram
  28. global df_lfp_ram1
  29. global df_chrgvolt_ram
  30. # 读取结果数据库
  31. host2='rm-bp10j10qy42bzy0q77o.mysql.rds.aliyuncs.com'
  32. port2=3306
  33. db2='safety_platform'
  34. user2='qx_algo_rw'
  35. password2='qx@123456'
  36. db_safety_platform_engine = create_engine(
  37. "mysql+pymysql://{}:{}@{}:{}/{}?charset=utf8".format(
  38. user2, parse.quote_plus(password2), host2, port2, db2
  39. ))
  40. conn_platform = pymysql.connect(host=host2, port=port2, user=user2, password=password2, database=db2)
  41. cursor_platform = conn_platform.cursor()
  42. host='rm-bp10j10qy42bzy0q77o.mysql.rds.aliyuncs.com'
  43. port=3306
  44. db='qx_cas'
  45. user='qx_algo_rw'
  46. password='qx@123456'
  47. db_qxcas_engine = create_engine(
  48. "mysql+pymysql://{}:{}@{}:{}/{}?charset=utf8".format(
  49. user, parse.quote_plus(password), host, port, db
  50. ))
  51. conn_cas = pymysql.connect(host=host, port=port, user=user, password=password, database=db)
  52. cursor_cas = conn_cas.cursor()
  53. df_fault_ram=pd.read_sql("select start_time, end_time, product_id, code, level, info, advice from all_fault_info where end_time={} and code={}".format('0000-00-00 00:00:00','C490'), db_safety_platform_engine)
  54. # result = result[['start_time', 'end_time', 'product_id', 'code', 'level', 'info', 'advice']]
  55. # df_fault_ram=result[(result['end_time']=='0000-00-00 00:00:00') & (result['code']=='C490')]
  56. now_time=datetime.datetime.now()
  57. start_time=now_time-datetime.timedelta(hours=6)
  58. start_time1=now_time-datetime.timedelta(days=7)
  59. start_time2=now_time-datetime.timedelta(days=3)
  60. start_time3=now_time-datetime.timedelta(days=1)
  61. start_time=start_time.strftime('%Y-%m-%d %H:%M:%S')
  62. start_time1=start_time1.strftime('%Y-%m-%d %H:%M:%S')
  63. start_time2=start_time2.strftime('%Y-%m-%d %H:%M:%S')
  64. start_time3=start_time3.strftime('%Y-%m-%d %H:%M:%S')
  65. end_time=now_time.strftime('%Y-%m-%d %H:%M:%S')
  66. for i in range(0, len(df_sn)):
  67. factory = "骑享"
  68. try:
  69. sn = df_sn.loc[i, 'sn']
  70. if df_sn.loc[i, 'imei'][5:9] == 'N640':
  71. celltype=1 #6040三元电芯
  72. elif df_sn.loc[i, 'imei'][5:9] == 'N440':
  73. celltype=2 #4840三元电芯
  74. elif df_sn.loc[i, 'imei'][5:9] == 'L660':
  75. celltype=99 # 6060锂电芯
  76. elif df_sn.loc[i, 'imei'][3:5] == 'LX' and df_sn.loc[i, 'imei'][5:9] == 'N750':
  77. celltype=3 #力信 50ah三元电芯
  78. elif df_sn.loc[i, 'imei'][3:5] == 'CL' and df_sn.loc[i, 'imei'][5:9] == 'N750':
  79. celltype=4 #CATL 50ah三元电芯
  80. elif df_sn.loc[i, 'imei'][3:9] == 'CLL128':
  81. celltype=100 # 重卡
  82. factory = "金茂换电"
  83. else:
  84. logger.info("pid-{} celltype-{} SN: {} SKIP!".format(os.getpid(), "未知", sn))
  85. continue
  86. logger.info("pid-{} celltype-{} SN: {} START!".format(os.getpid(), celltype, sn))
  87. # 读取soh数据
  88. df_soh = pd.read_sql("select time_st,sn,soh,cellsoh from cellstateestimation_soh where sn = '{}' order by id desc limit 1".format(sn), db_qxcas_engine)
  89. df_uniform = pd.read_sql("select time,sn,cellsoc_diff,cellvolt_diff,cellmin_num,cellmax_num,cellvolt_rank from cellstateestimation_uniform_socvoltdiff where sn = '{}' order by id desc limit 1".format(sn), db_qxcas_engine)
  90. df_uniform.loc[0,'cellvolt_rank']=str([1]*20)
  91. # df_voltsigma=pd.DataFrame()
  92. #读取原始数据库数据................................................................................id........................................................................
  93. dbManager = DBManager.DBManager()
  94. df_data = dbManager.get_data(sn=sn, start_time=start_time, end_time=end_time, data_groups=['bms'])
  95. df_bms = df_data['bms']
  96. # print(df_bms)
  97. #电池诊断................................................................................................................................................................
  98. if not df_bms.empty:
  99. #电池内短路计算................................................................................................................................................................
  100. df_warning_ram_sn=df_warning_ram[df_warning_ram['sn']==sn]
  101. df_warning_ram_sn1=df_warning_ram1[df_warning_ram1['sn']==sn]
  102. df_warning_ram_sn2=df_warning_ram2[df_warning_ram2['sn']==sn]
  103. df_warning_ram_sn3=df_warning_ram3[df_warning_ram3['sn']==sn]
  104. df_chrgvolt_ram_sn=df_chrgvolt_ram[df_chrgvolt_ram['sn']==sn]
  105. df_warning_ram_sn.reset_index(inplace=True,drop=True) #重置索引
  106. df_warning_ram_sn1.reset_index(inplace=True,drop=True) #重置索引
  107. df_warning_ram_sn2.reset_index(inplace=True,drop=True) #重置索引
  108. df_warning_ram_sn3.reset_index(inplace=True,drop=True) #重置索引
  109. if not df_lfp_ram.empty:
  110. df_lfp_ram_sn=df_lfp_ram[df_lfp_ram['sn']==sn]
  111. df_lfp_ram_sn.reset_index(inplace=True,drop=True) #重置索引
  112. else:
  113. df_lfp_ram_sn=pd.DataFrame()
  114. df_lfp_ram=pd.DataFrame(columns=df_bms.columns.tolist()+['sn'])
  115. if celltype>50 and (not df_lfp_ram1.empty):
  116. df_lfp_ram_sn1=df_lfp_ram1[df_lfp_ram1['sn']==sn]
  117. df_lfp_ram_sn1.reset_index(inplace=True,drop=True) #重置索引
  118. else:
  119. df_lfp_ram_sn1=pd.DataFrame()
  120. df_lfp_ram1=pd.DataFrame(columns=df_bms.columns.tolist()+['sn'])
  121. #内短路计算..................................................................................................................................................
  122. BatShort=CBMSBatInterShort.BatInterShort(sn,celltype,df_bms,df_soh,df_warning_ram_sn,df_warning_ram_sn1,df_warning_ram_sn2,df_warning_ram_sn3,df_lfp_ram_sn,df_chrgvolt_ram_sn)
  123. df_short_res, df_ram_res, df_ram_res1, df_ram_res2, df_ram_res3, df_ram_res4, df_chrgvolt_ram_sn=BatShort.intershort()
  124. if not df_short_res.empty:
  125. df_short_res.columns = ['time_st', 'time_sp', 'sn', 'method', 'short_current', 'baltime']
  126. df_short_res.to_sql("cellStateEstimation_interShort",con=db_qxcas_engine, if_exists="append",index=False)
  127. #静置电压排名..................................................................................................................................................
  128. BatUniform=CBMSBatUniform.BatUniform(sn,celltype,df_bms,df_uniform,df_ram_res3,df_lfp_ram_sn1)
  129. df_rank_res, df_ram_res3, df_ram_res5=BatUniform.batuniform()
  130. if not df_rank_res.empty:
  131. df_uniform=df_rank_res
  132. df_rank_res.to_sql("cellstateestimation_uniform_socvoltdiff",con=db_qxcas_engine, if_exists="append",index=False)
  133. #电压离群.....................................................................................................................................................
  134. # df_voltsigma=VoltStray.main(sn,df_bms,celltype)
  135. # if not df_voltsigma.empty:
  136. # df_voltsigma.to_sql("outlier_voltchangeratio",con=db_qxcas_engine, if_exists="append",index=False)
  137. #内短路ram处理.........................................................
  138. df_warning_ram=df_warning_ram.drop(df_warning_ram[df_warning_ram.sn==sn].index)
  139. df_warning_ram1=df_warning_ram1.drop(df_warning_ram1[df_warning_ram1.sn==sn].index)
  140. df_warning_ram2=df_warning_ram2.drop(df_warning_ram2[df_warning_ram2.sn==sn].index)
  141. df_warning_ram3=df_warning_ram3.drop(df_warning_ram3[df_warning_ram3.sn==sn].index)
  142. df_chrgvolt_ram=df_chrgvolt_ram.drop(df_chrgvolt_ram[df_chrgvolt_ram.sn==sn].index)
  143. df_warning_ram=pd.concat([df_warning_ram,df_ram_res],ignore_index=True)
  144. df_warning_ram1=pd.concat([df_warning_ram1,df_ram_res1],ignore_index=True)
  145. df_warning_ram2=pd.concat([df_warning_ram2,df_ram_res2],ignore_index=True)
  146. df_warning_ram3=pd.concat([df_warning_ram3,df_ram_res3],ignore_index=True)
  147. df_chrgvolt_ram=pd.concat([df_chrgvolt_ram,df_chrgvolt_ram_sn],ignore_index=True)
  148. df_lfp_ram=df_lfp_ram.drop(df_lfp_ram[df_lfp_ram.sn==sn].index)
  149. df_lfp_ram=pd.concat([df_lfp_ram,df_ram_res4],ignore_index=True)
  150. if celltype>50:
  151. df_lfp_ram1=df_lfp_ram1.drop(df_lfp_ram1[df_lfp_ram1.sn==sn].index)
  152. df_lfp_ram1=pd.concat([df_lfp_ram1,df_ram_res5],ignore_index=True)
  153. #电池热安全预警..............................................................................................................................................................
  154. #读取内短路、析锂和一致性结果数据库数据
  155. df_short = pd.read_sql("select time_sp,sn,short_current from cellstateestimation_intershort where sn = '{}' and time_sp between '{}' and '{}'".format(sn,start_time1,end_time), db_qxcas_engine)
  156. # df_liplated = pd.read_sql("select time,sn,liplated,liplated_amount from mechanism_liplated where sn = '{}' and time between '{}' and '{}'".format(sn,start_time2,end_time), db_qxcas_engine)
  157. df_uniform = pd.read_sql("select time,sn,cellsoc_diff,cellvolt_diff,cellmin_num,cellmax_num,cellvolt_rank from cellstateestimation_uniform_socvoltdiff where sn = '{}' and time between '{}' and '{}'".format(sn,start_time2,end_time), db_qxcas_engine)
  158. # df_voltsigma = pd.read_sql("select time,sn,VolOl_Uni,VolChng_Uni from outlier_voltchangeratio where sn = '{}' and time between '{}' and '{}'".format(sn,start_time3,end_time), db_qxcas_engine)
  159. #获取sn的故障RAM
  160. df_fault_ram_sn=df_fault_ram[df_fault_ram['product_id']==sn]
  161. df_fault_ram_sn.reset_index(inplace=True, drop=True)
  162. #热安全预警
  163. BatWarning=CBMSSafetyWarning.SafetyWarning(sn,celltype,df_short,df_uniform,df_soh,df_fault_ram_sn)
  164. df_res_new, df_res_chg=BatWarning.diag()
  165. #新增内短路故障写入数据库
  166. if not df_res_new.empty:
  167. df_res_new['add_time'] = datetime.datetime.now()
  168. df_res_new['factory'] = factory
  169. df_res_new.to_sql("all_fault_info",con=db_safety_platform_engine, if_exists="append",index=False)
  170. conn_platform.commit()
  171. #内短路结束故障更新数据库
  172. if not df_res_chg.empty:
  173. df_res_chg['Batpos']=1
  174. cursor_platform.execute('''
  175. update all_fault_info set update_time='{}',end_time='{}', Batpos={} where product_id='{}' and code={} and end_time='0000-00-00 00:00:00'
  176. '''.format(datetime.datetime.now(), df_res_chg.iloc[-1]['end_time'], df_res_chg.iloc[-1]['Batpos'],sn, 'C490'))
  177. conn_platform.commit()
  178. except:
  179. logger.error(traceback.format_exc)
  180. logger.error(u"{} :{},{} 任务运行错误\n".format(sn,start_time,end_time), exc_info=True)
  181. cursor_platform.close()
  182. conn_platform.close()
  183. cursor_cas.close()
  184. conn_cas.close()
  185. db_qxcas_engine.dispose()
  186. db_safety_platform_engine.dispose()
  187. logger.info("pid-{} Done!".format(os.getpid()))
  188. #...................................................主进程...........................................................................................................
  189. if __name__ == "__main__":
  190. # 日志
  191. log_path = 'log/'
  192. if not os.path.exists(log_path):
  193. os.makedirs(log_path)
  194. logger = logging.getLogger("main")
  195. logger.setLevel(logging.DEBUG)
  196. # 根据日期滚动(每天产生1个文件)
  197. fh = logging.handlers.TimedRotatingFileHandler(filename='{}/main_info.log'.format(log_path), when="D", interval=1, backupCount=30,
  198. encoding="utf-8")
  199. formatter = logging.Formatter("%(asctime)s - %(name)s-%(levelname)s %(message)s")
  200. fh.suffix = "%Y-%m-%d_%H-%M-%S"
  201. fh.extMatch = re.compile(r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}")
  202. fh.setFormatter(formatter)
  203. fh.setLevel(logging.INFO)
  204. logger.addHandler(fh)
  205. fh = logging.handlers.TimedRotatingFileHandler(filename='{}/main_error.log'.format(log_path), when="D", interval=1, backupCount=30,
  206. encoding="utf-8")
  207. formatter = logging.Formatter("%(asctime)s - %(name)s-%(levelname)s %(message)s")
  208. fh.suffix = "%Y-%m-%d_%H-%M-%S"
  209. fh.extMatch = re.compile(r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}")
  210. fh.setFormatter(formatter)
  211. fh.setLevel(logging.ERROR)
  212. logger.addHandler(fh)
  213. logger.info("pid is {}".format(os.getpid()))
  214. # 时间设置
  215. # now_time = datetime.datetime.now()
  216. # pre_time = now_time + dateutil.relativedelta.relativedelta(days=-1)# 前一日
  217. # end_time=datetime.datetime.strftime(now_time,"%Y-%m-%d 00:00:00")
  218. # start_time=datetime.datetime.strftime(pre_time,"%Y-%m-%d 00:00:00")
  219. history_run_flag = False # 历史数据运行标志
  220. # # 更新sn列表
  221. host='rm-bp10j10qy42bzy0q7.mysql.rds.aliyuncs.com'
  222. port=3306
  223. db='qixiang_oss'
  224. user='qixiang_oss'
  225. password='Qixiang2021'
  226. conn = pymysql.connect(host=host, port=port, user=user, password=password, database=db)
  227. cursor = conn.cursor()
  228. cursor.execute("select sn, imei, add_time from app_device where status in (1,2,3)")
  229. res = cursor.fetchall()
  230. df_sn = pd.DataFrame(res, columns=['sn', 'imei', 'add_time'])
  231. df_sn = df_sn.reset_index(drop=True)
  232. conn.close();
  233. # 数据库配置
  234. host = 'rm-bp10j10qy42bzy0q77o.mysql.rds.aliyuncs.com'
  235. port = 3306
  236. user = 'qx_cas'
  237. password = parse.quote_plus('Qx@123456')
  238. database = 'qx_cas'
  239. db_engine = create_engine(
  240. "mysql+pymysql://{}:{}@{}:{}/{}?charset=utf8".format(
  241. user, password, host, port, database
  242. ))
  243. DbSession = sessionmaker(bind=db_engine)
  244. # 运行历史数据配置
  245. df_first_data_time = pd.read_sql("select * from bat_first_data_time", db_engine)
  246. # 算法参数
  247. host='rm-bp10j10qy42bzy0q77o.mysql.rds.aliyuncs.com'
  248. port=3306
  249. db='safety_platform'
  250. user='qx_read'
  251. password=parse.quote_plus('Qx@123456')
  252. tablename='all_fault_info'
  253. db_res_engine = create_engine(
  254. "mysql+pymysql://{}:{}@{}:{}/{}?charset=utf8".format(
  255. user, password, host, port, db
  256. ))
  257. #............................模块运行前,先读取数据库中所有结束时间为0的数据,需要从数据库中读取................
  258. df_warning_ram=pd.DataFrame(columns=['sn','time','deltsoc','cellsoc'])
  259. df_warning_ram1=pd.DataFrame(columns=['sn','time1','deltsoc1'])
  260. df_warning_ram2=pd.DataFrame(columns=['sn','time2','deltAs2'])
  261. df_warning_ram3=pd.DataFrame(columns=['sn','time3','standingtime','standingtime1','standingtime2','standingtime3'])
  262. df_lfp_ram=pd.DataFrame()
  263. df_lfp_ram1=pd.DataFrame()
  264. df_chrgvolt_ram=pd.DataFrame(columns=['sn','time','deltvolt','packcrnt_avg','temp_avg'])
  265. # now_time='2021-10-15 00:00:00'
  266. # now_time=datetime.datetime.strptime(now_time,'%Y-%m-%d %H:%M:%S')
  267. saftywarning_cal()
  268. #定时任务.......................................................................................................................................................................
  269. scheduler = BlockingScheduler()
  270. scheduler.add_job(saftywarning_cal, 'interval', hours=6, id='saftywarning_cal')
  271. try:
  272. scheduler.start()
  273. except Exception as e:
  274. scheduler.shutdown()
  275. logger.error(str(e))