21.9.22 smartpower_init_set_othersets_options

Description

This Tcl command initializes the frequency and probability of all other sets.

Note: This command is associated with the functionality of Initialize Frequencies and Probabilities dialog box.
smartpower_init_set_othersets_options \
                 [-freq "decimal value [unit { Hz | KHz | MHz }]"] \
                 [-proba "decimal value"] \
                 [-with "fixed | default"] \
                 [-input_freq "decimal value [unit { Hz | KHz | MHz }]"] \
                 [-input_proba "decimal value"] 

Arguments

ParameterTypeDescription
freqstringSpecifies the default frequency and units(possible values are Hz, KHz or MHz). This parameter is optional.
probadecimalSpecifies the default probability. Must be positive decimal value, less than or equal to 100.000. This parameter is optional.
withstringSpecifies vectorless or default analysis. This parameter is optional.
input_freqdecimalSpecifies the input frequency(decimal possible value) and units(possible values are Hz, KHz or MHz). This parameter is optional.
input_probadecimalSpecifies the input probability. Must be positive decimal value, less than or equal to 100.000. This parameter is optional.
Return TypeDescription
NoneNone

Error Codes

Error CodeDescription
Noneinput_proba: Invalid argument value: 'value' (expecting decimal value).
NoneParameter 'input_proba' has illegal value.
NoneParameter 'input_proba' must be less than or equal to 100.000.
NoneParameter 'input_proba' must be a positive decimal value.
Noneinput_freq: Parameter format incorrect (expecting a positive decimal value, optionally followed by a unit (possible values are Hz, KHz or MHz)).
NoneParameter 'input_freq' has illegal value.
Nonewith: Invalid argument value: 'value' (expecting default or fixed).
NoneParameter 'with' has illegal value.
Noneproba: Invalid argument value: 'value' (expecting decimal value).
NoneParameter 'proba' must be less than or equal to 100.000.
NoneParameter 'proba' must be a positive decimal value.
NoneParameter 'proba' has illegal value.
Nonefreq: Parameter format incorrect (expecting a positive decimal value, optionally followed by a unit (possible values are Hz, KHz or MHz)).
NoneParameter 'freq' has illegal value.
NoneParameter 'param_name' is not defined. Valid command formatting is 'smartpower_init_set_othersets_options [-freq "decimal value [ unit { Hz | KHz | MHz } ]"] [-proba "decimal value"] [-input_freq "decimal value [ unit { Hz | KHz | MHz } ]"] [-input_proba "decimal value"]'.

Supported Families

PolarFire®
SmartFusion® 2
RTG4™
IGLOO® 2
PolarFire SoC

Example

The following example initializes all other sets after executing "smartpower_init_do" with "-othersets {true}":
Note: Warning: -with flag is obsolete; use -with argument of the command smartpower_init_do instead.
smartpower_init_set_othersets_options \
                         -freq "10 MHz" \
                         -proba "10" \
			 [-with "fixed"] \
                         -input_freq "10 MHz" \
                         -input_proba "10"

See Also