• 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 13882
  • 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
  • Andrew Beckett
    Andrew Beckett over 10 years ago

    I answered this in a thread of one of your previous posts:

    http://community.cadence.com/cadence_technology_forums/f/33/p/32451/1340993#1340993

    More details can be found in solution 20186436.

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • RFStuff
    RFStuff over 10 years ago

    Dear Andrew,

    Thanks for the reply.

    I think for Flicker0-Noise source in Verilog-A model the isnoisy is NOT required ?

    Can you please confirm this.

    Kind Regards,

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • 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
  • RFStuff
    RFStuff over 10 years ago

    Dear Andrew,

    Thanks for your clarifications.

    Kind Regards,

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

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