The Designer's Guide Community
Forum
Welcome, Guest. Please Login or Register. Please follow the Forum guidelines.
Jun 20th, 2024, 11:00pm
Pages: 1
Send Topic Print
VCO Phase noise Discrepancy in pnoise and transient noise (Read 278 times)
Hassan
New Member
*
Offline



Posts: 2

VCO Phase noise Discrepancy in pnoise and transient noise
Apr 26th, 2024, 5:25pm
 
Hello Everyone,
I am using the code below for VCO, and it is pretty standard and straightforward. I want to make sure that the noise transfer function from control voltage to phase noise is correct, as I am going to use it in my PLL. Now, when I put a purely thermal noise using a resistor on the control voltage, the output phase noise slope is -40dB/dec using PSS and Pnoise!!!!  Just to clarify, I do not want to model VCO PN itself but I wanna make sure that the transfer function of noise from its control voltage to output is correct.
I would appreciate any comment if you see it as helping. I am attaching both schematic and simulation results below.


module vco_va(vin, voutp, voutn);
input vin;
output voutp , voutn;
electrical vin, voutp, voutn;
parameter real amp = 0.5;
parameter real center_freq = 20G;
parameter real vco_gain = 1G;
parameter integer steps_per_period = 32;
parameter real DC_val = 1;


  real  phase;
  real inst_freq ;


  analog begin


           
            inst_freq = center_freq + vco_gain * (V(vin)-1.25);
           
           phase = idtmod(inst_freq, 0,1);


     $bound_step (1.0 / (steps_per_period*inst_freq));
           
           V(voutp) <+ amp * sin (2*`M_PI*phase) + DC_val;
           V(voutn) <+ -1*amp * sin (2*`M_PI*phase) + DC_val;
  end
endmodule


Back to top
 

screenshot_001.png
View Profile   IP Logged
smlogan
Community Member
***
Offline



Posts: 52
Boston, MA
Re: VCO Phase noise Discrepancy in pnoise and transient noise
Reply #1 - May 27th, 2024, 6:17pm
 
Dear Hassan,

In case you have not determined the root cause of your observed -40 dB/decade phase noise characteristic, I believe the issue is you are applying frequency noise - not phase noise  - by including the noisy 1K resistor in series with the control voltage input. In essence, the control voltage input modulates frequency. Hence, the slope of a flat noise source applied to the control voltage of the VCO will result in -40 dB/decade phase noise slope - not -20 dB/decade.

Shawn
Back to top
 
 

Shawn
View Profile   IP Logged
Hassan
New Member
*
Offline



Posts: 2

Re: VCO Phase noise Discrepancy in pnoise and transient noise
Reply #2 - Jun 3rd, 2024, 1:16pm
 
Hello Shawn,

Thanks for your answer. I am still looking for an answer to this question. As far as I know, when I have white noise, the integral of it will have a spectrum with a slope of -20dBc/dec since its spectrum is simply multiplied by 1/s^2. I verified this using transient noise simulation, showing a -20dBc/dec slope. Please take a look at image below from "Phase Noise and Jitter in CMOS Ring Oscillators" paper.

Back to top
« Last Edit: Jun 4th, 2024, 12:20pm by Hassan »  

screenshot_002.png
View Profile   IP Logged
Pages: 1
Send Topic Print
Copyright 2002-2024 Designer’s Guide Consulting, Inc. Designer’s Guide® is a registered trademark of Designer’s Guide Consulting, Inc. All rights reserved. Send comments or questions to editor@designers-guide.org. Consider submitting a paper or model.