微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 微波和射频技术 > 电磁仿真讨论 > matlab and microstrip

matlab and microstrip

时间:03-30 整理:3721RD 点击:
hello
please
i am nex member in this forum
I am a little weak in programming with matlab , i need design structure microstrip with matlab , it request interpret structure in matrix form , and i dont know how do this !
can you give me an exemple ?

Hi
Do you need scattering parameter matrix of microstrip discontinuities , or do want to calculate length and width of microstrip line, for given frequency and impedance. kindly brief so that, it would be easy to help.

thank u vinoth8051
i need scattering parameter matrix of microstrip discontinuities...

its not brief ?or not simple?
thank u

Hi
since you are fresh in matlab programming, suggestion would be
start writing a code which would get the input from user such as frequency, impedance, dielectric constant, height of substrate and then calculate dimensions of microstrip line.
After doing that try reverse i.e, get dimensions and calculate frequency and impedance.
After getting the grip you may increase the complexity.
As far as i know, there is no functions or tools are there in matlab to play much with microstrip discontinuities. Any how you may wish to refer these links to start with
1) https://www.edaboard.com/thread71144.html
2) Obtaining the S-parameters of microstrip line discontinuities
3) http://www.naun.org/journals/circuit...al/cssp-86.pdf
My kind suggestion would be you could better learn behaviour of microstrip discontinuites in electromagnetic simulation softwares like Ansoft HFSS orAgilent ADS.

If you have the rf circuit toolbox you can do something along these lines :
Width1=5e-4;
Width2=3e-4;
Ms1 = rfckt.microstrip('LineLength',1e-2,'Width',Width1,'Height',6e-4,'Thickness',7e-9,'EpsilonR',8.9);
Ms2 = rfckt.microstrip('LineLength',1e-2,'Width',Width2,'Height',6e-4,'Thickness',7e-9,'EpsilonR',8.9);
Ms = rfckt.cascade('Ckts', {Ms1,Ms2});
analyze(Ms, 0.5e9:1e7:5e9);
plot(Ms, 'S11', 'dB');
Sparam=Ms.rfdata.S_parameters;

Sparam has your s-parameters in matrix form

thank you very much
if i like have a representation of my structure (look image)
../imgqa/eboard/EM/EM-qt35t3wujri.jpg
how i do?

Why Matlab? Why not use a "real" EM simulator that is much easier to use?

because i want master matlab...help me please

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top