SlideShare a Scribd company logo
1 of 1
Download to read offline
function Zo=impedancia(opcion)
%---B---Ancho del dielectico en
metros
%---T---Ancho del conductor en
metros
%---w---ancho del trazo de la
microcinta
%---U---Relacion entre w/B
%---Er--Permitibidad Relativa
%---Y---
%---Au--
%---Bu--
syms w
if(opcion==1)
B=0.787*10^(-3);
else
B=1.575*10^(-3);
end
T=35*10^(-6)/B;
U=w/B;
Er=2.2;
eta=376.73;
% Correcion de U en un medio
homegeneo
U1=U+T*log(1+((4*exp(1))/T)*(TanH((
6.517*U)^(1/2)))^2);
Ur=U+(U1-U)*(1+(CosH((Er-
1)^(1/2)))^(-1))/2;
% Au y Ber
Au=1+(log((Ur^4+(Ur^2/2704))/(Ur^4+
0.432)))/49+(log((Ur/18.1)^3+1))/18
.7;
Ber=0.564*((Er-
0.9)/(Er+3))^(0.053);
% Se usa Ur y Er para obtener a Y
Y=(Er+1)/2+((Er-1)/2)*(1+10/Ur)^(-
Au*Ber);
Zoi=eta*log((6+(2*pi-6)*exp(-
(30.666/Ur)^0.7528))/Ur+(4/(Ur^2)+1
)^(1/2))/(2*pi);
%IMpedancia Caracteristica
ZO=Zoi/(Y^(0.5));
if(opcion==1)
W=0.002:10^(-6):0.004;
else
W=0.004:10^(-6):0.008;
end
Zo=subs(ZO,w,W);
%Puntos donde la resistencia son
50Ohms y 35.35 Omhs
for(n=1:length(Zo))
if(n~=length(Zo))
if(Zo(n)>Zo(n+1)&&(Zo(n)<50.05&&Zo(
n)>=50))
Zo1(n)=Zo(n);
end
if(Zo(n)>Zo(n+1)&&(Zo(n)<35.36&&Zo(
n)>=35.35))
Zo2(n)=Zo(n);
end
else
Zo1(n)=0;
Zo2(n)=0;
end
end
xlabel('Ancho [m]','FontSize',16);
ylabel('Impedancia
Caracterisitica[Omhs]','FontSize',1
6);
hold on
plot(W,Zo);
plot(W,Zo1,'r*');
plot(W,Zo2,'r*');
hold off
ylim([32 52])
end

More Related Content

Viewers also liked

Share for iPhone UI Wireframes - User Story Ten
Share for iPhone UI Wireframes - User Story TenShare for iPhone UI Wireframes - User Story Ten
Share for iPhone UI Wireframes - User Story TenAlfrescoUE
 
Share for iPhone UI Wireframes - User Story Five
Share for iPhone UI Wireframes - User Story FiveShare for iPhone UI Wireframes - User Story Five
Share for iPhone UI Wireframes - User Story FiveAlfrescoUE
 
Filosofia En El Aula
Filosofia En El AulaFilosofia En El Aula
Filosofia En El Aulaequipobrey
 
iPhone Paper Prototype - User Story Seven
iPhone Paper Prototype - User Story SeveniPhone Paper Prototype - User Story Seven
iPhone Paper Prototype - User Story SevenAlfrescoUE
 
Web 2.0 og ABM-sektoren
Web 2.0 og ABM-sektorenWeb 2.0 og ABM-sektoren
Web 2.0 og ABM-sektorenVestforsk.no
 
Twitter - A beginner's guide
Twitter - A beginner's guideTwitter - A beginner's guide
Twitter - A beginner's guideChris Adams
 
Druzbeni Mediji Blogres08
Druzbeni Mediji Blogres08Druzbeni Mediji Blogres08
Druzbeni Mediji Blogres08Jure Cuhalev
 

Viewers also liked (9)

Share for iPhone UI Wireframes - User Story Ten
Share for iPhone UI Wireframes - User Story TenShare for iPhone UI Wireframes - User Story Ten
Share for iPhone UI Wireframes - User Story Ten
 
