How to access(plot) cds_global.\vdd! from OCEAN ?

?

-

Guest
Hi everyone!

I am able to use the wavescan Results Browser to see that I
effectively have a global signal (e.g.: cds_global.\vdd!) in a
simulation database (e.g: mydb) and event plot it using this wavescan
GUI.

I am now trying to have it batched with OCEAN:
[..]
openResults("mydb")
selectResult('tran)
myvdd=v("cds_global.\vdd!")


*Error* strcat: argument #1 should be either a string or a symbol
(type template = "S") - nil
ocean> plot(myvdd)
*Error* eval: unbound variable - myvdd

I assume the problem is the special character bang ("!")
I have tried to escape it, but I just can´t find the proper way.

Any suggestions?

Best thanks,

fRan/
 
openResults("mydb")
selectResult('tran)
myvdd=v("cds_global.\vdd!")


*Error* strcat: argument #1 should be either a string or a symbol
(type template = "S") - nil
ocean> plot(myvdd)
*Error* eval: unbound variable - myvdd

I assume the problem is the special character bang ("!")
I have tried to escape it, but I just can´t find the proper way.
I don't think so. I don't know where this error comes from, but use

myvdd = v( "/vdd!" ?result "dc" )

?result should be "dc", "tran", "ac" or whatever your simulation is.

For more info ocnHelp('v) and OCEAN reference.

Stéphane
 
In my particular case that would be :

myvdd = v( "/vdd!" ?result "tran" )

...but it did not work neither. Same error message...

thanx anyway!
 

Welcome to EDABoard.com

Sponsor

Back
Top