sample_ami_waveform#
- PostProcessorCircuit.sample_ami_waveform(setup, probe, source, variation_list_w_value, unit_interval=1e-09, ignore_bits=0, plot_type=None, clock_tics=None)#
Sampling a waveform at clock times plus half unit interval.
- Parameters:
- setup
str
Name of the setup.
- probe
str
Name of the AMI probe.
- source
str
Name of the AMI source.
- variation_list_w_value
list
Variations with relative values.
- unit_interval
float
,optional
Unit interval in seconds. The default is
1e-9
.- ignore_bits
int
,optional
Number of initial bits to ignore. The default is
0
.- plot_type
str
,optional
Report type. The default is
None
, in which case all report types are generated. Options for a specific report type are"InitialWave"
,"WaveAfterSource"
,"WaveAfterChannel"
, and"WaveAfterProbe"
.- clock_tics
list
,optional
List with clock tics. The default is
None
, in which case the clock tics from the AMI receiver are used.
- setup
- Returns:
list
Sampled waveform in
Volts
at different times inseconds
.
Examples
>>> circuit = Circuit() >>> circuit.post.sample_ami_waveform(setupname,probe_name,source_name,circuit.available_variations.nominal)