资源简介
电动汽车建模,采用m语言编写的电动汽车模型
代码片段和文件信息
% Electric vehicle model
% Created by John Hedengren john_hedengren@hotmail.com
% based on dc motor model
% by Roger Aarenstrup roger.aarenstrup@mathworks.com
%
function xdot=electric_car(tx)
global u
% Vin is the input voltage to the motor (Volts)
% i is the motor current (Amps)
% dth_m is the rotor angular velocity sometimes called omega (radians/sec)
% th_m is the rotor angle theta (radians)
% dth_l is the wheel angular velocity (rad/sec)
% th_l is the wheel angle (radians)
% dth_v is the vehicle velocity (m/sec)
% th_v is the distance travelled (m)
% Input: Vin: motor voltage
Vin = u;
% Motor parameters (DC motor)
Rm = 0.1; % Motor resistance (ohm)
Lm = 0.01; % motor inductance (Henrys)
Kb = 6.5e-4; % Back EMF constant (Volt-sec/Rad)
Kt
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2080 2007-09-26 18:29 electric_car.m
文件 1632 2007-09-26 18:19 step.m
文件 1321 2014-02-12 12:31 license.txt
- 上一篇:采用稀疏表示的图像融合方法
- 下一篇:EV-charge
相关资源
- EV-charge
- MATLAB 神经网络43个案例分析
- CKF-IMM 采用CKF的多模型滤波的英文文献
- sift sift 特征提取算法matlab实现
- MLS算出法向量
- 光学仿真软件Optical
- 实现模拟退火算法的矩形排样
- MATLAB小波分析与应用 30个案例分析
- svd图像压缩(SVD_comprecession)
- 短时傅里叶和魏格纳变换的matlab函数
- 对涡旋光的计算 同时成像。
- Matlab11111
- 基本烟花算法进行函数最小/最大值寻
- 风机模型可仿真结果
- time-vari-meshing-stiffness
- 永磁同步直线电机滑膜控制(SMC)M
-
SVD-ba
sed-watermarking 基于SVD的DCT域和 - 压缩传感重构算法(DCT-OMP)
- 整流逆变双向
- CDJ1 电动汽车充电仿真模型
- 风光储多分布式电源研究设计的实验
- 利用多相滤波结构实现宽带信号的信
- 通过B-样条曲线用于机械臂的运动控制
- heat-conduction-equation 偏微分方程热传导
- 频率步进matlab仿真
- CNN 深度学习的卷积神经网络的MATLAB代
- pmsm 同步电机建模
- LG-modes 模拟仿真具有轨道角动量的L
- matlab计算岁差章动极移和地球自转矩
- BPSK与QPSK调制解调系统的Matlab仿真程序
评论
共有 条评论