Roshni,
The return value of “-1” is the default value and it indicates that the conditions for finding a given value were not found during the simulation. The default value is settable by the user with the option "DEFAULT_VAL=xxx” on the measure line.
As for finding a value at a specific time, that’s a good question. You should be able to do this:
.measure tran myResult EQN {v(the_node_you_want_to_measure)} from=time_of_Interest to=time_of_interest_some_some_small_dt
as in
.measure tran myResult EQN (v(1) from=1.0e-3 to=1.1e-3.
Good Luck
Is there a way to measure the voltage at a particular time instant ?
Like using FIND and AT ? I tried using when - it doesnot give the value but returns the time as stated in the manual; find and at- returns '-1' and this is not specified in the manual.
Also is -1 a default value for .MEASURE in xyce ?
--You received this message because you are subscribed to the Google Groups "xyce-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xyce-users+...@googlegroups.com.
To post to this group, send email to xyce-...@googlegroups.com.
Visit this group at http://groups.google.com/group/xyce-users.
For more options, visit https://groups.google.com/d/optout.
Thank you.Yup that works when I donot use e- powers !This works .MEASURE TRAN myResult EQN {V(1)} FROM=99n TO=100n
On Wed, Jun 4, 2014 at 11:49 AM, XYCE <XY...@sandia.gov> wrote:
Roshni,
The return value of “-1” is the default value and it indicates that the conditions for finding a given value were not found during the simulation. The default value is settable by the user with the option "DEFAULT_VAL=xxx” on the measure line.
As for finding a value at a specific time, that’s a good question. You should be able to do this:
.measure tran myResult EQN {v(the_node_you_want_to_measure)} from=time_of_Interest to=time_of_interest_some_some_small_dt
as in
.measure tran myResult EQN (v(1) from=1.0e-3 to=1.1e-3.
Good Luck
You received this message because you are subscribed to the Google Groups "xyce-users" group.Is there a way to measure the voltage at a particular time instant ?
Like using FIND and AT ? I tried using when - it doesnot give the value but returns the time as stated in the manual; find and at- returns '-1' and this is not specified in the manual.
Also is -1 a default value for .MEASURE in xyce ?
--
To unsubscribe from this group and stop receiving emails from it, send an email to xyce-users+unsubscribe@googlegroups.com.
When I use the above .MEASURE statement and use FROM =65n TO=70n , does it mean that Xyce will measure the highest value obtained in that time ? Or what value does it produce ?