• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. RF Design
  3. How to UN-SELECT the noise contribution of a modeled instance...

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 63
  • Views 13885
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to UN-SELECT the noise contribution of a modeled instance with Verilog-A (.va) noise source in its model file

RFStuff
RFStuff over 10 years ago

Dear All,

I have some  transistors in my PDK whose model file contains  Verilog-A (.va) noise source .

So when I try to make these Transistor's Noise OFF in Spectre (MMSIM14) option, the noise coming from the Verilog-A (.va) noise source is NOT

getting OFF. In the noise summary it still shows the Noise contribution of these transistors ( basically coming from the Verilog-A noise source).

Is there any way to make the noise of the Verilog-A source OFF ?

Kind Regards,

  • Cancel
Parents
  • Andrew Beckett
    Andrew Beckett over 10 years ago

    Not sure why you think this? It won't disable flicker noise just by setting noiseoff_inst unless the flicker noise is controlled via an isnoisy parameter, or if the coefficients for the flicker_noise function are such that it doesn't output any noise.

    So in my view, you need to implement isnoisy if you want to turn off all noise sources. For example:

    `include "discipline.h"
    `include "constants.h"
    module myres (a,b);

    inout  a,b;
    electrical  a,b;
    branch (a,b) resbr,noisebr;
    parameter real r=1000,m=1,af=2,kf=0;
    parameter isnoisy=1;

    analog begin

      V(resbr) <+ r*I(resbr);
      if (isnoisy) begin
        I(noisebr) <+ white_noise(4*`P_K*$temperature/r);
        I(noisebr) <+ flicker_noise(kf*pow(I(resbr),af),1);
      end

    end

    endmodule

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 10 years ago

    Not sure why you think this? It won't disable flicker noise just by setting noiseoff_inst unless the flicker noise is controlled via an isnoisy parameter, or if the coefficients for the flicker_noise function are such that it doesn't output any noise.

    So in my view, you need to implement isnoisy if you want to turn off all noise sources. For example:

    `include "discipline.h"
    `include "constants.h"
    module myres (a,b);

    inout  a,b;
    electrical  a,b;
    branch (a,b) resbr,noisebr;
    parameter real r=1000,m=1,af=2,kf=0;
    parameter isnoisy=1;

    analog begin

      V(resbr) <+ r*I(resbr);
      if (isnoisy) begin
        I(noisebr) <+ white_noise(4*`P_K*$temperature/r);
        I(noisebr) <+ flicker_noise(kf*pow(I(resbr),af),1);
      end

    end

    endmodule

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information