登录
首页 » matlab » PMSM simulation

PMSM simulation

于 2018-05-30 发布 文件大小:185KB
0 222
下载积分: 1 下载次数: 14

代码说明:

  2015仿真模型汇总-PMSM变频调速系统及其控制。 书籍《永磁同步电动机变频调速系统及其控制 》的配套代码。(2015 simulation model summary -PMSM variable frequency speed regulation system and its control.)

文件列表:

2015仿真模型汇总\chpwm.mdl, 46059 , 2014-01-02
2015仿真模型汇总\ex_spwm2.mdl, 23812 , 2014-01-01
2015仿真模型汇总\ex_squarewave.mdl, 36009 , 2014-03-25
2015仿真模型汇总\foc_pmsm20140506.mdl, 64928 , 2014-05-08
2015仿真模型汇总\m040389svpwm_1_1.mdl, 26306 , 2014-01-01
2015仿真模型汇总\m040389svpwm_3_1.mdl, 28833 , 2014-01-01
2015仿真模型汇总\m040389svpwm_3_2.mdl, 38994 , 2014-01-01
2015仿真模型汇总\pmsmdtccomplete2.mdl, 144861 , 2014-03-15
2015仿真模型汇总\PMSM_3methods_prn.mdl, 88421 , 2013-12-17
2015仿真模型汇总\PMSM_dis_2009.mdl, 74163 , 2015-06-16
2015仿真模型汇总\PMSM_dis_42kw_ana322.mdl, 84495 , 2014-01-25
2015仿真模型汇总\PMSM_DQS.mdl, 22965 , 2013-12-18
2015仿真模型汇总\PMSM_INNER.mdl, 34654 , 2013-12-18
2015仿真模型汇总\sita1.m, 205 , 2009-02-05
2015仿真模型汇总\SVPWM20140323.mdl, 709647 , 2014-03-23
2015仿真模型汇总, 0 , 2015-11-06

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • sort_0.7
    说明:  Sorting m3u files, for iptv
    2019-05-13 16:25:45下载
    积分:1
  • This is VC++ Some of the shortcut keys, in the hope that useful
    这是VC++中的一些快捷键,希望对大家有用-This is VC++ Some of the shortcut keys, in the hope that useful
    2022-04-01 06:48:00下载
    积分:1
  • HA12B_1#_IG_start
    INCA数据采集,可以用CANape进行查看(INCA data acquisition, can be viewed with CANape)
    2019-01-30 10:29:22下载
    积分:1
  • matlab 常微分方程数值解法 源程序代码
    说明:  11.1 Euler方法 380   11.1.1 Euler公式的推导 380   11.1.2 Euler方法的改进 383   11.2 Runge-Kutta方法 385   11.2.1 二阶Runge-Kutta方法 385   11.2.2 三阶Runge-Kutta方法 388   11.2.3 四阶Runge-Kutta方法 390   11.2.4 隐式Runge-Kutta方法 391   11.3 线性多步法 392   11.3.1 Adams外推公式 392   11.3.2 Adams内插公式 394   11.3.3 Adams预测校正公式 395   11.4 微分方程组的数值解 397   11.4.1 Euler方法 397   11.4.2 经典四阶Runge-Kutta方法 398   11.4.3 高阶方程组的求解 399   11.5 刚性方程组的数值解 401   11.5.1 梯形公式 401   11.5.2 隐式Runge-Kutta方法 402   11.5.3 Adams隐式公式 403   11.6 边值问题的数值解 405   11.6.1 打靶法 405   11.6.2 差分法 409   11.7 MATLAB自带函数应用 411   11.7.1 ode系列函数 411   11.7.2 bvp系列函数 414   11.8 应用案例 416(numerical methods for ordinary differential equations)
    2021-01-03 13:48:57下载
    积分:1
  • 2
    c++ 实现了链表的各种功能,自己编写。(C + + realizes various functions of the linked list and writes it by myself.)
    2018-12-11 09:38:53下载
    积分:1
  • 一个小游戏
    一个小游戏-a little game
    2023-05-29 08:15:02下载
    积分:1
  • MINRES
    采用CG法求解稀疏对称奇异矩阵得到的Ax=b(Implementation of a conjugate-gradient type method for solving sparse linear equations: Solve Ax = b or (A- sI)x = b. The matrix A- sI must be symmetric but it may be definite or indefinite or singular. The scalar s is a shifting parameter – it may be any number. The method is based on Lanczos tridiagonalization. You may provide a preconditioner, but it must be positive definite. )
    2009-09-11 12:24:21下载
    积分:1
  • 算法图解.pdf
    本书示例丰富,图文并茂,以简明易懂的方式阐释了算法,旨在帮助程序员在日常项目中更好地利用 算法为软件开发助力。前三章介绍算法基础,包括二分查找、大 O 表示法、两种基本的数据结构以及递归 等。余下的篇幅将主要介绍应用广泛的算法,具体内容包括 :面对具体问题时的解决技巧,比如何时采用 贪婪算法或动态规划 ;散列表的应用 ;图算法 ;K 最近邻算法。 本书适合所有程序员、计算机专业相关师生以及对算法感兴趣的读者(This book is rich in examples and illustrates algorithms in a concise and easy-to-understand way. It aims to help programmers make better use of algorithms in daily projects to help software development. The first three chapters introduce the basic algorithms, including binary search, large O representation, two basic data structures and recursion. The rest of the paper will focus on the widely used algorithms, including: when to use greedy algorithm or dynamic programming, hash table application, graph algorithm, K nearest neighbor algorithm when facing specific problems. This book is suitable for all programmers, computer-related teachers and students, and readers interested in algorithms.)
    2020-06-20 19:00:02下载
    积分:1
  • cutbyPlygon
    arcpy rasterdata batchclip
    2017-12-04 13:41:02下载
    积分:1
  • pic_tutorial
    PIC Microcontroller Tutorial
    2013-04-03 07:45:20下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载