登录
首页 » Others » VVVF控制方法

VVVF控制方法

于 2020-12-02 发布
0 396
下载积分: 1 下载次数: 6

代码说明:

VVVF控制方法 电机控制,详细讲解了VVVF的推导和电流环的控制◆若忽略定子漏阻抗的影响,则有,U1=4.44f Wkwl若想保持平不变,则应有U1/f1=常数(32)这就是F协调控制的原理,在VVF变频器广泛采用控制方法特点:1这是由静态模型得到的,因此它不强调动态性能;2这是在忽略定子漏阻抗的影响得到的,在频率比较低时,这种忽略会带来偏小,电机力矩不够,一般要进行补偿3.一般的ⅴ/控制如图3.1所示。额定频率以下采用恒力矩调速,额定频率以上采用恒功率调速。V/F曲线不同的负载应采用不同的V/F控制曲线odin. com图3.1V/F控制曲线3.2PWM遊变器的模型VVVF变频器一般采用电压源型逆变器(VSI),并采用PWM控制方法,图3.2是PWM逆变器和异步电机的等效框图。+U图3.2PWM逆变器模型开关函数在逆变器中定义开关函数SU、Sv、Sw为:T通T4截止时Su=1,反之Su=0;T3通T截止时Sv=1,反之Sv=0T2通T截止时Sw=1,反之Sw=0相电压在定义了开关信号之后,很容易得到△DM=m2n=o+△OM=1n+rm+6n+△Oh1u Svo t VON11v+LR,+vσdtWNLwo V-Iiw+e+ vON由于逆变器三相输出无中线,n+14+1=0将以上三式相加,得ON=(SU+sy+sw)uee当三相逆变器的反电势之和err t er t eW0即三相反电势平衡时,AO1A=3(2n+24+2)nq于是可得到逆变器电机模型为「din1(Su +Sy +sw)Rd iUUR(S + sU+sw)Wd iLWRWW(S+S、+Sw)WWdC0L dt(33)3.3规则采样的SPWM方法331规则采样SPWM的生成自然采样法和规则采样法是生成SPWM的两种主要方法自然采样法适合用模拟电路完成。而规则采样法适合用微计算机数字实现。在当今数字化时代,规则采样被广泛采用

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

发表评论

