為深入了解基于UC3854A控制的PFC變換器中的動力學特性,研究系統參數變化對變換器中分岔現象的影響,在建立Boost PFC變換器雙閉環數學模型的基礎上,用Matlab軟件對變換器中慢時標分岔及混沌等不穩定現象進行了仿真。在對PFC變換器中慢時標分岔現象仿真的基礎上,分析了系統參數變化對分岔點的影響,并進行了仿真驗證。仿真結果清晰地顯示了輸入整流電壓的幅值變化對系統分岔點的影響。 Abstract: In order to better understand the dynamics characteristic of power factor correction converter based on UC3854A, and make the way that parameters change influences the bifurcation phenomena of the system clearly. The Math model of the two closed loop circuits to the Boost PFC (Power Factor Correction) converter controller was built. Then, with the help of Matlab, the simulation for nonlinear phenomena such as chaos and slow-scale bifurcation in the PFC converter was made. Finally the factors that have influence to the phenomenon of bifurcation under slow-scale in PFC converter were analyzed. The simulation results clearly show the parameters change influences the bifurcation point of the system.
上傳時間: 2013-10-17
上傳用戶:杜瑩12345
微型打印機的C語言源程序:微型打印機的C51源程序#define uchar unsigned char#define uint unsigned int#include <reg52.h>#include <stdio.h>#include <absacc.h>#include <Math.h>#include <string.h>#include <ctype.h>#include <stdlib.h>#define PIN XBYTE[0x8000]#define POUT XBYTE[0x9000]sbit PRINTSTB =P1^6;sbit DOG=P1^7;bdata char pin&#118alue;sbit PRINTBUSY=pin&#118alue^7;sbit PRINTSEL =pin&#118alue^6;sbit PRINTERR =pin&#118alue^5;sbit PRINTACK =pin&#118alue^4; void PrintString(uchar *String1,uchar *String2);void initprint(void);void print(uchar a); void initprint(void) //打印機初始化子程序 { pin&#118alue=PIN; if((PRINTSEL==1)&&(PRINTERR==1)) { print(0x1b); print(0x40); print(0x1b); print(0x38); print(0x4); }}void print(uchar a) //打印字符a{ pin&#118alue=PIN; if((PRINTSEL==0)||(PRINTERR==0)) return; for(;;) { DOG=~DOG; pin&#118alue=PIN; if(PRINTBUSY==0) break; } DOG=~DOG; POUT=a; PRINTSTB=1; PRINTSTB=1; PRINTSTB=1; PRINTSTB=1; PRINTSTB=0; PRINTSTB=0; PRINTSTB=0; PRINTSTB=0; PRINTSTB=1;}void PrintString(uchar *String) //打印字符串后回車{ uchar CH; for (;;) { DOG=~DOG; CH=*String; if (CH==0) { print(0x0d); break; } print(CH); String++; } initprint();}
上傳時間: 2013-10-18
上傳用戶:hasan2015
C語言函數大全,已包含絕大部分的函數。每個函數包含函數名,功能,用法,舉例,內容詳盡。希望對大家有所幫助~~ 函數名: abort 功 能: 異常終止一個進程 用 法: void abort(void); 程序例: #include #include int main(void) { printf("Calling abort()\n"); abort(); return 0; /* This is never reached */ } 函數名: abs 功 能: 求整數的絕對值 用 法: int abs(int i); 程序例: #include #include int main(void) { int number = -1234; printf("number: %d absolute value: %d\n", number, abs(number)); return 0; }
上傳時間: 2013-12-06
上傳用戶:feifei0302
探討了對高頻信號進行采集和處理的設計難點,提出將LabVIEW的采集數據的特性與MATLAB強大的計算能力相結合的方法,并以此設計了一個系統。然后通過3種不同的方法,分別是將txt文件引入MATLAB、使用MATLAB script、使用Math Script RT,來結合LabVIEW和MATLAB,以采集得到的信號和內部產生信號的均方差及相關系數為標度來分析不同方法的可行性及效率,通過對比結果,最終確定了一種最佳的方案。
上傳時間: 2013-10-21
上傳用戶:jennyzai
探討了對高頻信號進行采集和處理的設計難點,提出將LabVIEW的采集數據的特性與MATLAB強大的計算能力相結合的方法,并以此設計了一個系統。然后通過3種不同的方法,分別是將txt文件引入MATLAB、使用MATLAB script、使用Math Script RT,來結合LabVIEW和MATLAB,以采集得到的信號和內部產生信號的均方差及相關系數為標度來分析不同方法的可行性及效率,通過對比結果,最終確定了一種最佳的方案。
上傳時間: 2015-01-02
上傳用戶:zhaoq123
除了支持一般的小數運算,還支持常見的函數運算。 幾個包中的MathFP是針對不同需要而提供的不同版本,開發J2ME只要使用net.jscience.Math.MathFP就可以。
標簽: 運算
上傳時間: 2014-01-16
上傳用戶:zwei41
用來測試ESL DSP C COMPILER數學函數庫是否正確的VC程序,測試方法,在VC下隨機產生函數輸入值,并把輸入與輸出值記錄到C:Math文件中。可以直接用于你所測試的COMPILER。
上傳時間: 2015-03-22
上傳用戶:徐孺
java的加密樣例代碼, import java.Math.BigInteger import java.security.KeyPair import java.security.cert.* import java.util.*
上傳時間: 2015-06-10
上傳用戶:大融融rr
VC下最牛的算數表達式,將Math.h 所有函數都集成到一起都能用計算出來,包括加減乘除;(、 正玄、 余玄,乘方,log ln,等
標簽: 表達式
上傳時間: 2014-01-09
上傳用戶:lanjisu111
用matalab開發的隨機數生成程序包,用于各種隨機數的生成,可到以下網址更新和瀏覽詳細的說明:http://www.Math.uu.se/research/telecom/software/
上傳時間: 2015-07-11
上傳用戶:壞壞的華仔