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

简介: 基于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电子书和数学建模资料


相关文章
|
6天前
|
数据可视化 算法
MATLAB Simulink 单相半波可控整流电路性能研究
MATLAB Simulink 单相半波可控整流电路性能研究
7 2
|
6天前
|
算法 新能源
【免费】虚拟同步发电机(VSG)惯量阻尼自适应控制仿真模型【simulink】
【免费】虚拟同步发电机(VSG)惯量阻尼自适应控制仿真模型【simulink】
|
6天前
|
算法 新能源
Simulink|【免费】虚拟同步发电机(VSG)惯量阻尼自适应控制仿真模型
Simulink|【免费】虚拟同步发电机(VSG)惯量阻尼自适应控制仿真模型
【Simulink】飞轮储能系统的建模与MATLAB仿真(永磁同步电机作为飞轮驱动电机)
【Simulink】飞轮储能系统的建模与MATLAB仿真(永磁同步电机作为飞轮驱动电机)
|
9月前
|
传感器 数据可视化
Simulink|电动汽车、永磁电动机建模与仿真
Simulink|电动汽车、永磁电动机建模与仿真
|
9月前
|
算法 机器人
三自由度PUMA机器人非线性控制研究(Matlab代码、Simulink仿真实现)
三自由度PUMA机器人非线性控制研究(Matlab代码、Simulink仿真实现)
114 0
|
9月前
|
算法 机器人
【工业机器人】用于轨迹规划和执行器分析的机械手和移动机器人模型(Matlab&Simulink)
【工业机器人】用于轨迹规划和执行器分析的机械手和移动机器人模型(Matlab&Simulink)
|
9月前
|
算法 机器人 图形学
具有电动驱动的四足机器人模型研究(Simulink&Matlab代码)
具有电动驱动的四足机器人模型研究(Simulink&Matlab代码)
|
9月前
|
传感器 机器学习/深度学习
用于永磁同步电机驱动器的自适应SDRE非线性无传感器速度控制(Matlab&Simulink实现)
用于永磁同步电机驱动器的自适应SDRE非线性无传感器速度控制(Matlab&Simulink实现)
|
9月前
|
传感器 算法 计算机视觉
【状态估计】基于卡尔曼滤波器的传感器直流电机驱动研究(Matlab代码、Simulink实现)
【状态估计】基于卡尔曼滤波器的传感器直流电机驱动研究(Matlab代码、Simulink实现)