【SCI】综合能源系统中热电联产、电制气和碳捕集系统的建模与优化(Matlab代码实现)

 

💥💥💞💞欢迎来到本博客❤️❤️💥💥

🏆博主优势:🌞🌞🌞博客内容尽量做到思维缜密,逻辑清晰,为了方便读者。

⛳️座右铭:行百里者,半于九十。

📋📋📋本文目录如下:🎁🎁🎁

目录

💥1 概述

📚2 运行结果

🎉3 参考文献

🌈4 Matlab代码实现


💥1 概述

文献来源:

摘要:热电联产(CHP)机组的利用是提高可再生能源住宿的关键途径。

然而,热电联产的碳排放对综合能源系统的污染和经济优化提出了挑战。针对这一挑战,本文提出了一种新型的电制气(P2G)和碳捕集系统(CCS)的热电联产优化调度模型,通过IES优化调度解决了P2G所需的碳源问题和热电联产的碳排放问题。该模型将CHP、P2G和CCS作为一个整体系统。建立了模型的运行规律,分析了模型的电、热、气、碳耦合特性。相应的,IES的优化策略考虑了所提出的模型和碳交易机制。建立了IES的最优调度模型,并利用YALMIP和GUROBI进行求解。仿真结果验证了该方法的有效性。与其他常规模型相比,该方法提高了可再生能源的容纳能力,降低了IES的碳排放和运行成本。

指标项:热电联产;碳捕获系统;碳交易;综合能源系统;power-to-gas;可再生能源。

 原文摘要:

Abstract—The utilization of combined heat and power (CHP) units is a key way to enhance renewable energy accommodation. However, carbon emissions of CHP challenge the pollution and economic optimization of integrated energy system (IES). To tackle this challenge, we propose a novel model and optimal dispatch for CHP with power-to-gas (P2G) and carbon capture system (CCS), which solves the problems of the carbon source 
required for P2G and the CHP's carbon emissions by the optimal dispatch in IES. The model takes the CHP, P2G, and CCS as a whole system. The operation rule of the model is developed, and its coupling characteristics of electric power, heat power, gas power and carbon are analyzed. Correspondingly, the optimization strategy of IES considers the proposed model and carbon trading mechanism. The optimal dispatch model of IES is 
established and solved by YALMIP, and GUROBI. Our method is verified by simulation. Compared with other conventional models, the accommodation capacity of renewable energy with the proposed method is enhanced, and the carbon emissions and operating costs of IES are also reduced. 
Index Terms—Combined heat and power; carbon capture system; carbon trading; integrated energy system; power-to-gas; renewable energy accommodation. 

 

📚2 运行结果

🎉3 参考文献

部分理论来源于网络,如有侵权请联系删除。

🌈4 Matlab代码实现

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
作为AI语言型,我可以提供一些MATLAB语言的代码示例,但是具体实现还需要您根据实际情况进行编写和调试。 以下是一段电联系统MATLAB代码示例,其包含了力学计算、能量转换和控部分的代码: %定义系统参数 T1 = 500; %锅炉出口温度(摄氏度) T2 = 200; %燃轮机出口温度(摄氏度) T3 = 150; %废锅炉出口温度(摄氏度) T4 = 50; %冷却水出口温度(摄氏度) P1 = 10; %锅炉压力(兆帕) P2 = 2; %燃轮机出口压力(兆帕) P3 = P2; %废锅炉入口压力(兆帕) P4 = 0.1; %冷却水入口压力(兆帕) Q1 = 100; %锅炉量输入(兆瓦) Q2 = 50; %燃轮机量输入(兆瓦) Q3 = 20; %废锅炉量输入(兆瓦) m1 = 100; %锅炉水流量(吨/小时) m2 = 50; %燃轮机流量(千克/小时) m3 = m1; %废锅炉水流量(吨/小时) m4 = 200; %冷却水流量(吨/小时) %力学计算 h1 = enthalpy('water', T1, P1) / 1000; %锅炉水焓值(千焦/千克) h2 = enthalpy('air', T2, P2) / 1000; %燃轮机进口空焓值(千焦/千克) h3 = enthalpy('air', T3, P3) / 1000; %废锅炉出口空焓值(千焦/千克) h4 = enthalpy('water', T4, P4) / 1000; %冷却水焓值(千焦/千克) Q4 = m4 * (h4 - h3); %冷却水吸收的废锅炉余(兆瓦) Q5 = m1 * (h1 - h4); %锅炉排放的余(兆瓦) Q6 = m2 * (h2 - h3); %燃轮机排放的余(兆瓦) Q7 = m3 * (h1 - h3); %废锅炉排放的余(兆瓦) %能量转换 P5 = Q1 - Q5; %锅炉输出的功率(兆瓦) P6 = Q2 - Q6; %燃轮机输出的功率(兆瓦) P7 = Q3 + Q4 - Q7; %废锅炉输出的功率(兆瓦) P8 = P5 + P6 + P7; %电联系统总输出功率(兆瓦) %控部分 if P8 > 100 %如果总输出功率超过100兆瓦 Q2 = Q2 - (P8 - 100); %减少燃轮机的量输入 elseif P8 < 100 %如果总输出功率不足100兆瓦 Q1 = Q1 + (100 - P8) / 2; %增加锅炉的量输入 Q2 = Q2 + (100 - P8) / 2; %增加燃轮机的量输入 end %输出结果 fprintf('锅炉输出的功率为:%.2f兆瓦\n', P5); fprintf('燃轮机输出的功率为:%.2f兆瓦\n', P6); fprintf('废锅炉输出的功率为:%.2f兆瓦\n', P7); fprintf('电联系统总输出功率为:%.2f兆瓦\n', P8);

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值