Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Resistor Choice for Wilkinson Power Divider

Status
Not open for further replies.

etothe456t

Junior Member level 3
Joined
Feb 29, 2008
Messages
26
Helped
2
Reputation
4
Reaction score
1
Trophy points
1,283
Activity points
1,506
wilkinson divider without resistor

I'm designing a 50ohm Wilkinson Power Divider... I know that I'm trying to find a resistor that will have the lowest parasitic capacitance in parallel w/ the resistance, so what type of capacitor would be best? Metal Film? Max Frequency ~100-300MHz

thanks
 

what is resister wilkinson power divider

300 MHz? With an "M"?

You can use any type of resistor you want at those frequencies.
 

wilkinson divider resistive

so you would say its safe to assume the parasitic capacitance is less then 1pF? Because I think the resistance would roll off if it was greater then that...(see matlab code). I didn't know if there was a specific type of resistor that was better suited to low parasitic capacitance, or if the size was an issue in which case I should go with a smaller SMT resistor... what do you think?


clc;
clear all;
close all;

f = 1:100:300e6;

L = 10e-9;

C1 = 1e-12;
C2 = 5e-12;
C3 = 10e-12;

R = 100;

Z1 = sqrt(((2*pi*f*L).^2 + R.^2) ./ ((1-(2*pi*f).^2*L*C1).^2 + (2*pi*f*R*C1).^2));
Z2 = sqrt(((2*pi*f*L).^2 + R.^2) ./ ((1-(2*pi*f).^2*L*C2).^2 + (2*pi*f*R*C2).^2));
Z3 = sqrt(((2*pi*f*L).^2 + R.^2) ./ ((1-(2*pi*f).^2*L*C3).^2 + (2*pi*f*R*C3).^2));

plot(f,Z1)
hold on;
plot(f,Z2,'-r')
plot(f,Z3,'-g')
 

300 mhz wilkinson power divider

I have used resistive dividers @ 3 GHz with no problem. Of course you get a losses compared to conventional wilkinson divider. But in case you do not mind burning half of the power in the divider resistors and you don't mind that the isolation between output ports is only 6 dBs, then resistive power divider is most simple solution (and cheap) use 50 ohm resistors in "triangle connection" and 18 ohm in "star connection"
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top