Allows access to the properties that provide information about the broadband and precise tuning of an embedded LO.
Access the Interface through the EmbeddedLO Object.
Dim app As AgilentPNA835x.Application
Set app = CreateObject("AgilentPNA835x.Application")
app.Preset
' FCA Measurements can't share the channel with standard measurements
' Because preset creates a single measurement in channel 1, we first delete the standard measurement
Dim standardMeas As IMeasurement
Set standardMeas = app.ActiveMeasurement
standardMeas.Delete
' Create a Measurement object, in this case using the IMeasurement interface
Dim meas As IMeasurement
Set meas = app.CreateCustomMeasurementEx(1, "SMC_Forward.SMC_ForwardMeas", "SC21")
' See if this measurement object supports IMixer
Dim mixer As IMixer
Dim embeddedLO
Set embeddedLO = mixer.EmbeddedLO
Dim embeddedLODiagnostic
Set embeddedLODiagnostic = embeddedLO.EmbeddedLODiagnostic
See an example program that shows how to create and calibrate a standard SMC or VMC measurement or a fixed output SMC measurement.
Making Embedded LO Measurements
Methods |
Interface |
Description |
---|---|---|
IELODiag |
Clear current diagnostic information. |
|
Properties |
|
Description |
IELODiag |
Was a marker was used for a tuning sweep? |
|
IELODiag |
Returns the LO frequency delta from this tuning sweep. |
|
IELODiag |
Get number of tuning sweeps. |
|
IELODiag |
Get the marker annotation. |
|
IELODiag |
Get the marker X-axis position. |
|
IELODiag |
Returns the tuning sweep parameter name. |
|
IELODiag |
Get result of the last tuning sweeps. |
|
IELODiag |
Get a tuning sweep data. |
|
IELODiag |
Returns the tuning sweep title. |
|
IELODiag |
Get the tuning sweep X axis annotation. |
|
IELODiag |
Get the Start sweep value. |
|
IELODiag |
Get the Stop sweep value. |
|
IELODiag |
Get the tuning sweep Y axis annotation. |
Interface |
Introduced with VNA Rev: |
IEmbeddedLODiagnostic |
7.21 |