Got help from Cadence support: alias measurement runnoise { export real input_noise, output_noise, rms_output_noise, rms_input_noise; run noise(start=1, stop=1G, dec=10, iprobe=V7, terminals={"OUTP"}) ; input_noise = runnoise:in; output_noise = runnoise:out; rms_output_noise = rmsnoise(runnoise:out); rms_input_noise = rmsnoise(runnoise:in); export real noise_factor = runnoise:F; export real noise_figure = runnoise:NF; export real noise_at_freq = (runnoise:out) @ 1k; export real avg_noise = avg(runnoise:out); export real max_noise = max(runnoise:out); } run runnoise Please refer the section “Running Noise Analysis” in the below provided link for more details with database: Advanced SpectreMDL Simulation https://support.cadence.com/apex/articleattachmentportal?id=a1O0V000009Mo6NUAS&pageName=ArticleContent&attachId=0690V000006NMrxQAG&sq=null
↧