ex:
gds = OP("SATT.MPC0.xmx.mx","gds")
vs
gds = pv("SATT.MPC0.xmx.mx","gds")
I get the same results returned.
thanks
mark
I found out one really important difference.
if using a "for" loop, or some other control to go through and
process the results, OP will not update from the first value it gets
in the loop.
"pv" will update each time it goes through the loop and get the
correct result from the operating point information.
The difference between ocean function and calculator function is:
For ocean function, you need to selectResult() first, for example, to
use pv, you need:
selectResult('dcOp)
pv(...)
For calculator function, you do not need to selectResult(), you can
run
OP(...) after you openResults()
JD