广工电磁学实验报告.docx_第1页
广工电磁学实验报告.docx_第2页
广工电磁学实验报告.docx_第3页
广工电磁学实验报告.docx_第4页
广工电磁学实验报告.docx_第5页
已阅读5页,还剩1页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

广东工业大学考试试卷 ( A )课程名称: Experimental reports for “Theory of electromagnetic field and microwave technology” 试卷满分 100 分考试时间: 2012 年 月 日 (第 周 星期 )题 号一二三四五六七八九十总分评卷得分评卷签名复核得分复核签名Please answer the questions in English.一An infinite long slot, with rectangle cross-section, consists of three grounded conductive plate and one coverplate with 100 voltage. Please give the potential distributions inside slot (following the below instructions ). (必修题) 1) please demonstrate the ideas and procedures on how to deduce this problem;2) please list the detailed program codes.3) Please draw figures about potential distributions.Ans:1) please demonstrate the ideas and procedures on how to deduce this problem;1.1 Finite difference method (FDM)Finite difference method (Finite Difference Method) is based on the principle of differential A numerical method , which the electromagnetic field within the problem into discrete continuous system problems , which uses the numerical solution of discrete points to approximate a continuous real solution domain Therefore , it is an approximate calculation.Using the finite difference method 4,5 for solving electromagnetic field problems , the first field will be split into many seeking grid and node, and instead of using derivative difference quotient , then , will be in the Field of partial differential equations 3 into the potential of each node is unknown or magnetic potential difference equations, by solving the equations can be obtained upon request each discrete node potential or magnetic potential of the numerical solution .D field boundary conditions : As described in the electromagnetic field PDE function of the spatial coordinates , so that only a specific set of boundary conditions to obtain a unique solution . Most of electromagnetic problems involving three types of boundary conditions : Diliheli boundary condition , Newman -type boundary conditions and mixed boundary conditions . Diliheli type boundary conditions and Neumann boundary condition commonly referred to as the first boundary condition and the second boundary condition , mixed boundary conditions for the first boundary condition and a second linear combination of boundary conditions .1.1.1 Laplace equation finite difference formTwo-dimensional Laplace equation using finite difference method can approximate calculation, first solving the region is divided into grids, and then solving the continuous field distribution within the grid nodes with discrete numerical solution instead. Finer the grid points, the higher the precision. Shown in Figure 1, the field in two dimensions, the area is divided into a number square grid, each grid side length of h, the intersection of two sets of parallel lines is called grid nodes, the potential of grid nodes located is, its potential and down about four nodes, respectively,. In the case of sufficiently small h, can be the starting point for the Taylor series expansion:Sum the above four formula we can get+=+Since the field at any point satisfy Poisson equation:,the F(x,y) in the formula is the field sourceFor non-farm sources, F(x,y)= 0, then the two-dimensional Laplace equation finite difference form is: 1.2 Finite Element Method (FEM)FEM (Finite Element Method) is a variational principle and a split interpolation based numerical method . It from the partial differential equation boundary value problem to find an energy functional 4 , making it the first boundary conditions are met under the premise of extreme value , converted to an equivalent and Partial Differential Equations conditions variational problem , while the cross-sectional area will solve the electromagnetic field into a finite number of smaller units , each unit in the interior , it is assumed that the solution of any element node function and the function value , and are in accordance with the changes in the coordinates some kind of law of change, so you can construct a suitable unit interpolation function, substituted into the functional integral formula, the multiple functions into discrete functional , and each independent variable partial derivative , whichever is the extreme , you can get a set of multiple linear or nonlinear algebraic equations , after the first boundary condition amendments, solving this equation , we obtain the desired approximate solution. Finite element method 1,4 not only to adapt to the complex geometry and boundary conditions, but can be used successfully in a variety of media and non-uniform continuum problem . For difficult to find the energy functional boundary value problems of partial differential equations , but also by the weighted residual method to derive the corresponding algebraic equations, using the finite element method and thus a wide range .1.3Finite Difference Method in MATLABBy simple iterative method, using MATLAB programming method to achieve numerical calculation. Simple iterative method is to use a previous iteration the potential of grid points as the initial value of the next iteration. Its iterative formula is:2)please list the detailed program codes.clear;clc%设置网格节点的数目hx=input(hx=);hy=input(hy=);v=ones(hy,hx); %生成节点二维数组%上下两行的边界条件值v(hy,:)=ones(1,hx)*100;v(1,:)=zeros(1,hx);%左右两列的边界条件值v(:,1)=0;v(:,hx)=0;v1=v;maxt=1;t=0; %初始化数据while(maxt1e-6); maxt=0; for i=2:hy-1; for j=2:hx-1 v1(i,j)=(v(i,j+1)+v(i+1,j)+v(i-1,j)+v(i,j-1)/4;%拉普拉斯方程差分式 t=abs(v1(i,j)-v(i,j); if(tmaxt) maxt=t; end,end,end v=v1;end;subplot(1,2,1);mesh(v1); %绘制三维曲面图axis(0,17,0,11,0,100) %设置坐标轴的范围title(fontsize14fontname黑体简单迭代法三维曲面图)subplot(1,2,2),co

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论