当前位置: 首页 > news >正文

城市轨道交通供电系统研究(Matlab代码实现)

👨‍🎓个人主页:研学社的博客
💥💥💞💞欢迎来到本博客❤️❤️💥💥


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


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

📋📋📋本文目录如下:🎁🎁🎁
目录
💥1 概述
📚2 运行结果
🎉3 参考文献
🌈4 Matlab代码实现

💥1 概述

城市轨道交通供电系统是为城市轨道交通运营提供所需电能的系统,不仅为城市轨道交通电动列车提供牵引用电,而且还为城市轨道交通运营服务的其他设施提供电能,如照明、通风、空调、给排水、通信、信号、防灾报警、自动扶梯等,应具备安全可靠、技术先进、功能齐全、调度方便和经济合理等特点。

在城市轨道交通的运营中,供电一旦中断,不仅会造成城市轨道交通运输系统的瘫痪,还会危及乘客生命与财产安全。因此, 高度安全可靠而又经济合理的电力供给是城市轨道交通正常运营的重要保证和前提。

📚2 运行结果

部分代码:

clear;

clc;

load('Tram.mat');

pelect=zeros(size(T,2),1);

% Extracting the power demand from the data structure T

for i=1:size(T,2)

pelect(i,1)=T(1,i).pelec;

end

figure;

plot(1:size(T,2),pelect);

title('Power Supply Profile');

% Calculating the maximum power demand of the time period

pmax=max(pelect);

ptotal=0;

for i=1:size(pelect,1)

ptotal=ptotal+pelect(i,1);

end

% ptotal=sum(pelect);

% Calculating the average pwower demand over the time period

pavg=ptotal/size(pelect,1);

disp('Average power: ' );

disp(pavg);

% Calculating the PPH

% If both average and maximum are greater than zero,

% Pavg and Pmax will mostly be greater than zero.

% If it is less than zero, we definitely need storage and hence PPH is set

% to 1.

if(pavg>=0 && pmax>0)

pph=1-(pavg/pmax);

else

pph=1;

end

disp('Potential for hybridization in power: ' );

disp(pph)

energyInBatt=zeros(size(pelect,1)-1,1);

% Pavg is assumed to be provided by the external supplier and the peaks

% shall be managed by the storage, so the energy in battery shall be

% calculated on the basis of the difference between the electrical power

% and the average power.

for i=2:size(pelect,1)

energyInBatt(i,1)=energyInBatt(i-1,1)-(pelect(i-1,1)-pavg);

end

figure;

plot(energyInBatt);

title('Energy in battery (in J)');

% Useful energy of a battery is definaed as the difference between the maximum and

% minimum energy stored in a time cycle

eu=max(energyInBatt)-min(energyInBatt);

disp(strcat('Useful Energy (in Joules): ',num2str(eu)));

if(eu~=0 && pmax>=0)

phe=pmax/eu;

else

phe=Inf;

end

disp('Potential for hybridization in energy: ' );

disp(phe)

% So using the PHE and PPH values, we can idetify that either power or

% energy is more influential for the design of the battery system.

🎉3 参考文献

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

[1]鲁宗相,王彩霞,闵勇,周双喜,吕金祥,王云波.微电网研究综述[J].电力系统自动化,2007(19):100-107.

🌈4 Matlab代码实现

http://www.lryc.cn/news/12897.html

相关文章:

  • 什么是 RESTful 风格?
  • 从业6年,对敏捷和自动化测试的一点心得
  • ThreeJS 之界面控制
  • 【查找算法】解析学习四大常用的计算机查找算法 | C++
  • Android实例仿真之一
  • 软考高级-信息系统管理师之重要工具和技术的口语化表示(最新版)
  • 基于springboot+vue的个人健康信息服务平台
  • SpringBoot2.x实战专题——SpringBoot2 多配置文件【开发环境、测试环境、生产环境】
  • 测试2:编写测试用例的方法
  • docker安装配置镜像加速器-拉取创建Mysql容器示例
  • WSL1和WSL2相互转换以及安装路径迁移相关问题
  • 系统分析*
  • 【redis】持久化:RDB和AOF
  • 2023Python接口自动化测试实战教程,附视频实战讲解
  • 【原创】java+swing+sqlserver药品管理系统设计与实现
  • 软考高级信息系统项目管理师系列之二十七:信息文档管理与配置管理
  • 软考高级-信息系统管理师之项目管理基础(最新版)
  • leetcode240+Search a 2D Matrix II+从右上角开始
  • 0xL4ugh 2023
  • Mybatis(4)之跟着老杜做一个简单的银行转账会话
  • VBA提高篇_ 22 事件处理
  • 【蓝桥杯集训·周赛】AcWing 第91场周赛
  • 【人工智能AI】三、NoSQL 实战《NoSQL 企业级基础入门与进阶实战》
  • platform 总线
  • 2023第10届生物发酵展3月30-4月1号山东济南开展,参观路线来了
  • RK356x U-Boot研究所(命令篇)3.6 fdt命令的用法
  • 2023年社工工资多少钱一月 能领多少补贴
  • 面试攻略,Java 基础面试 100 问(十一)
  • 接口测试(Fiddler工具)
  • Debian/Ubuntu 安装和使用 perf 调试工具