La Bella Italia
La Bella ItaliaLa Bella Italia
La Bella Italia
 
Share for iPhone UI Wireframes - User Story Five
Share for iPhone UI Wireframes - User Story FiveShare for iPhone UI Wireframes - User Story Five
Share for iPhone UI Wireframes - User Story Five
 
Filosofia En El Aula
Filosofia En El AulaFilosofia En El Aula
Filosofia En El Aula
 
La Lavande
La LavandeLa Lavande
La Lavande
 
iPhone Paper Prototype - User Story Seven
iPhone Paper Prototype - User Story SeveniPhone Paper Prototype - User Story Seven
iPhone Paper Prototype - User Story Seven
 
Web 2.0 og ABM-sektoren
Web 2.0 og ABM-sektorenWeb 2.0 og ABM-sektoren
Web 2.0 og ABM-sektoren
 
Twitter - A beginner's guide
Twitter - A beginner's guideTwitter - A beginner's guide
Twitter - A beginner's guide
 
Druzbeni Mediji Blogres08
Druzbeni Mediji Blogres08Druzbeni Mediji Blogres08
Druzbeni Mediji Blogres08
 

More from Miguel Angel Reyes (6)

Redes con microondas
Redes con microondasRedes con microondas
Redes con microondas
 
Practica9
Practica9Practica9
Practica9
 
Practica41
Practica41Practica41
Practica41
 
04 anisotropia y_textura
04 anisotropia y_textura04 anisotropia y_textura
04 anisotropia y_textura
 
0000000385,
0000000385,0000000385,
0000000385,
 
0000000385
00000003850000000385
0000000385
 

Function zo

  • 1. function Zo=impedancia(opcion) %---B---Ancho del dielectico en metros %---T---Ancho del conductor en metros %---w---ancho del trazo de la microcinta %---U---Relacion entre w/B %---Er--Permitibidad Relativa %---Y--- %---Au-- %---Bu-- syms w if(opcion==1) B=0.787*10^(-3); else B=1.575*10^(-3); end T=35*10^(-6)/B; U=w/B; Er=2.2; eta=376.73; % Correcion de U en un medio homegeneo U1=U+T*log(1+((4*exp(1))/T)*(TanH(( 6.517*U)^(1/2)))^2); Ur=U+(U1-U)*(1+(CosH((Er- 1)^(1/2)))^(-1))/2; % Au y Ber Au=1+(log((Ur^4+(Ur^2/2704))/(Ur^4+ 0.432)))/49+(log((Ur/18.1)^3+1))/18 .7; Ber=0.564*((Er- 0.9)/(Er+3))^(0.053); % Se usa Ur y Er para obtener a Y Y=(Er+1)/2+((Er-1)/2)*(1+10/Ur)^(- Au*Ber); Zoi=eta*log((6+(2*pi-6)*exp(- (30.666/Ur)^0.7528))/Ur+(4/(Ur^2)+1 )^(1/2))/(2*pi); %IMpedancia Caracteristica ZO=Zoi/(Y^(0.5)); if(opcion==1) W=0.002:10^(-6):0.004; else W=0.004:10^(-6):0.008; end Zo=subs(ZO,w,W); %Puntos donde la resistencia son 50Ohms y 35.35 Omhs for(n=1:length(Zo)) if(n~=length(Zo)) if(Zo(n)>Zo(n+1)&&(Zo(n)<50.05&&Zo( n)>=50)) Zo1(n)=Zo(n); end if(Zo(n)>Zo(n+1)&&(Zo(n)<35.36&&Zo( n)>=35.35)) Zo2(n)=Zo(n); end else Zo1(n)=0; Zo2(n)=0; end end xlabel('Ancho [m]','FontSize',16); ylabel('Impedancia Caracterisitica[Omhs]','FontSize',1 6); hold on plot(W,Zo); plot(W,Zo1,'r*'); plot(W,Zo2,'r*'); hold off ylim([32 52]) end