亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

exec-start

  • 有限差分法

    function [alpha,N,U]=youxianchafen2(r1,r2,up,under,num,deta)      %[alpha,N,U]=youxianchafen2(a,r1,r2,up,under,num,deta)   %該函數用有限差分法求解有兩種介質的正方形區域的二維拉普拉斯方程的數值解   %函數返回迭代因子、迭代次數以及迭代完成后所求區域內網格節點處的值   %a為正方形求解區域的邊長   %r1,r2分別表示兩種介質的電導率   %up,under分別為上下邊界值   %num表示將區域每邊的網格剖分個數   %deta為迭代過程中所允許的相對誤差限      n=num+1; %每邊節點數   U(n,n)=0; %節點處數值矩陣   N=0; %迭代次數初值   alpha=2/(1+sin(pi/num));%超松弛迭代因子   k=r1/r2; %兩介質電導率之比   U(1,1:n)=up; %求解區域上邊界第一類邊界條件   U(n,1:n)=under; %求解區域下邊界第一類邊界條件   U(2:num,1)=0;U(2:num,n)=0;      for i=2:num   U(i,2:num)=up-(up-under)/num*(i-1);%采用線性賦值對上下邊界之間的節點賦迭代初值   end   G=1;   while G>0 %迭代條件:不滿足相對誤差限要求的節點數目G不為零   Un=U; %完成第n次迭代后所有節點處的值   G=0; %每完成一次迭代將不滿足相對誤差限要求的節點數目歸零   for j=1:n   for i=2:num   U1=U(i,j); %第n次迭代時網格節點處的值      if j==1 %第n+1次迭代左邊界第二類邊界條件   U(i,j)=1/4*(2*U(i,j+1)+U(i-1,j)+U(i+1,j));   end         if (j>1)&&(j                 U2=1/4*(U(i,j+1)+ U(i-1,j)+ U(i,j-1)+ U(i+1,j));    U(i,j)=U1+alpha*(U2-U1); %引入超松弛迭代因子后的網格節點處的值      end      if i==n+1-j %第n+1次迭代兩介質分界面(與網格對角線重合)第二類邊界條件   U(i,j)=1/4*(2/(1+k)*(U(i,j+1)+U(i+1,j))+2*k/(1+k)*(U(i-1,j)+U(i,j-1)));      end      if j==n %第n+1次迭代右邊界第二類邊界條件   U(i,n)=1/4*(2*U(i,j-1)+U(i-1,j)+U(i+1,j));   end   end   end   N=N+1 %顯示迭代次數   Un1=U; %完成第n+1次迭代后所有節點處的值   err=abs((Un1-Un)./Un1);%第n+1次迭代與第n次迭代所有節點值的相對誤差   err(1,1:n)=0; %上邊界節點相對誤差置零   err(n,1:n)=0; %下邊界節點相對誤差置零    G=sum(sum(err>deta))%顯示每次迭代后不滿足相對誤差限要求的節點數目G   end

    標簽: 有限差分

    上傳時間: 2018-07-13

    上傳用戶:Kemin

  • MATLAB中FFT變換

    已知信號x(t)=0.15sin(2*pi*f1*t)+sin(2*pi*f2*t)-0.1sin(2*pi*f3*t),其中,f1=1Hz,f2=2Hz,f3=3Hz。采樣頻率為32Hz。(1)做32點FFT,求出其幅度譜;(2)做64點FFT,求出其幅度譜。

    標簽: MATLAB FFT變換

    上傳時間: 2019-01-04

    上傳用戶:知復何言

  • SP1220F 40V/8A 同步整流降壓IC

        SP1105是一款電流模式PWM/PSM控制的DC/DC升壓控制器。它采用同步整流技術,無需外置肖特基二極管,開關電流達5A,為單芯鋰電池升壓到5V輸出提供一個簡便、高效的電源解決方案。其內置補償電路及保護電路,以減少外圍組件。高達500KHz的開關頻率可使電感和輸出電容小型化,從而節約PCB空間。SP1105內置了過溫保護、輸出短路保護及soft start電路,保證了產品供電系統的穩定性。

    標簽: 1220F 1220 SP 40 8A 同步整流 降壓

    上傳時間: 2019-03-25

    上傳用戶:lryang

  • ansoft maxwell資料

    關于maxwell如何入門的資料,有助于小白入門進行基礎的學習

    標簽: maxwell ansoft

    上傳時間: 2019-04-24

    上傳用戶:19802115939

  • 無影無蹤-痕跡擦除軟件

    一款不錯的文件刪除工具,支持彼得加特曼方法和美國國防部DoD 5220.22-M方法

    標簽: 軟件

    上傳時間: 2019-04-30

    上傳用戶:feekee

  • 仙劍vs版

    Microsoft Visual Studio Solution File, Format Version 9.00 # Visual Studio 2005

    標簽: 游戲

    上傳時間: 2019-07-19

    上傳用戶:cmpcmp

  • 去快捷方式小箭頭

    cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe YKDAD433B09C754AACB27F085944B5C6CD

    標簽: 技術

    上傳時間: 2020-03-14

    上傳用戶:378449797

  • Nanotechnology+Applications

    This is believed to be the first book that takes a view of nanotechnology from a telecommunications and networking perspective. Nanotechnology refers to the manip- ulation of materials at the atomic or molecular level. Nanotechnology is getting a lot of attention of late not only in academic settings and in laboratories around the world, but also in government and venture capitalists’ initiatives. There now is a major drive to commercialize the technology by all sorts of firms, ranging from start- ups to Fortune 100 companies.

    標簽: Nanotechnology Applications

    上傳時間: 2020-05-31

    上傳用戶:shancjb

  • Optical+Communication+Theory+and+Techniques

    Since the advent of optical communications, a great technological effort has been devoted to the exploitation of the huge bandwidth of optical fibers. Start- ing from a few Mb/s single channel systems, a fast and constant technological development has led to the actual 10 Gb/s per channel dense wavelength di- vision multiplexing (DWDM) systems, with dozens of channels on a single fiber. Transmitters and receivers are now ready for 40 Gb/s, whereas hundreds of channels can be simultaneously amplified by optical amplifiers.

    標簽: Communication Techniques Optical Theory and

    上傳時間: 2020-05-31

    上傳用戶:shancjb

  • ESD Design for Analog Circuits

    Dear Reader, this book project brings to you a unique study tool for ESD protection solutions used in analog-integrated circuit (IC) design. Quick-start learning is combined with in-depth understanding for the whole spectrum of cross- disciplinary knowledge required to excel in the ESD field. The chapters cover technical material from elementary semiconductor structure and device levels up to complex analog circuit design examples and case studies.

    標簽: Circuits Design Analog ESD for

    上傳時間: 2020-06-05

    上傳用戶:shancjb

主站蜘蛛池模板: 汉源县| 南京市| 邳州市| 易门县| 宁远县| 大石桥市| 太湖县| 罗田县| 开化县| 德令哈市| 济源市| 南宫市| 禹州市| 大理市| 襄垣县| 宁城县| 博罗县| 绥德县| 邢台县| 新郑市| 应城市| 西充县| 闻喜县| 垣曲县| 永平县| 开江县| 金门县| 尼木县| 九寨沟县| 洪湖市| 泰来县| 罗甸县| 万荣县| 贞丰县| 静海县| 东乡| 保德县| 罗城| 嘉兴市| 兰西县| 溧水县|