• 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. Custom IC Design
  3. Transient simulation extract specific voltage/time data

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 125
  • Views 2113
  • 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

Transient simulation extract specific voltage/time data

Franktgg
Franktgg over 5 years ago

Hi,

Is it possible to set a range of voltage in transient simulation, so the simulator can dump those data only without getting the whole period of transient simulation result?

The reason I want to do that is because I only want to get the zero crossing voltage timing information, which needs to be high precision.

But setting the high precision in transient would get many useless time point at other voltage. As the simulating time increase, the data would be very large.

Thanks,

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 5 years ago

    You can't limit the output to only specific voltage ranges, but rather than tightening the precision to accurate resolve the threshold crossing, a better solution would be to create a Verilog-A model which forces a timepoint close the the threshold crossing. It would be quite simple - something like:

    `include "disciplines.vams"
    module threshCrossing(p,n);
    electrical p,n;
    input p,n;

    analog begin
      @(cross(V(p,n)));
    end

    endmodule

    Note the code above is just typed in from memory - you could limit the cross to only look for crossings in a particular direction. Normally the @(cross... would have some action after it, but that's not needed here.

    Regards,

    Andrew.

    • 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