我正在尝试将SVPWM代码与我们今天的代码进行比较,作为预防措施,我还查看了反向停车例程。我注意到MCM_Rev_Park使用的形式与大多数其他形式不同,MCM_Park转换似乎与此匹配。显示CMSIS和MCSDK代码之间比较的注释如下所示。
MCM_Rev_Park:
Valfa = Vq * Cos(theta)+ Vd * Sin(theta)
Vbeta = -Vq * Sin(theta)+ Vd * Cos(theta)
ARM_math.h:
Id = Ialpha * cosVal + Ibeta * sinVal;
Iq = -Ialpha * sinVal + Ibeta * cosVal;
我在看MCSDK V5.0。
谢谢
以上来自于谷歌翻译
以下为原文
I'm trying to compare the SVPWM code with what we have today, and as a precau
tion I also looked at the inverse park routine. I noticed that MCM_Rev_Park uses a different form than most others use, and the MCM_Park transform seems to match this. Comments showing a comparison between CMSIS and MCSDK code is shown below.
MCM_Rev_Park:
Valfa= Vq*Cos(theta)+ Vd*Sin(theta)
Vbeta=-Vq*Sin(theta)+ Vd*Cos(theta) arm_math.h:
Id = Ialpha * cosVal + Ibeta * sinVal;
Iq = -Ialpha * sinVal + Ibeta * cosVal;
I'm looking at MCSDK V5.0.
Thanks