gzdeozc
Junior Member level 1
- Joined
- May 15, 2014
- Messages
- 16
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 151
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hi,
Can you please tell me how can I calculate differential active loop filter components shown below?
View attachment 111489
Thank you
Re: Differential active loop filter
Quote Originally Posted by gzdeozc View Post
Hi,
Can you please tell me how can I calculate differential active loop filter components shown below?
Click image for larger version. Name: loop.jpg Views: 8 Size: 21.9 KB ID: 111489
Thank you
Let R1=Z1 and R2+1/(sC2) =Z2
Vo = φn*(Z2/(Z1+Z2)*(1+Z2/Z1) - φr(Z2/Z1)
I'll ... simplify the above.
Vo = (φn - φr)*Z2/Z1=(R2+1/(sC2))/R1
Vo = (φn - φr)*(sR2C2+1)/sR1C2 where s=j 2pi*f
Does that help?
Re: Differential active loop filter
Looking at the lower half of the schematic...
The series resistors and capacitor form a high-frequency-diverter on the 'øn' signal. However it becomes interpreted as a low-pass filter by the op amp circuit. That is, according to the (simulated) output.
Values must be chosen to create the desired rolloff curve.
That only covers one aspect of the circuit.
I guess I'm cheating by using a simulator. There's a lot of variables in this circuit. A lot of uncertainties. Such as the input signals, their relationship, their polarity, etc.
Diff active loop filter? Any detail example? Such as a detail synthesis, VCO, PLL etc.
I had done many single input PLL using ADISIMPLL, but never used diff PLL.
BradTheRad, I wanted to use a simulation tool like ADISimPLL but it doesn't have a topology like that. If you know some kind of simulation tool to put this, I would be very glad. This would be the easiest method I prefer.
SunnySkyGuy thank you for this equation, I have seen it before. But from this, how can I find R1,C,R2 values? I need an equation like passive filter components do with Icp, Kv, etc.
I have seen an equation like
View attachment 111539
where fn=loop bandwidth but my circuit doesn't respond according to this equation when I change the capacitor and resistor.
tony_lth, the synthesizer is HMC698lp5. VCO has single input and Kv=12MHz/V. Using an opamp for differential active loop filter seen on the picture that I have posted.
Some old fashion PLL circuits MC145152 have differential CP outputs.One output clocks up and the other clocks down depending on the phase leading or lagging...Diff active loop filter? Any detail example? Such as a detail synthesis, VCO, PLL etc.
I had done many single input PLL using ADISIMPLL, but never used diff PLL.
Code dot - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 c1=270e-12;%270pF c2=1000e-12;%1000pF zr1=200;%R1=200R zr2=909;%R2=909R Kpfd=0.32; %PFD gain, V/Rad, HMC698LP5 Kvco=150*1e6*2*pi; %VCO gain in rad/(V*S), HMC529LP5 n_multiplier=2; %RF/2 T1=(zr1+zr2)*c2; %time constant 1st bw_pll_loop=sqrt(Kpfd*Kvco/T1/n_multiplier)/2/pi; %loop bandwidth T2=zr2*c2; %time constant 2nd Zuni=1/(2*2*pi*bw_pll_loop*T1)+1/(2*2*pi*bw_pll_loop*T2); Zuni2=zr2/2*sqrt(c2*Kpfd*Kvco/n_multiplier/zr1);