谐振耦合式无线电力传输系统matlab建模

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Modeling Resonant Coupled Wireless Power Transfer System

谐振耦合式无线电力传输系统建模

This example shows how to create and analyze resonant coupling type wireless power transfer(WPT) system with emphasis on concepts such as resonant mode, coupling effect, and magnetic field pattern. The analysis is based on a 2-element system of spiral resonators.

这个例子显示了如何创建和分析谐振耦合式无线电力传输系统(WPT)的概念如谐振模式,强调耦合效应和磁场模式。此分析是基于两螺旋谐振器系统。

This example requires the following product:

这个例子需要以下产品:

Partial Differential Equation Toolbox™

Design Frequency and System Parameters设计频率和系统参数

Choose the design frequency to be 30MHz. This is a popular frequency for compact WPT system design. Also specify the frequency for broadband analysis, and the points in space to plot near fields.

选择的设计频率为30MHz。这是便携式WPT系统设计的一个流行的频率。还指定了宽带分析的频率,和在附近的空间中的点。

fc=30e6;

fcmin = 28e6;

fcmax = 31e6;

fband1 = 27e6:1e6:fcmin;

fband2 = fcmin:0.25e6:fcmax;

fband3 = fcmax:1e6:32e6;

freq = unique([fband1 fband2 fband3]);

pt=linspace(-0.3,0.3,61);

[X,Y,Z]=meshgrid(pt,0,pt);

field_p=[X(:)';Y(:)';Z(:)'];

The Spiral Resonator螺旋谐振器

The spiral is a very popular geometry in resonant coupling type wireless power transfer system for its compact size and highly confined magnetic field. We will use such a spiral as the fundamental element in this example.

螺旋是一种非常流行的几何形状在谐振耦合型无线功率传输系统,其紧凑的尺寸和高度密闭的磁场。我们会使用这样一个螺旋的基本元素在这个例子中。

Create Spiral Geometry The spiral is defined by its inner and outer radius, and number of turns. Express the geometry by its boundary points, then import its boundary points into pdetool. The mesh is generated in pdetool and exported. The mesh is described by points and triangles.

创建螺旋几何形状的螺旋是由它的内部和外部半径定义,和数量的圈数。由边界点的几何表达,那么进口边界点为有效。网格产生有效和出口。网格是由点和三角形描述的。

Rin=0.05;

Rout=0.15;

N=6.25;

[p,t]=createSpiral(Rin,Rout,N);

Create custom antenna Use customAntennaMesh to import the mesh. The feed is created at the inner circle of the spiral mesh. This structure is now ready for analysis.

创建自定义的天线,使用customAntennaMesh 输入网格。反馈是在螺旋网格的内圆上创建的。这种结构现在已经准备好进行分析。

spiralobj=customAntennaMesh(p,t);

spiralobj.Tilt=90;

spiralobj.TiltAxis='Y';

createFeed(spiralobj,[0.0525 0.0025],[0.0675 0.0025]);

Resonance Frequency and Mode谐振频率和模式

It is important to find the resonant frequency of the designed spiral geometry. A good way to find the resonant frequency is to study the impedance of the spiral resonantor. Since the spiral is a magnetic resonator, a lorentz shaped reactance is expected and observed in the calculated impedance result.

重要的是要找到所设计的螺旋几何的谐振频率。找到谐振频率的好方法是研究螺旋谐振器的阻抗。由于螺旋是一个磁电磁谐振腔,洛伦兹形电抗预计和计算的阻抗结果观察。

figure;

impedance(spiralobj,freq);

相关文档
最新文档