measureAcross
measureAcross(t_expression[?parametersl_parameters] ) =>x_scalar/o_waveform/nil
Description
Computes the given calculator expression across the parameters provided in the parameter list. Use this function only when you are creating expressions for outputs that can be evaluated across any dimension. These expressions have their eval type as any. If you specify this expression for other eval types, the parameter list is ignored.
The measureAcross function does not work in OCEAN standalone mode or in SKILL scripts for any purpose other than the creation of outputs.
Arguments
Value Returned
Examples
The following example shows how to compute the average current across two parameters, vdd and temperature:
measureAcross(average(Current ?overall t) ?parameters list("vdd" "temperature"))
The following expression calculates the average phase margin across two dimensions, the vdd design variable and Monte Carlo iterations:
measureAcross(average(PhaseMargin ?overall t) ?parameters list("vdd" "mc_iteration"))
The following expression calculates the average phase margin across two design variables, the vdd and temperature swept variables:
measureAcross(average(PhaseMargin ?overall t) ?parameters list("vdd" "temperature"))
The following expression calculates the average phase margin across the vdd design variable and all corners:
measureAcross(average(PhaseMargin ?overall t) ?parameters list("vdd" "Corners"))
The following expression calculates the average phase margin across all Monte Carlo iterations:
measureAcross(average(PhaseMargin ?overall t) ?parameters list( "mc_iteration"))
The following expression calculates the current across the varying values of a parameter M3/fw that is swept as 5.1u:0.1u:5.5u:
measureAcross(Current ?parameters list( "M3/fw"))
; In this example, Current is another expression, Current=abs(IDC("/V1/PLUS"))
Return to top