基于simulink模拟固定翼无人机简化燃油燃烧仿真

✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。

🍎个人主页:Matlab科研工作室

🍊个人信条:格物致知。

更多Matlab仿真内容点击👇

智能优化算法       神经网络预测       雷达通信       无线传感器        电力系统

信号处理              图像处理               路径规划       元胞自动机        无人机 

⛄ 内容介绍

Brake specific fuel consumption (BSFC) is a parameter that reflects the efficiency of a combustion engine which burns fuel and produces rotational power (at the shaft or crankshaft). In automotive applications, BSFC is used to evaluate the efficiency of the internal combustion engines (ICE). The keyword “brake” is related to the use of a dynamometer (electrical brake) to measure the engine parameters (fuel mass flow rate, torque, etc.).

An internal combustion engine requires fuel and air to produce energy. The amount of fuel used is usually measured on a dynamometer, as a mass flow rate, in kilograms per second [kg/s]. This parameter can not be used to evaluate the efficiency of the engine because it is not obvious how much power we can extract from the fuel. Therefore by dividing the fuel mass flow rate [kg/s] to the engine output power [W], we obtain the brake specific fuel consumption [kg/J]:

⛄ 部分代码

clear 

close all

clc

%% aero data

Sref=0.6 ;% m2

aero_UAV=xlsread('UAVdata.xlsx','A:C');

CL_uav=aero_UAV(:,1);

CD_uav=aero_UAV(:,2);

% polynomial for drag polar

DP=polyfit(CL_uav,CD_uav,2);

CD_fit=DP(1)*CL_uav.^2+DP(2)*CL_uav+DP(3);

%% propeller data

Dprop= 0.482 ;%m

J=xlsread('UAVdata.xlsx','P3:P16');

%% CP vs J coeff

p0=0.03840634;

p1=0.04503419;  %x

p2=-0.06173971; %x2

p3=-0.06297906; %x3

%% engine data 

load engine_data.mat

[C,h]=contourf(xx,yy,Zeng,'LevelList',300:20:600);

clabel(C,h)

hold on

[C1,h1] =contour(xx,yy,Zeng,'LevelList',600:100:3000);

clabel(C1,h1);

xlabel('RPM')

ylabel('Engine torque')

⛄ 运行结果

⛄ 参考文献

⛳️ 代码获取关注我

❤️部分理论引用网络文献,若有侵权联系博主删除

❤️ 关注我领取海量matlab电子书和数学建模资料

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值