Skip to content

INPUT_PARAM_AFG31000

Download Flojoy Studio to try this app
Set the parameters using the input Scalar. This block should also work with compatible Tektronix AFG31XXX instruments. Params: connection : VisaConnection The VISA address (requires the CONNECTION_AFG31000 block). source : select, default=1 Choose the channel to alter. parameter : select, default=frequency Choose the parameter to alter. input : Scalar The value to change the selected parameter to. Returns: out : Scalar The input value
Python Code
from flojoy import flojoy, Scalar, VisaConnection
from typing import Literal


@flojoy(inject_connection=True)
def INPUT_PARAM_AFG31000(
    connection: VisaConnection,
    source: Literal["1", "2"] = "1",
    parameter: Literal[
        "frequency",
        "amplitude",
        "offset",
        "phase",
        "pulse_width",
        "ramp_symmetry",
    ] = "frequency",
    input: Scalar = 90,
) -> Scalar:
    """Set the parameters using the input Scalar.

    This block should also work with compatible Tektronix AFG31XXX instruments.

    Parameters
    ----------
    connection: VisaConnection
        The VISA address (requires the CONNECTION_AFG31000 block).
    source: select, default=1
        Choose the channel to alter.
    parameter: select, default=frequency
        Choose the parameter to alter.
    input : Scalar
        The value to change the selected parameter to.

    Returns
    -------
    Scalar
        The input value
    """

    afg = connection.get_handle()

    if parameter == "frequency":
        afg.write(f"SOURCE{source}:FREQUENCY {input.c}")
    elif parameter == "amplitude":
        afg.write(f"SOURCE{source}:VOLTAGE:AMPLITUDE {input.c}")
    elif parameter == "offset":
        afg.write(f"SOURCE{source}:VOLTAGE:OFFSET {input.c}")
    elif parameter == "phase":
        assert (
            -180.0 <= input.c <= 180.0
        ), "The phase must be between -180 and 180 degrees."
        afg.write(f"SOURCE{source}:PHASE:ADJUST {input.c}DEG")
    elif parameter == "pulse_wdith":
        afg.write(f"SOURCE{source}:PULSE:WIDTH {input.c}")
    elif parameter == "ramp_symmetry":
        assert 0 <= input.c <= 100.0, "The phase must be between 0 and 100%."
        afg.write(f"SOURCE{source}:FUNCtion:RAMP:SYMMETRY {input.c}")

    return Scalar(c=input.c)

Find this Flojoy Block on GitHub

Example App

Having problems with this example app? Join our Discord community and we will help you out!
React Flow mini map

This app uses the Tektronix tm_measure library and Flojoy vary the output frequency of an AFG31000.

First the necessary blocks were added:

  • CONNECT_AFG31000
  • FUNCTION_AFG31000
  • OUTPUT_AFG31000
  • LOOP
  • 2x SCALAR
  • MULTIPLY
  • INPUT_PARAM_AFG31000

Each of these blocks must change the connection parameter to the correct instrument. The source used was CH1 so all the blocks were changed to turn this output on and to affect this channel only. To vary the frequency between 1 kHz and 10 MHz, the parameter param was changed to “frequency” for INPUT_PARAM_AFG31000 and SCALAR 1 was set to 680.2721. SCALAR 2 was then set to 1.47 which will multiply the last parameter by 1.47 each loop. LOOP was changed to loop 25 times. This resulted in frequency values of ~1.0, ~1.5, ~2.2 kHz, etc. until ~10 MHz.

The blocks were connected as shown and the app was run.