function power = simpleTurbine( windSpeed, ratedOutputPower, cutInSpeed, ratedOutputSpeed, cutOutSpeed ) %#codegen
%Simple Turbine
% This function implements a simple power versus wind speed characteristic
% to represent a wind turbine.
%
% Given an input of wind speed, m/s, the function outputs turbine power, W.
%
% The parameters must meet the following requirement:
%
% Cut-in speed < Rated output speed < Cut-out speed
% Check rated output power is greater than zero
if ~(ratedOutputPower > 0)
error( 'Rated output power must be greater than zero.' );
end
% Check cut-in speed is less than rated output speed
if ~(cutInSpeed < ratedOutputSpeed)
error( 'Cut-in speed must be less than rated output speed.' );
end
% Check rated output speed is less than cut-out speed
if ~(ratedOutputSpeed < cutOutSpeed)
error( 'Rated output speed must be less than cut-out speed.' );
end
if windSpeed < cutInSpeed
% Wind speed is less then cut-in speed, power output is zero
power = 0;
elseif windSpeed < ratedOutputSpeed
% Wind speed is greater than cut-in speed and less than rated output
% speed, power output follows linear characteristic from zero to rated
% power
cutInGradient = ( ratedOutputPower / ( ratedOutputSpeed - cutInSpeed ) );
power = cutInGradient * ( windSpeed - cutInSpeed );
elseif windSpeed < cutOutSpeed
% Wind speed is greater than rated output speed and less than cut-out
% speed, power output is limited to rated power
power = ratedOutputPower;
else
% Wind speed is greater than cut-out speed, power output is zero
power = 0;
end
没有合适的资源?快使用搜索试试~ 我知道了~
NO6_风力发电机组.zip
共3个文件
m:1个
mlx:1个
csv:1个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 27 浏览量
2024-05-03
23:22:24
上传
评论
收藏 667KB ZIP 举报
温馨提示
1.版本:matlab2014/2019a/2021a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。
资源推荐
资源详情
资源评论
收起资源包目录
NO6_风力发电机组.zip (3个子文件)
NO6_风力发电机组
WindTurbine.mlx 329KB
simpleTurbine.m 2KB
南京.csv 2.41MB
共 3 条
- 1
资源评论
matlab科研助手
- 粉丝: 3w+
- 资源: 5974
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功