0 个回复

  • 神经网络 反向传播 matlab源代码 设计文档
    神经网络 反向传播 动量 自适应学习 课程设计 matlab 原代码 附设计文档
    2020-12-08下载
    积分:1
  • 基于JPBC的SM9算法的java实现
    基于JPBC的SM9算法的java实现,实现SM9算法的所有部分。包括主密钥对的生成,用户私钥生成;签名验签算法,密钥封装解封算法,数据加密解密算法,密钥交换算法;以及对《GMT 0044-2016 SM9标识密码算法:第5部分》测试的验证。
    2020-06-27下载
    积分:1
  • arcgis测试的mxd文件
    mxd文件
    2020-11-05下载
    积分:1
  • STC89C52+LCD1602+DS1302电子时钟
    【实例简介】基于STC89C52+LCD1602+DS1602做得数字时钟可以修改时间设置闹铃
    2021-10-28 00:31:22下载
    积分:1
  • 基于Hadoop大数据平台实现遗传算法并行化.zip
    【实例简介】基于Hadoop大数据平台实现遗传算法并行化,借助于Hadoop中的MapReduce模型,将遗传算法划分为Map和Reduce两个阶段,在Map阶段并行化执行。真正意义上实现了遗传算法的并行化。
    2021-11-22 00:37:18下载
    积分:1
  • UCI数据集大全,上学期间整理的
    很全的UCI数据集,希望能帮到您,欢迎下载。上学期间整理的,用于做分类聚类等。欢迎您的下载与使用,时间很久了,谢谢网友的评论
    2020-12-11下载
    积分:1
  • fpga学习资料fpga学习资料
    FPGA资料,文档设计,原理设计,源码设计,适合入门级别。
    2020-12-01下载
    积分:1
  • 稀疏自码深度学习的Matlab实现
    稀疏自编码深度学习的Matlab实现,sparse Auto coding,Matlab codetrain, m/7% CS294A/CS294W Programming Assignment Starter CodeInstructions%%%This file contains code that helps you get started ontheprogramming assignment. You will need to complete thecode in sampleIMAgEsml sparseAutoencoder Cost m and computeNumericalGradientml For the purpose of completing the assignment, you domot need tochange the code in this filecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencodtrain.m∥%%========%6% STEP 0: Here we provide the relevant parameters valuesthat willl allow your sparse autoencoder to get good filters; youdo not need to9 change the parameters belowvisibleSize =8*8; number of input unitshiddensize 25number of hidden unitssparsity Param =0.01; desired average activation ofthe hidden units7 (This was denoted by the greek alpharho, which looks like a lower-case pcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod4/57train.,m∥in the lecture notes)1 ambda=0.0001%o weight decay parameterbeta 3%o weight of sparsity penalty term%%==:79 STEP 1: Implement sampleIMAGESAfter implementing sampleIMAGES, the display_networkcommand shouldfo display a random sample of 200 patches from the datasetpatches sampleIMAgES;display_network(patches(:, randi(size(patches, 2), 204, 1)), 8)%为产生一个204维的列向量,每一维的值为0~10000curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod5/57train.m/v%中的随机数,说明是随机取204个 patch来显示%o Obtain random parameters thetatheta= initializeParameters ( hiddenSize, visibleSize)%%=============三三三三====================================97 STEP 2: Implement sparseAutoencoder CostYou can implement all of the components (squared errorcost, weight decay termsparsity penalty) in the cost function at once, butit may be easier to do%o it step-by-step and run gradient checking (see STEP3 after each stepWecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod6/57train. m vb suggest implementing the sparseAutoencoder Cost functionusing the following steps(a) Implement forward propagation in your neural networland implement the%squared error term of the cost function. Implementbackpropagation tocompute the derivatives. Then (using lambda=beta=(run gradient Checking%to verify that the calculations corresponding tothe squared error costterm are correctcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod7/57train. m vl(b) Add in the weight decay term (in both the cost funcand the derivativecalculations), then re-run Gradient Checking toverify correctnessl (c) Add in the sparsity penalty term, then re-run gradiChecking toverify correctnessFeel free to change the training settings when debuggingyour%o code. (For example, reducing the training set sizecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod8/57train m vl/number of hidden units may make your code run fasterand setting betaand/or lambda to zero may be helpful for debuggingHowever, in yourfinal submission of the visualized weights, please useparameters web gave in Step 0 abovecoS七grad]sparseAutoencoderCost(theta, visibleSize,hiddensize, lambda,sparsityParam, beta,patches)二〓二二二二二二二〓二〓二〓二〓=二====〓=curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod9/57train.m vlll96% STeP 3: Gradient CheckingHint: If you are debugging your code, performing gradienchecking on smaller modelsand smaller training sets (e. g, using only 10 trainingexamples and 1-2 hiddenunits) may speed things upl First, lets make sure your numerical gradient computationis correct for a%o simple function. After you have implemented computeNumerun the followingcheckNumericalGradientocurer:YiBinYUyuyibintony@163.com,WuYiUniversityDeep Learning, MATLAB Code for Sparse Autoencode10/57
    2020-12-05下载
    积分:1
  • 基于vlc sdk封装的多窗口监视器,播放器
    基于vlc sdk(版本2.1.2)封装的多窗口播放器,界面是基于qt做的(qt版本4.8.4)。可以进行电视直播,接摄像头,播放本地文件。同时进行转码保存。支持H264格式和mpeg2,mjpeg格式的转码保存。支持TS,MP4,AVI的封装。
    2021-05-07下载
    积分:1
  • 格子Boltzmann方法处理复杂边界
    格子Boltzmann方法处理复杂边界,包括三类:启发式边界处理方式,插值密度分布函数的边界处理方式,浸没边界-格子 Boltzmann 方法。
    2021-05-06下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载