varunmjman
Junior Member level 3
I am using Cadence Virtuoso 6.1.3. i ran a single point monte carlo transient analysis for my design. I used the ocean script below to write the results into a text file
________________________________________________________________
out = outfile("/home/analog/MyOutputFiles/my_ckt_output.out" "w")
openResults("/home/analog/Sim/my_ckt_test/adexl/results/data/MonteCarlo.0/1/My_LIbrary:my_ckt_Test:1/psf" t)
selectResults('tran)
outputs()
for(tt 0 10
time=tt*0.000000244+0.00000018
fprintf(out "%f \n" value(VT("OUTPUT"),time))
)
close(out)
________________________________________________________________
I am able to see the results in the result browser in "mc1_tran-montecarlo" and can plot it.
But I am not getting any results in the output file. In the output text file the values written are "srrWave:0xaae5320" etc.
Is there any problem with the script??
What should be the input of the function selectResults() for monte carlo analysis? I used 'tran. But is this the same for monte carlo analysis also???
________________________________________________________________
out = outfile("/home/analog/MyOutputFiles/my_ckt_output.out" "w")
openResults("/home/analog/Sim/my_ckt_test/adexl/results/data/MonteCarlo.0/1/My_LIbrary:my_ckt_Test:1/psf" t)
selectResults('tran)
outputs()
for(tt 0 10
time=tt*0.000000244+0.00000018
fprintf(out "%f \n" value(VT("OUTPUT"),time))
)
close(out)
________________________________________________________________
I am able to see the results in the result browser in "mc1_tran-montecarlo" and can plot it.
But I am not getting any results in the output file. In the output text file the values written are "srrWave:0xaae5320" etc.
Is there any problem with the script??
What should be the input of the function selectResults() for monte carlo analysis? I used 'tran. But is this the same for monte carlo analysis also???