EM basics- the Maxwell Equations
All the two important problems that the EM theory trys to describe and explain are propogation and radiation of EM wave, on the basic of Maxwell Equations. So we have to talk about the Maxwell Equations firstly ,the greatest achievement in my opinion, , then the propogation problem and then, the radiation problem.
- 1 the Maxwell Equations
In most conditions,except in static electronic field or static magnetic field, the two are never exits indepently. The Maxwell Equations are explicitly summarized the relationship between E and H, and between the source of them , a time-varied electric current or a time-varied charge.
The first two equations are Gauss's law in E field and H field. That is, Equation [1] is true at any point in space. That is, if there exists electric charge somewhere, then the divergence of D ( electronic displacement vector) at that point is nonzero, otherwise it is equal to zero.Gauss' Law states that electric charge acts as sources or sinks for Electric Fields.You see that both of these equations specify the divergence of the field in question. For the top equation, we know that Gauss' Law for Electric Fields states that the divergence of the Electric Flux Density D is equal to the volume electric charge density. But the second equation, Gauss' Magnetism law states that the divergence of the Magnetic Flux Density (B) is zero.
Why? Why isn't the divergence of B equal to the magnetic charge density?
Well - it is. But it just so happens that no one has ever found magnetic charge - not in a laboratory or on the street or on the subway. And therefore, until this hypothetical magnetic charge is found, we set the right side of Gauss' Law for Magnetic Fields to zero.
Faraday's law shows that a changing magnetic field within a loop gives rise to an induced current, which is due to a force or voltage within that circuit. We can then say the following about Farday's Law:
- Electric Current gives rise to magnetic fields. Magnetic Fields around a circuit gives rise to electric current.
- A Magnetic Field Changing in Time gives rise to an E-field circulating around it.
- A circulating E-field in time gives rise to a Magnetic Field Changing in time.
- A flowing electric current (J) gives rise to a Magnetic Field that circles the current
- A time-changing Electric Flux Density (D) gives rise to a Magnetic Field that circles the D field
Ampere's Law with the contribution of Maxwell nailed down the basis for Electromagnetics as we currently understand it. And so we know that a time varyingD gives rise to an H field, but from Farday's Law we know that a varying H field gives rise to an E field.... and so on and so forth and the electromagnetic waves propagate.
502327976@qq.com
EM basics- the Maxwell Equations的更多相关文章
- cadcam
Email:kefu007@vip.qq.com 13D TIMON 2007 英語版2007 23DVIA Composer V6R2013 中文版2013 3ABQUS V6.11 6.11 4A ...
- Maxwell’s Equations
A=cos(pi*x-pi/2)i+sin(pi*x)j 正电荷形成的电场 负电荷形成的电场 正负电荷形成的电场 无限长导线上均匀分布的正电荷 电场 均匀分布电荷的平面 电场 电荷均匀分布的球面形 ...
- Radio Basics for RFID
Radio Basics for RFID The following is excerpted from Chapter 3: Radio Basics for UHF RFID from the ...
- 麦克斯韦方程组 (Maxwell's equation)的简单解释
[转载请注明出处]http://www.cnblogs.com/mashiqi 2016/12/12 以下会用高中的物理知识和大学微积分的数学知识对麦克斯韦方程组进行一个简单的解释.希望大家都能看得懂 ...
- Weka EM 协方差
Weka EM covariance description 1: Dear All, I am trying to find out what is the real meaning of the ...
- Markdown 学习笔记: Basics
Markdown 学习笔记: Basics 原文:Basics. 了解Markdown格式化句法的要点 本页对如何使用Markdown提供了一个简单的概述.在"句法"页中对Mark ...
- How-to go parallel in R – basics + tips(转)
Today is a good day to start parallelizing your code. I’ve been using the parallel package since its ...
- Markdown: Basics (快速入门)[转]
Markdown: Basics (快速入门) / (点击查看完整语法说明) Getting the Gist of Markdown's Formatting Syntax [转自:http://w ...
- ML| EM
What's xxx The EM algorithm is used to find the maximum likelihood parameters of a statistical model ...
随机推荐
- 虚拟机安装CentOS6.3两个问题
虚拟机下CentOS安装教程:http://blog.csdn.net/21aspnet/article/details/6961518 由于前一阵子重新装win7,win7下的虚拟机CentOS也就 ...
- http 响应码
一.HTTP码应码响应码由三位十进制数字组成,它们出现在由HTTP服务器发送的响应的第一行. 响应码分五种类型,由它们的第一位数字表示:1.1xx:信息,请求收到,继续处理2.2xx:成功,行为被成功 ...
- Javascript定时跳转
因为做项目,用到跳转回上级页面,这里设置定时3秒跳转到目标页面 <script> setInterval("myInterval()",3000);//1000为1秒钟 ...
- R语言-神经网络包RSNNS
code{white-space: pre;} pre:not([class]) { background-color: white; }if (window.hljs && docu ...
- JavaScript的作用域和闭包
首发于:https://mingjiezhang.github.io/ 闭包和作用域有着千丝万缕的联系. js的作用域 具体的作用域我就不展开叙述了.其中很重要的两点就是:js的作用域链机制和函数词法 ...
- SharePoint 2013开发环境准备一些小事项
开发慢慢向着SharePoint 2013迁移,环境也开始慢慢准备起来了.由于FAST Search的集成,和缓存服务的加入,SharePoint 2013对开发机器要求的不是一般的高.这里介绍一下如 ...
- SQL学习笔记:选取第N条记录
Northwind数据库,选取价格第二高的产品. 有两种方法,一个是用Row_Number()函数: SELECT productname FROM ( productname, Row_Number ...
- Android——微信界面(简易版)
前面我们简单的介绍了一下android的五大布局,那么现在我们来实践一下,写一个简单的微信界面 首先,我们新建一个weixin.xml的linnerlayout布局 我们日常使用的微信,从简单的方面来 ...
- View的生命周期
当一个进入一个新viewController的时候,viewController的view的生命周期一般是这样的: 1.先判断内存是否有这个View a.没有的话:生命周期为loadView-> ...
- IOS 杂笔-2(协议)
1.协议的定义 @protocol 协议名称 <NSObject> //方法声明列表 @end; 2.如何遵守协议 (1)类遵守协议 @protocol 类名:父类名 <协议名称1, ...