freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

[信息與通信]matlab電路仿真實(shí)驗(yàn)報(bào)告-資料下載頁(yè)

2025-03-23 00:44本頁(yè)面
  

【正文】 參數(shù),令w=2L=。C=。Uc0=1。IL0=0。R=1。% 定義時(shí)間軸t=0::10。% 輸入已知參數(shù)alpha=R/2/L。wn=sqrt(1/(L*C))。p1=alpha+sqrt(alpha^2wn^2)。p2=alphasqrt(alpha^2wn^2)。% 用公式求解Uc1=(p2*Uc0IL0/C)/(p2p1)*exp(p1*t)。Uc2=(p1*Uc0IL0/C)/(p2p1)*exp(p2*t)。IL1=p1*C*(p2*Uc0IL0/C)/(p2p1)*exp(p1*t)。IL2=p2*C*(p1*Uc0IL0/C)/(p2p1)*exp(p2*t)。Uc=Uc1+Uc2。IL=IL1+IL2。subplot(2,1,1),plot(t,Uc),gridsubplot(2,1,2),plot(t,IL),grid結(jié)果如下:圖形R=2Ω時(shí)R=3Ω時(shí)R=5Ω時(shí)R=8Ω時(shí)R=10Ω時(shí)實(shí)驗(yàn)六 頻率響應(yīng)一 實(shí)驗(yàn)?zāi)康? 學(xué)習(xí)有關(guān)頻率響應(yīng)的相關(guān)概念2 學(xué)習(xí)matlab的頻率計(jì)算二 實(shí)驗(yàn)示例 1 一階低通電路的頻率響應(yīng)如圖61所示(書(shū)本37頁(yè)),若以217。c為響應(yīng),求頻率響應(yīng)函數(shù),并畫(huà)出其幅頻響應(yīng)和相頻響應(yīng)。 使用matlab命令為:clear,format pactww=0::4。H=1./(1+j*ww)。figure(1)subplot(2,1,1),plot(ww,abs(H)),grid,xlabel(39。ww39。),ylabel(39。angle(H)39。)。subplot(2,1,2),plot(ww,angle(H)),grid,xlabel(39。ww39。),ylabel(39。angle(H)39。)。figure(2)subplot(2,1,1),semilogx(ww,20*log10(abs(H))),grid,xlabel(39。ww39。),ylabel(39。??161。192。?39。)。subplot(2,1,2),semilogx(ww,angle(H)),grid,xlabel(39。ww39。)。ylabel(39。angle(H)39。)結(jié)果為A 線(xiàn)性頻率特性B 對(duì)數(shù)頻率特性2 頻率響應(yīng):二階低通電路由書(shū)本上二階低通的典型函數(shù)以及后面的推論,使用matlab命令為:clear,format pactfor Q=[1/3,1/2,1/sqrt(2),1,2,5]ww=logspace(1,1,50)。H=1./(1+j*ww/Q+(j*ww).^2)。figure(1)subplot(2,1,1),plot(ww,abs(H)),hold onsubplot(2,1,2),plot(ww,angle(H)),hold onfigure(2)subplot(2,1,1),semilogx(ww,20*log10(abs(H))),hold onsubplot(2,1,2),semilogx(ww,angle(H)),hold onendfigure(1),subplot(2,1,1),grid,xlable(39。w39。),ylable(39。abs(H)39。)subplot(2,1,2),grid,xlable(39。w39。),ylable(39。angle(H))39。)figure(2),subplot(2,1,1),grid,xlable(39。w39。),ylable(39。abs(H)39。)subplot(2,1,2),grid,xlable(39。w39。),ylable(39。angle(H))39。)結(jié)果為:3 頻率響應(yīng):二階帶通電路圖65(書(shū)本40頁(yè))是互耦的串聯(lián)和并聯(lián)的諧振電路,根據(jù)其頻率響應(yīng)函數(shù)和推論,使用matlab命令為:clear,format pactH0=1。wn=1。for Q=[5,10,20,50,100] w=logspace(1,1,50)。 H=H0./(1+j*Q*(w./wnwn./w))。 figure(1) subplot(2,1,1),plot(w,abs(H)),grid,hold on subplot(2,1,2),plot(w,angle(H)),grid,hold on figure(2) subplot(2,1,1),semilogx(w,20*log10(abs(H))),grid,hold on subplot(2,1,2),semilogx(w,angle(H)),grid,hold onend結(jié)果為:A 線(xiàn)性頻率特性B 對(duì)數(shù)頻率特性4 復(fù)雜諧振電路的計(jì)算圖67(書(shū)本41頁(yè))為一雙電感并聯(lián)電路,已知Rs=,R1=2Ω,R2=3Ω,L1=, L2=,C=1000pF。求回路的通頻帶以及回路阻抗大于50kΩ的頻率范圍。使用matlab命令為:clear,format pactR1=2。R2=3。L1=。L2=。C=1000e12。Rs=28200。L=L1+L2。R=R1+R2。Rse=Rs*(L/L1)^2f0=1/(2*pi*sqrt(C*L))Q0=sqrt(L/C)/R,R0=L/C/R。Re=R0*Rse/(R0+Rse)Q=Q0*Re/R0,B=f0/Q,s=log10(f0)。f=logspace(,s+.1,501)。w=2*pi*f。z1e=R1+j*w*L。z2e=R2+1./(j*w*C)。ze=1./(1./z1e+1./z2e+1./Rse)。subplot(2,1,1),loglog(w,abs(ze)),gridaxis([min(w),max(w),*min(abs(ze)),*max(abs(ze))])subplot(2,1,2),semilogx(w,angle(ze)*180/pi)axis([min(w),max(w),100,100]),gridfh=w(find(abs(1./(1./z1e+1./z2e))50000))/2/pi。fhmin=min(fh),fhmax=max(fh),結(jié)果為:諧振頻率處的幅頻和相頻特性Rse = +004f0 = +005Q0 = 200Re = +004Q = B = +003fhmin = +005fhmax = +00553
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1